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
OLIM
3 years agoExplorer | Level 3
get Auth token with AppKey and Appsecret error
Why did the freaks remove the possibility of eternal tokens? now we'll have to look for another service, redo all the applications.
OLIM
Explorer | Level 3
give me a real example for getting a token if you are truthful. For example, in VBA. curl it is not possible to run on the client machine. It doesn't work with EncodeBase64 either, if that's what you're talking about.
OLIM
3 years agoExplorer | Level 3
does not take all values of grant_type
- Здравко3 years agoLegendary | Level 20
Don't make partial posting! 🤔 Where is the code actually?
- OLIM3 years agoExplorer | Level 3
Function gettoken(appkey, appsecret, accesscode) As String
Set http = CreateObject("WinHttp.WinHttpRequest.5.1")
http.Open "POST", "https://api.dropboxapi.com/oauth2/token", False
http.setRequestHeader "Authorization", "Basic " & EncodeBase64(appkey & ":" & appsecret)
http.setRequestHeader "Content-Type", "application/json"
http.setRequestHeader "grant_type", "authorization_code"
http.Send ("{""oauth1_token"":""i dont now what is it"",""oauth1_token_secret"":""i dont now what is it""}")
gettoken = http.ResponseText
End Function- Здравко3 years agoLegendary | Level 20
OLIM wrote:...
http.Send ("{""oauth1_token"":""i dont now what is it"",""oauth1_token_secret"":""i dont now what is it""}")
...Me too... 🤷 Where came "oauth1_token" and "oauth1_token_secret" from? Do you have some outdated v1 tokens and want to transform them to v2 (the actual one)? You need to provide the temporary code to confirm the authentication - token provided as result of authorization. Did you read carefully the referred topic I linked to? I (or somebody else) haven't posted there anything similar!
By the way... "grant_type" is parameter, not header!
This call can be performed with GET request, so, I hope, you can make you life easy. 😉
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,920 PostsLatest Activity: 5 hours 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!