I am using Dropbox.Api NuGet package in a Xamarin Forms app. Though Xamarin is not supported officially, even after 5+ years of its existance, I could, and many like me, implement it successfully for Android and iOS apps using Xamarin.
Your documentation and also as mentioned in several post in this forum I find that Mobile apps don't need to set the Redirect URI in app console and the same need not be supplied while signing in. Am I correct?
I am using the following code in C# while authorizing.
var authorizeUri = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Token, App.DbAppKey, new Uri(App.DbRedirectUri), this.oauth2State);
If I set App.DbRedirectUri = "", then the app hangs using the above code.
So can I get more specific explanation of setting (or not setting) the Redirect URI for mobile apps.