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
