Hello.
I have created the shared link to folder in my application directory, for example: Apps/AppFoldername/Foldername
And I want to get list of all files from this directory by API.
I made the request with parameters:
{
"shared_link":{"url":"https:\/www.dropbox.com\/sh\/test\/test?dl=0"},"path":""
}
where
https:\/www.dropbox.com\/sh\/test\/test?dl=0
is my shared link, which I created by WEB interface of dropbox.
But I received the response with error:
{
"error_summary": "path/not_found/",
"error": {
".tag": "path",
"path": {
".tag": "not_found"
}
}
}
How I can get the list of files? Thanks!