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

pirignao's avatar
pirignao
New member | Level 2
5 years ago

Upload a file via Dropbox API and CURL

Hi everybody,

Complete newbie here, so the answer will most likely be some sort of syntax error.

For work I am running scripts on a server and I would like to get the results automatically uploaded to some dropbox folder of mine.

Here is what I am executing, based on some random googling:

curl -X POST https://content.dropboxapi.com/2/files/upload --header "Authorization: Bearer <Access Token> " --header "Dropbox-API-Arg: {\"path\": \"/try/matrices.txt\"}" --header "Content-Type: application/octet-stream" --data-binary @"matrices.txt"

where of course <Access Token> is my OAuth 2 generated access token.

Here is what I am getting:

{"error_summary": "missing_scope/", "error": {".tag": "missing_scope", "required_scope": "files.content.write"}}

What does that mean?
Thanks!

 

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff

    The 'missing_scope' error indicates that while the app is permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Also, be aware that just adding a scope to your app via the App Console does not retroactively grant that scope to existing access tokens.

     

    That being the case, to make any API calls that require that scope, you'll need to get a new access token with that scope.