When trying to use
this.clientApplication.acquireTokenSilent(scopes)...
I have multiple scopes I am passing in although I receive the error :
AADB2C90146 : The scope 'https://xxx.onmicrosoft.com/xxx/user_impersonation https://xxx.onmicrosoft.com/xxx/user_impersonation openid profile' provided in request specifies more than one resource for an access token, which is not supported.
How am I able to silently get a new token using the MSAL.js library for multiple scopes? I was able to do so initially with the
this.clientApplication.loginRedirect(this.tenantConfig.b2cScopes);
Is this possible at this time?
Thanks,