Hi, Everyone. Hope you are all ok.
I am getting the dreadful
Failed to access a remote cloud service
StatusCode: Conflict
Request result: {"error_summary": "path/not_found/", "error": {".tag": "path", "path": {".tag": "not_found"}}}
It is (most probably) related with the Refresh Token (and consequently the AccessToken), because when I create in the APP the AccessToken and use it for testing in my program, everything is ok (up to the point that I have to renew the AccessToken from the RefreshToken - when the problem reapears).
However, I am getting the AccessToken and RefreshToken from the authorization flow accessing:
https://www.dropbox.com/oauth2/authorize?client_id=XXXXXXX&token_access_type=offline&response_type=code
with the following response:
{"access_token": "sl.XXXXX", "token_type": "bearer", "expires_in": 14400, "refresh_token": "YYYYY", "scope": "account_info.read account_info.write contacts.read contacts.write file_requests.read file_requests.write files.content.read files.content.write files.metadata.read files.metadata.write sharing.read sharing.write", "uid": "WWWW", "account_id": "dbid:ZZZZZ"}
which seems to be ok (of course, with XXX, YYY and ZZZ the correct codes). I have also looked at the dropbox folders to see if their exist (and they do).
Would someone be so kind to tell me what I am doing wrong?
Best regards, Olavo.