You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
irenee83
5 years agoHelpful | Level 5
Get access token with C#
I'm making xamarin forms app that must save sqlite database in user dropbox account. I have created the required app to connect my xamarin forms app to dropbox, but i am looking for the C# code to ge...
Greg-DB
Dropbox Staff
The .NET SDK isn't officially supported for Xamarin, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
For reference though, if you need to implement the OAuth app authorization flow, you can find the documentation here. And here's where it's implemented in the .NET SDK for reference.
irenee83
5 years agoHelpful | Level 5
Ok, thank. I will quickly try it. I was trying some code, and I have been able to see the authorization code in the device browser, the code that must be used in the post request to get the access token. My problem in this way is that i don't know how to retrieve this code displayed in the url bar and put it in the post request. If there is a method that can extract this code from the redirectde url in C#, i will try it also. Thank for the replay.
- Greg-DB5 years agoDropbox Staff
Yes, when using the OAuth 2 app authorization "code" flow with a redirect URI, the authorization code is returned in a URL parameter with the name "code" on the redirect URI. You would need to retrieve that parameter value, though exactly how you do so will depend on whatever web framework you're using. Or, if you're not using a redirect URI, you can have the user manually copy/paste the code into your app.
- irenee835 years agoHelpful | Level 5
Thank Greg K for the interest. I'm trying Webview and the device native Browser (that I open with "await Browser.OpenAsync(authorizeUri, BrowserLaunchMode.SystemPreferred)" where "authorizeUri" is the authorization uri). But I alway failed. In the POST request, I must also put the redirect uri. Then, I would like to be sure about the "REDIRECT URI". I've read its definition a lot, but I am not very sure how to set its. The one that I'm using is valid ? I don't know. It is "https://dev-5-6ei48x.auth0.com/login/callback". What are the steps and rules to get this redirect url (not "WHERE" to put it but "HOW" to get it).
- Greg-DB5 years agoDropbox Staff
Please note that per the documentation, you should be processing the OAuth flow in the system browser, not in a web view.
Anyway, the "redirect URI" is where you want to send the end-user after they authorize your app. I can't tell you what it should be though since it will be specific to your app. You as the developer define this URI based on how you build your app. That is, you need to set the route on your app where you want to receive the user at that step in the OAuth flow to finish it.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,910 PostsLatest Activity: 3 days agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!