Comments
-
Can confirm that it now works for CORS. Thanks for the quick adjustment!
-
Thanks, that would be awesome. Also would be cool to have the url hacking documented a bit more detailed somewhere :)
-
So i found that this works: curl -X POST https://api.dropboxapi.com/2/files/list_folder?path_root={".tag": "root", "root":"<namespace_id>"} \ --header "Authorization: Bearer <token>" \ --header "Content-Type: application/json" \ --data '{"path":""}' I didn't find this specific implementation documented anywhere, but rather…
-
Thank you for your answer. Regarding question 2: As it appears to me in the namespace guide (https://www.dropbox.com/developers/reference/namespace-guide) i need to use two api requests to fetch a team user's root directory: * Get root Namespace id via users/get_current_account * Get folder list via files/list_folder using…