Hi
I have created a Dropbox App in the App console with the permissions specified by the `get_temporary_link`. The application I'm building goes through the following process:
1. Authenticating a user using Dropbox OAuth2
2. Obtaining the access_token
3. Selecting a file using Dropbox chooser
4. Obtaining a temporary link with API `get_temporary_link`, the body `path` for the API contains the file id coming from the Dropbox chooses response
The response from `get_temporary_link` API shows the following:
```
// HTTP 409
{
"error_summary": "path/not_found/...",
"error": {
".tag": "path",
"path": {
".tag": "not_found"
}
}
}
```
I know the file exists since I was able to choose it in step 3 (Dropbox chooser) of the process. Then, why do I get the `not_found` response? Do I need to change the access permission of the folder or file in Dropbox?
Thank you for your help