So ihave a bussines teams folder inside i have some .mdb file that want to download automatic, but the problem is that i cant access to the bussines folder so i created a shared link
shared_link = dropbox.files.SharedLink(url=url)
for entry in dbx.files_list_folder(path='', shared_link=shared_link).entries:
if isinstance(entry, dropbox.files.FileMetadata):
if entry.name == "asd.mdb":
dbx.files_download(entry.path_display)
so i have an error downloading it and after i see the entry i have this in the metadata path_display=NOT_SET, path_lower=NOT_SET
so i inserted the path manually for testing and cant download.
maybe there is somehow i can download a file from bussiness teams of my account ?