Hi ! I've generated access token for Business App, and tried to make simple request
dbx = dropbox.Dropbox(my_token)
dbx.files_list_folder(path).entries
But I got
dropbox.exceptions.BadInputError: 'Error in call to API function "files/list_folder": This API function operates on a single Dropbox account, but the OAuth 2 access token you provided is for an entire Dropbox Business team. Since your API app key has team member file access permissions, you can operate on a team member\'s Dropbox by providing the "Dropbox-API-Select-User" HTTP header or "select_user" URL parameter to specify the exact user
And from given documentation there is a part saying: Specify the member_id of the user that the app wants to act on using a custom HTTP header called Dropbox-API-Select-User.
I just got stuck and need help for spicifying Dropbox-API-Select-User via python or in other ways if there are so.
Additional info: I have team admin permissions
Permission type for app is Team member file access