You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
venkate
4 years agoExplorer | Level 3
File sharing with dbx.sharing_create_shared_link
Hi,
I am trying to create a sharable link for files in shared folders with visibility control, using Dropbox API
the code I use is
shared_link_metadata = dbx.sharing_create_shared_link...
- 4 years ago
First, note that sharing_create_shared_link is deprecated in favor of sharing_create_shared_link_with_settings.
For this use case, it sounds like you may want to create the link like this:
dbx.sharing_create_shared_link_with_settings(path=path, settings=dropbox.sharing.SharedLinkSettings(audience=dropbox.sharing.LinkAudience.no_one))
The "no_one" audience means that the link itself does not grant access; the user would need to have access to the file already, e.g., via the parent shared folder.
Greg-DB
4 years agoDropbox Staff
First, note that sharing_create_shared_link is deprecated in favor of sharing_create_shared_link_with_settings.
For this use case, it sounds like you may want to create the link like this:
dbx.sharing_create_shared_link_with_settings(path=path, settings=dropbox.sharing.SharedLinkSettings(audience=dropbox.sharing.LinkAudience.no_one))
The "no_one" audience means that the link itself does not grant access; the user would need to have access to the file already, e.g., via the parent shared folder.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,917 PostsLatest Activity: 11 days ago
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 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!