I'm looking to use the v2 api to download the contents of a shared folder from a link like this:
https://www.dropbox.com/sh/[some_junk]/[some_other_junk]?dl=0
this link is not necessarily generated by the user authenticating the API call but would be either a public link, or a team link from a team the authenticated user is a member of, or the user would have the password (so my API app would as well) In short this is a link the user COULD access with a browser logged into the authenticating account.
I KNOW that you can add ?dl=1 to the URL to generate a zip. i also know that folders that contain more than 10,000 files or are larger than 1 GB will fail to generate that zip. This is what i'm trying to deal with.
I want to have my app download all of the files in that folder one by one and put them all into the right folder structure on another server so that humans don't need to waste their time doing exactly that.
so, what specific methods do I need to call to list the contents of folders in a shared link? then when there are subfolders there, how do i list THEIR contents?
Thanks.