Can't apply scope "access_as_user"
While launching the Admin Portal it tries to connect as: api://{Constants.ApiAppUrlGuid}/access_as_user.
After running the Deploy script i have just a "access_as_use" (without final r. See:
What can i do now?
Can i just change the code, from
builder.Services.AddMsalAuthentication(options => { builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication); options.ProviderOptions.DefaultAccessTokenScopes.Add($"api://{Constants.ApiAppUrlGuid}/access_as_user"); });
to
builder.Services.AddMsalAuthentication(options => { builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication); options.ProviderOptions.DefaultAccessTokenScopes.Add($"api://{Constants.ApiAppUrlGuid}/access_as_use"); });