Related MSAL .NET Documentation - mattchenderson/microsoft-identity-web GitHub Wiki
Learn more about the library
You can learn more about the tokens by looking at the following articles in MSAL.NET's conceptual documentation:
- The Authorization code flow, is invoked when the user signs in with Open ID Connect through ASP .NET Core. Then MSAL will redeem the code to get a token, which will be cached for later use.
- AcquireTokenSilent, used by the controller to get an access token for the downstream API.
- Token cache serialization
Token validation is performed by the classes in the Identity Model Extensions for .NET library. Learn about customizing token validation by reading:
- Validating Tokens in that library's conceptual documentation.
- TokenValidationParameters's reference documentation.