after getting a token using this method.
client = new DropboxTeamClient(request.AccessToken, request.RefreshToken, request.Expires, ClientIdBusiness,
ClientSecretBusiness);
then i am trying to get the account using
var account = await client.AsMember(request.AsMember).Users.GetCurrentAccountAsync();
but then i am getting the error below ?
i am using this method in order to check if the account is the new Dropbox Space Team or the old one
if (account.RootInfo.IsTeam)
am I missing something ?
v=
: 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 use
i am using the latest SDK Version 6.33.0.0