Hello!
I'm writing an app against Dropbox APIs but I am struggling to authenticate.
I have created an app in the App Console.
App type: Dropbox for Business
Permissions: Team member file access (I have also tried Team member management)
I then pressed the "Generate" token button to begin testing my app.
Whenever I attempt to integrate with any Dropbox API I receive the following message in the response:
401 -> {"error": "Access token is for an invalid team"}
My request as observed in Fiddler
POST https://api.dropboxapi.com/1/delta?path_prefix=/ HTTP/1.1
Authorization: Bearer <TokenCopiedFromAppConsole>
Content-Type: application/json
host: api.dropboxapi.com
accept: application/json
content-length: 0
The same API request works fine if I create a 'Dropbox API' app instead and follow the above steps.
Could someone shed some light on this?
Am I doing something wrong? Is there an issue with the API?
Many Thanks