Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
jjsk
8 years agoHelpful | Level 5
Folder download
Per https://www.dropbox.com/help/desktop-web/download-entire-folders I can download any folder through the dropbox web interface. How can I do this via the API?
I'm guessing the web client ...
deFreitas
8 years agoNew member | Level 2
Here is a workaround, you can create a sharedlink for that folder
curl -X POST https://api.dropboxapi.com/2/sharing/share_folder \
--header "Authorization: Bearer $TK" \
--header "Content-Type: application/json" \
--data '{"path": "/legacy/teste-curl","acl_update_policy": "editors","force_async": true,"member_policy": "anyone"}'
then download it using the preview_url
wget -v https://www.dropbox.com/sh/{shared_link_id}?dl=1
Like this example
wget -v https://www.dropbox.com/sh/j1msw4e8dup2c5q/AAANYUWXcyBDgxVGkveU7AFla?dl=1
After all you can unshare this folder for security reasons
curl -X POST https://api.dropboxapi.com/2/sharing/unshare_folder \
--header "Authorization: Bearer $TK" \
--header "Content-Type: application/json" \
--data "{\"shared_folder_id\": \"1896934208\",\"leave_a_copy\": false}"
jjsk
8 years agoHelpful | Level 5
This is nice thanks. I was also trying to decipher the download call through web client but it got a bit hairy. The zip file comes from
https://dl-web.dropbox.com/zip_batch?_subject_uid=<dropbox id>
but I could not figure out in developers tools panel what all the POST parameters were.
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!