Hi there,
I am having a lot of trouble getting the contents of shared folders and the content of folders within shared folders.
Firstly, for the shared folder, according to the API I should be able to use https://api.dropboxapi.com/2/files/list_folder with "path": "id:{shared folder id}", however this returned a `path not found`.
So I had to get the preview url in the metadata of the shared folder, then use https://api.dropboxapi.com/2/files/list_folder with "path": "" and "shared_link":{"url": "{shared link}" I thought this was a bit of an unusual workaround.
Now for each file in the shared folder I can't access those using https://api.dropboxapi.com/2/files/list_folder with their ids, and they don't have shared links.
My questions:
a) Is it possible to access shared folder content via the Dropbox API?
b) If I can do this with a path, what is the path to shared folders? It's not relative to the root directory.