Hello,
I'm using Dropbox teams to download a file from a team folder.
The application was running fine but since the changes in the teams folders organization, it stopped working.
I'm currently trying to download the file by using the following code:
dbx_team = dropbox.DropboxTeam( oauth2_refresh_token=refresh_token, app_key=APP_KEY, app_secret=APP_SECRET )
myuser = dbx_team.as_user('dbmid:*****************')
file =myuser.files_download_to_file("PATH TO STORE LOCALLY","SOURCE FILE")
However, I'm getting the following error:
BadInputError('df3e1ee38a834a5c99e916817cf00d66', 'Error in call to API function "files/download": Invalid select user id format')
Can you clarify how should I setup this?