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

abhinovClairvoyant2's avatar
abhinovClairvoyant2
Helpful | Level 5
2 years ago

Dropbox Java SDK List Shared Links of a Team Folder in Business Account

I am trying to access all shared links in dropbox business account (team folder) using Java SDK.

 

I am able to get shared Link Metadatas for files inside personal space of a particular member of the team - 

List<SharedLinkMetadata> sharedLinkMetadataList = client.asMember(memberId).sharing().listSharedLinks().getLinks(); 

But, this does not return the shared links of the team folder and files within the teamspace.  How can I list the shared links of all files and folders within the team folder? Using client.asAdmin() does not work 

client.asAdmin(memberId).sharing().listSharedLinks().getLinks()

 

For reference, I am NOT able to get shared links inside teamSpace folder

    • abhinovClairvoyant2's avatar
      abhinovClairvoyant2
      Helpful | Level 5

      Thank you. 😀

      After setting the root namespace it works

       

      String rootNS =
      client.asAdmin(memberId).users().getCurrentAccount().getRootInfo().getRootNamespaceId();

      List<SharedLinkMetadata> sharedLinkMetadataList = client
      .asMember(memberId)
      .withPathRoot(PathRoot.namespaceId(rootNS))
      .sharing()
      .listSharedLinks()
      .getLinks();

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,882 PostsLatest Activity: 3 years ago
325 Following

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!