Overview of the OAuth 2.0 Authorization Server Sample
mainThis sample demonstrates an OAuth 2.0 Authorization Server implementation using Spring Security. It supports the following features:
- Grant Types:
authorization_codeandclient_credentials. - Protocols: OpenID Connect 1.0.
- Token Format: JWT tokens signed with the
RS256algorithm.
The sample includes functionality for issuing tokens via a token endpoint and verifying them via a token introspection endpoint.