I am writing Dropbox console application in Java. Is there any way to get list and quantity of shared folders for my Dropbox account?
Asked
Active
Viewed 378 times
0
-
have a look at: https://dropbox.github.io/dropbox-api-v2-explorer/ – DZDomi Dec 23 '16 at 23:03
-
Thanks. But I still can't understand what I should to do. – Dzoul Dec 23 '16 at 23:19
1 Answers
0
Yes, using the official Dropbox Java SDK, you can use the DbxUserSharingRequests
listFolders
and listFoldersContinue
methods to get the full list of shared folders in the connected user's account.

Greg
- 16,359
- 2
- 34
- 44
-
Thanks for your answer! Do you have some example of code to do this task? – Dzoul Dec 27 '16 at 14:17
-
I don't have any sample code handy for that in particular unfortunately. Try it out, and if you run in to any issues, post a new question with the details. – Greg Dec 27 '16 at 16:24