Hey guys,
Our dropbox implementation appeared broken on production environment and we saw that a trailing slash on the following endpoint returned a unknown API endpoint error. This seemed to work fine ( with the trailing slashes "/" ) until earlier this week and looks like a recent regression. Also, am not sure if its just this endpoint that returns this error with trailing "/" or other endpoints are affected by this as well.
It would be great if you could notify the clients before making such a change?
Doesnt Work:
curl -X POST https://api.dropboxapi.com/2/files/list_folder/ \
--header 'Authorization: Bearer ******' \
--header 'Content-Type: application/json' \
--data '{"path":""}'
Unknown API function: "files/list_folder/".%
Works:
curl -X POST https://api.dropboxapi.com/2/files/list_folder \
--header 'Authorization: Bearer ******' \
--header 'Content-Type: application/json' \
--data '{"path":""}'
Thanks
-Vasanth