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
env
2 years agoExplorer | Level 3
get access token & refresh token
Hi, so I have a few issues, I need to get the access token and the refresh token, Im using Dropbox bussiness account and I used this url to get the access code: (*) - "https://www.dropbox.com/oauth...
Greg-DB
2 years agoDropbox Staff
The mismatched redirect URI error indicates that the redirect_uri you're using on /oauth2/token doesn't match the redirect_uri used to retrieve that authorization code from /oauth2/authorize. Since you're not setting redirect_uri on /oauth2/authorize, you should also omit it when calling /oauth2/token.
When performing a call like this, be sure to print out the response body, as it will generally contain a more specific error message. It sounds like the error in the JavaScript case is likely the same as above though, or check the response body for the error message.
For JavaScript, we highly recommend using the official Dropbox JavaScript SDK, as it will do much of the work for you automatically. Refer to the examples included in the "examples" folder in the SDK. It implements the authorization flow steps and as long as you set the necessary credentials, like shown in this example for the JavaScript SDK, the SDK will actually handle refresh process for you automatically. The SDK will automatically catch expired access token errors and call the API to get a new short-lived access token when needed.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,919 PostsLatest Activity: 2 days ago
If 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!