diff --git a/src/Auth.ts b/src/Auth.ts index 5e5c9f3..b4077d6 100644 --- a/src/Auth.ts +++ b/src/Auth.ts @@ -144,7 +144,7 @@ export class Auth implements TokenCredential, AuthenticationProvider { }; getAccessToken = async (authenticationProviderOptions?: AuthenticationProviderOptions): Promise => { - const graphScopes = ['User.Read', 'User.ReadBasic.All', 'Directory.Read.All', 'People.Read']; // An array of graph scopes + const graphScopes = ['User.Read']; // An array of graph scopes if (authenticationProviderOptions?.scopes) graphScopes.concat(authenticationProviderOptions.scopes);