I am trying to create a python file that will download some files automatically, but my account is a business team account and I cannot connect it, I have informed myself what I have been able to and all the forums tell me:
if you're using a "Dropbox API" app, your code should look like:
dbx = dropbox.Dropbox(_dropbox_token)
dbx.files_list_folder()
if you're using a "Dropbox Business API" app, your code should look like:
dbx = dropbox.DropboxTeam(_dropbox_token)
dbx.files_list_folder()
I have tried this system and it does not work. I have tried to look for more options and I do not find anything, please can you help me.
The error is the following:
AttributeError: 'DropboxTeam' object has no attribute 'files_list_folder'