acquireTokenByCode API (msal-browser and msal-node). Used to acquire tokens by trading an authorization code against the token endpoint.
acquireTokenByRefreshToken API (msal-browser and msal-node). Used to renew an access token using a refresh token against the token endpoint.
acquireTokenPopup (msal-browser). Used to acquire a new access token interactively through pop ups
acquireTokenSilent API (msal-browser and msal-node). Used to silently acquire a new access token (from the cache or the network).
acquireTokenSilentAsync (msal-browser). Internal API for acquireTokenSilent.
getPublicKeyThumbprint API in CryptoOpts class (msal-browser). Used to generate a public/private keypair and generate a public key thumbprint for pop requests.
signJwt API in CryptoOpts class (msal-browser). Used to signed a pop token.
acquireToken APIs in msal-browser. Used to make an /authorize endpoint call with native brokering enabled.
acquireToken API in NativeInteractionClient class (msal-browser). Used to acquire a token from Native component when native brokering is enabled.
acquireToken API in the SilentCacheClient class (msal-browser). Used to read access tokens from the cache.
acquireToken API in the SilentIframeClient class (msal-browser). Used to acquire a new set of tokens from the authorize endpoint in a hidden iframe.
acquireToken API in SilentRereshClient (msal-browser). Used to acquire a new set of tokens from the token endpoint using a refresh token.
ssoSilent API (msal-browser). Used to silently acquire an authorization code and set of tokens using a hidden iframe.
getDiscoveredAuthority API in StandardInteractionClient class (msal-browser). Used to load authority metadata for a request.
Generated using TypeDoc
Enumeration of operations that are instrumented by have their performance measured by the PerformanceClient.