Hello,
I'm trying to figure out how the API exactly works to download files from Dropbox from Excel VBA (2010, 2013).
The main issue for now is how to get past the authorization part.
I'v setup the app in de dev-corner.
Status: Development
Allow implicit grant: Disallow
My https-request to Dropbox is:
"https://www.dropbox.com/1/oauth2/authorize?response_type=code&client_id=[app-key]&redirect_uri=http://localhost" (which I open using "WinHttpReq.Open "GET", myURL, False" (where myURL is the URL to Dropbox).
The return-value consists mainly of question-marks. That also happens if I don't specify a redirect_uri. (Btw, I'm matching up the redirect_uri in the dev-panel and the code).
I expected/hoped to receive the response with the access token, but apparently I'm doing something wrong.
Can anyone help me out?
Thanks,
Gejakem