Hello,
I'm using curl to list subfolders like this which works great for folders that existed before my app was created:
curl -X POST https://api.dropboxapi.com/2/files/list_folder --header "Authorization: Bearer <my bearer token>" --header "Content-Type: application/json" --data "{\"path\": \"/vendor photos/SAND DESERT RIVER/\"}"
But after a folder called METAL FX(MFX ) was created under vendor photos in dropbox I get a file not found when I try to list what is in it using this:
curl -X POST https://api.dropboxapi.com/2/files/list_folder --header "Authorization: Bearer <my bearer token>" --header "Content-Type: application/json" --data "{\"path\": \"/vendor photos/METAL FX(MFX )/\"}"
I thought maybe the parentheses were trouble but we tested with a folder called 820417-P under SAND DESERT RIVER and when I looked for it using this:
curl -X POST https://api.dropboxapi.com/2/files/list_folder --header "Authorization: Bearer <my bearer token>" --header "Content-Type: application/json" --data "{\"path\": \"/vendor photos/SAND DESERT RIVER/\"}"
I saw all the previous folders but not the new one. How can we make it so I can download new subfolders and files using an existing app with the api?
Thanks,
Robert