MsalError.NoTokensFoundError Field

Definition

No token was found in the token cache.

Mitigation:

If your application is a IPublicClientApplication call AcquireTokenInteractive so that the user of your application signs-in and accepts consent.
  • If it's a web app you should have previously called IConfidentialClientApplication.AcquireTokenByAuthorizationCode as described in https://aka.ms/msal-net-authorization-code. You need to make sure that you have requested the right scopes. For details See https://github.com/Azure-Samples/ms-identity-aspnetcore-webapp-tutorial
  • This error should not happen in web APIs
public const string NoTokensFoundError;
val mutable NoTokensFoundError : string
Public Const NoTokensFoundError As String 

Field Value

Applies to