We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
BillyL
5 years agoExplorer | Level 4
How to provide the Dropbox-API-Select-User HTTP header with .Net API
Hello,
I have gotten my access token through the business app and am trying to make a simple request. I also have team admin permissions with a permission type for the app as "Team member file access"
using (var dbx = new DropboxClient(AccessToken)) { var full = await dbx.Users.GetCurrentAccountAsync(); }
I get the following Error:
Error in call to API function "users/get_current_account": 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.
The documentation also mentions specifying a member_id of the user for which the app will run under using a custom HTTP header called Dropbox-API-Select-User.
I would first appreciate some help on how to specify this member_id through the header via .Net and then how to access shared files/Folders like "BigFolder" below:
Thank You!
In the .NET SDK in particular, to set the "Dropbox-API-Select-User" header, you should use the DropboxTeamClient.AsMember method.
And to access the contents of the "team space", as shown in your screenshot, you should use the DropboxClient.WithPathRoot method. Check out the Namespace Guide for information on how that works.
- Greg-DBDropbox Staff
In the .NET SDK in particular, to set the "Dropbox-API-Select-User" header, you should use the DropboxTeamClient.AsMember method.
And to access the contents of the "team space", as shown in your screenshot, you should use the DropboxClient.WithPathRoot method. Check out the Namespace Guide for information on how that works.
- BillyLExplorer | Level 4
Thank you very much. Solved my issue!
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 5 hours agoIf 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 or Facebook.
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!