Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Semionenko
7 years agoExplorer | Level 3
Is it possible to make access to the file / directory from Objective-C?
I am trying to understand whether it is possible to make access to files or directories to third-party users from an application using Objective-C. How can users who have been given access can get in...
Semionenko
7 years agoExplorer | Level 3
No, I want to make a mobile application so that users can store their data (for example, photos) in Dropbox, but also have the opportunity to give a certain circle of people access to this data. For example, the user Adam gives access to see the photo to the user Bob. Each participant will have to register their own account.
Greg-DB
Dropbox Community Moderator
7 years agoThanks for clarifying! That use case is certainly possible, and is what the API is designed for.
When you set up the SDK as documented, each user can connect their own account. Their files are private by default, but they can choose to share files with other members of their choice, if desired.
They can do so via the Dropbox product itself, or via the API if the app implements it. For instance, an app can use the shareFolder and addFolderMember methods to share and invite members to a folder. (Note that for using shared folders like this, you'll need to register an app for the "full Dropbox" permission, if you haven't already.)
- Semionenko7 years agoExplorer | Level 3
Thanks. This is what I was looking for!
There was another question. Can I use the SDK to get a list of files/folders to which I was invited?
- Greg-DB7 years ago
Dropbox Community Moderator
Yes, there are a number of methods you may be interested in, depending on the exact type of sharing you're referring to:
- listFolders/listFoldersContinue: to list all of the "shared folders" the user has access to (e.g., from addFolderMember from another user).
- listMountableFolders/listMountableFoldersContinue: to list the "shared folders" the user has access to (e.g., from addFolderMember from another user) but doesn't have "mounted". (Use mountFolder to mount any of them.)
- listReceivedFiles/listReceivedFilesContinue: to list the files the user has been sent directly.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
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!