You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add and update documentation for IdentityModel utilities
Added detailed examples for built-in .NET functionalities and IdentityModel utilities, highlighting obsolescence of certain methods such as Base64Url. Updated sections with expanded content, new code samples, debugging tips, and tables of constants for OAuth2/OIDC protocols to improve usability and clarity of the documentation.
JWT serialization involves transforming the three core components of a JWT (Header, Payload, Signature) into a single, compact, URL-safe string. [Base64 URL encoding](https://tools.ietf.org/html/rfc4648#section-5) is used instead of standard Base64 because it doesn't include characters like `+`, `/`, or `=`, making it safe to use directly in URLs and HTTP headers without requiring further encoding.
18
+
19
+
## WebEncoders Encode and Decode
20
+
21
+
To use the built-in .NET support, ensure you have the following package installed:
0 commit comments