Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

TheWhistler1967's avatar
TheWhistler1967
Explorer | Level 3
4 years ago
Solved

How to 'operate on a team member\'s Dropbox' in python

Error:

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

 

Code:

dbx = dropbox.Dropbox(TOKEN)
response = dbx.files_list_folder(path='', recursive=True)
print(response)

 

Hi there,

 

What is the actual python code for this? I have the users dbid for use to operate on. But I cannot find the actual python syntax for this.
What lines do I need to add to the above code to get a print for this.


Cheers

  • Здравко's avatar
    Здравко
    4 years ago

    TheWhistler1967 wrote:

    Ok so it seems this is a DropboxTeams thing, so maybe this is closer:

    ...
    dbx_t_as_user = dbx_t.as_user("dbid:<string>")
    ...

     ...


    Hi TheWhistler1967,

    As far as I can see, you are trying use your account id (starts "dbid") as a team member id (starts "dbmid"). 🤫 Select the correct identifier. 😉

    Hope this helps.

4 Replies

Replies have been turned off for this discussion
  • TheWhistler1967's avatar
    TheWhistler1967
    Explorer | Level 3
    4 years ago

    Ok so it seems this is a DropboxTeams thing, so maybe this is closer:

    dbx_t = dropbox.DropboxTeam(TOKEN)
    dbx_t_as_user = dbx_t.as_user("dbid:<string>")
    response = dbx_t_as_user.files_list_folder('')

     But a new error:

    'Error in call to API function "files/list_folder": Invalid select user id format'

  • Здравко's avatar
    Здравко
    Legendary | Level 20
    4 years ago

    TheWhistler1967 wrote:

    Ok so it seems this is a DropboxTeams thing, so maybe this is closer:

    ...
    dbx_t_as_user = dbx_t.as_user("dbid:<string>")
    ...

     ...


    Hi TheWhistler1967,

    As far as I can see, you are trying use your account id (starts "dbid") as a team member id (starts "dbmid"). 🤫 Select the correct identifier. 😉

    Hope this helps.

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    4 years ago

    That's correct, for accessing user endpoints using a team-linked access token like this, you'll need to specify the member to operate on. You can find the documentation for this here.

     

    In the Python SDK, you can use as_user (or as_admin) for this.

     

    These require a team member ID, which starts with "dbmid:", not an account ID, which starts with "dbid:". You can get team member IDs from a number of places on the API, such as team_members_get_info_v2, team_members_list_v2/team_members_list_continue_v2, etc.

  • TheWhistler1967's avatar
    TheWhistler1967
    Explorer | Level 3
    4 years ago

    Thanks - this was exactly correct. Marked other one as solution. Cheers.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!