Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
Using create_shared_link_with_settings I am able to share a folder and set a password for it. But I don't seam to find any way to *change* this password?
How do I do that through the API? Is it possible?
I found update_folder_policy for this, but it's not usable for an "App Folder" app. (I'm getting the error: Your API app is an "App Folder" app. It is not allowed to access this API function)
To set a password, you need to set the 'requested_visibility' to 'password'. So, in your example, that would look like:
--data '{"url":"https://www.dropbox.com/sh/rjg3ms4tkca69XX/AABQP1tMaxHjUey4b8mQlg9XX?dl=0","settings":{"link_password":"zzz","requested_visibility":{".tag":"password"}}}'
To change the password for an existing shared link for a folder, e.g., created via create_shared_link_with_settings, you should use modify_shared_link_settings.
Sounded really promising! Thank you for pointing me in the right direction.
Unfortunley I'm getting an error using that command:
{"error_summary": "settings_error/invalid_settings/..", "error": {".tag": "settings_error", "settings_error": {".tag": "invalid_settings"}}}
Using the CURL command with this data:
--data '{"url":"https://www.dropbox.com/sh/rjg3ms4tkca69XX/AABQP1tMaxHjUey4b8mQlg9XX?dl=0","settings":{"link_password":"zzz"}}'
All settings for this command are optional according to the documentation, but I'm still getting invalid_settings?
(Perhaps it has to to something with the URL parameter?)
Suggestions on what could be wrong?
To set a password, you need to set the 'requested_visibility' to 'password'. So, in your example, that would look like:
--data '{"url":"https://www.dropbox.com/sh/rjg3ms4tkca69XX/AABQP1tMaxHjUey4b8mQlg9XX?dl=0","settings":{"link_password":"zzz","requested_visibility":{".tag":"password"}}}'
porfavor mandenme el correo para repuperar la cuenta porfavor se lo suplico
@tyni02 You can contact support here:
https://www.dropbox.com/support
---
Puede contactar al soporte aquÃ:
What if i dont want to set a password ?
@Greg-DB a écrit :To set a password, you need to set the 'requested_visibility' to 'password'. So, in your example, that would look like:
--data '{"url":"https://www.dropbox.com/sh/rjg3ms4tkca69XX/AABQP1tMaxHjUey4b8mQlg9XX?dl=0","settings":{"link_password":"zzz","requested_visibility":{".tag":"password"}}}'
What if i dont want to set a password ?
@xsmael If you want to create a shared link without a password, you would still use /2/sharing/create_shared_link_with_settings , but you would omit the 'link_password' parameter (and use 'requested_visibility' accordingly, i.e., either omit it it set it to something other than "password").
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on X or Facebook.
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!