I'm trying to make a simple web app that will list contents on one particular shared folder. There is about 200 small excel files in that folder and the app would like to download those files and do some magic on them.
I was able to list all files with:
dbx.filesListFolder({
path: "/some path",
include_media_info: true,
shared_link: {
url: "https://www.dropbox.com/sh/id_or_whatever/another_random_string?dl=0"
}
})
Now I would like to download all the files and do something with them.
I tried `filesDownloadZip` but it rejected path in form of "id:asdfasdf" where asdfasddf is a string I got from parent_shared_folder_id
`filesDownload` throws the same error. Other posts on this forum mentioned `sharingGetSharedLinkFile` but that requires some kind of preview link.
Thanks in advance.