Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
I am posting all required parameters to https://api.dropboxapi.com/oauth2/token but the servers keeps returning a very vague error:
REQUEST:
POST https://api.dropbox.com/oauth2/token HTTP/1.1 Accept: */* Content-Type: application/json; charset=utf-8 Content-Length: 221 User-Agent: Adobe Photoshop Lightroom Host: api.dropbox.com Cache-Control: no-cache {"client_id":"algt6407ye2ni5g","client_secret":"[***redacted***]","code":"qNW__3Oy_LgAAAAAAAAJPFofykpnyM-z9TB2CnveLSw","grant_type":"authorization_code","retirect_uri":"lightroom://com.alloyphoto.lightroom.export.dropbox"}
RESPONSE:
HTTP/1.1 400 Bad Request Server: nginx Date: Wed, 28 Dec 2016 00:37:38 GMT Content-Type: application/json Content-Length: 97 Connection: keep-alive User-Agent: X-Dropbox-Request-Id: 5d5f1e75ac3b4712ccf212dd60636603 {"error_description": "No auth function available for given request", "error": "invalid_request"}
In fact, this code worked successfully very recently. Has something been changed? What am I doing wrong? Please help.
Thanks for the report! The request payload for /oauth2/token is expected to be delivered with a content type of "application/x-www-form-urlencoded", per RFC 6749 Section 4.1.3. It's possible we may have also been accepting "application/json" though. We'll look into it, but in the meantime, you can switch to "application/x-www-form-urlencoded", which I've confirmed is working as expected.
Also, for reference, but api.dropbox.com and api.dropboxapi.com are supported for this endpoint.
Just noticed a typo in the request code (retirect_uri), should be redirect_uri. But it is still not working.
Next I realized I was hitting the wrong endpoint, needs to be https://api.dropboxapi.com, not https://api.dropbox.com.
Unfortunately I am still getting the same error.
Thanks for the report! The request payload for /oauth2/token is expected to be delivered with a content type of "application/x-www-form-urlencoded", per RFC 6749 Section 4.1.3. It's possible we may have also been accepting "application/json" though. We'll look into it, but in the meantime, you can switch to "application/x-www-form-urlencoded", which I've confirmed is working as expected.
Also, for reference, but api.dropbox.com and api.dropboxapi.com are supported for this endpoint.
Hi Greg,
I think you are right, I recently updated a large chunk of the code when I migrated my plugin from API v1 to v2. The v2 documentation states that RPC enpoints on the api.dropboxapi.com domain accept arguments as JSON in the request body. For that reason I made all API calls to submit the payload in JSON, and that is where the code flow stopped working (which I didn't notice immediately). Either the documentation needs to be very explicit about the expected content type of that call, or the backend needs to be updated to accept JSON and thus provide claimed consistency. If I had a choice I'd go for option #2 as there is probably no valid reason for that particular endpoint not to recognize JSON.
Anyway, thanks for your prompt attention to this issue, I got the code working by reverting the call to form-urlencoded format.
Hi Vladimir,
Glad to hear about the fix. I'm also working on migration from V1 to V2 API. Can you please provide code block of GetAccessToken() using new end point "https://api.dropboxapi.com/oauth2/token".
That would be really helpful.
Thank you.
Hi there!
If you need more help you can view your support options (expected response time for a 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!