Interface IByRefreshToken
public interface IByRefreshToken
Methods
AcquireTokenByRefreshToken(IEnumerable<string>, string)
Acquires an access token from an existing refresh token and stores it, and the refresh token, in the user token cache, where it will be available for further AcquireTokenSilent calls. This method can be used in migration to MSAL from ADAL v2, and in various integration scenarios where you have a RefreshToken available. See https://aka.ms/msal-net-migration-adal2-msal2.
AcquireTokenByRefreshTokenParameterBuilder AcquireTokenByRefreshToken(IEnumerable<string> scopes, string refreshToken)
Parameters
scopes
IEnumerable<string>Scope to request from the token endpoint. Setting this to null or empty will request an access token, refresh token and ID token with default scopes
refreshToken
stringThe refresh token from ADAL 2.x
Returns
- AcquireTokenByRefreshTokenParameterBuilder
A builder enabling you to add optional parameters before executing the token request