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!