MsalError.FailedToRefreshToken Field

Definition

Failed to refresh token.

What happens?

The token could not be refreshed. This can be because the user has not used the application for a long time. and therefore the refresh token maintained in the token cache has expired

Mitigation

If you are in a public client application, that supports interactivity, send an interactive request AcquireTokenInteractive(IEnumerable<String>). Otherwise, use a different method to acquire tokens.
public const string FailedToRefreshToken;
val mutable FailedToRefreshToken : string
Public Const FailedToRefreshToken As String 

Field Value

Applies to