overview.adoc 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. [[overview]]
  2. = Overview
  3. This site contains reference documentation and how-to guides for Spring Authorization Server.
  4. [[introducing-spring-authorization-server]]
  5. == Introducing Spring Authorization Server
  6. Spring Authorization Server is a framework that provides implementations of the https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07[OAuth 2.1] and https://openid.net/specs/openid-connect-core-1_0.html[OpenID Connect 1.0] specifications and other related specifications.
  7. It is built on top of https://spring.io/projects/spring-security[Spring Security] to provide a secure, light-weight, and customizable foundation for building OpenID Connect 1.0 Identity Providers and OAuth2 Authorization Server products.
  8. [[feature-list]]
  9. == Feature List
  10. Spring Authorization Server supports the following features:
  11. [cols="2a,4a,6a"]
  12. |===
  13. |Category |Feature |Related specifications
  14. |xref:protocol-endpoints.adoc#oauth2-token-endpoint[Authorization Grant]
  15. |
  16. * Authorization Code
  17. ** xref:protocol-endpoints.adoc#oauth2-authorization-endpoint[User Consent]
  18. * Client Credentials
  19. * Refresh Token
  20. * Device Code
  21. ** xref:protocol-endpoints.adoc#oauth2-device-verification-endpoint[User Consent]
  22. |
  23. * The OAuth 2.1 Authorization Framework (https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07[draft])
  24. ** https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-4.1[Authorization Code Grant]
  25. ** https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-4.2[Client Credentials Grant]
  26. ** https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-4.3[Refresh Token Grant]
  27. * OpenID Connect Core 1.0 (https://openid.net/specs/openid-connect-core-1_0.html[spec])
  28. ** https://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth[Authorization Code Flow]
  29. * OAuth 2.0 Device Authorization Grant
  30. (https://tools.ietf.org/html/rfc8628[spec])
  31. ** https://tools.ietf.org/html/rfc8628#section-3[Device Flow]
  32. |xref:core-model-components.adoc#oauth2-token-generator[Token Formats]
  33. |
  34. * Self-contained (JWT)
  35. * Reference (Opaque)
  36. |
  37. * JSON Web Token (JWT) (https://tools.ietf.org/html/rfc7519[RFC 7519])
  38. * JSON Web Signature (JWS) (https://tools.ietf.org/html/rfc7515[RFC 7515])
  39. |xref:configuration-model.adoc#configuring-client-authentication[Client Authentication]
  40. |
  41. * `client_secret_basic`
  42. * `client_secret_post`
  43. * `client_secret_jwt`
  44. * `private_key_jwt`
  45. * `none` (public clients)
  46. |
  47. * The OAuth 2.1 Authorization Framework (https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-2.4[Client Authentication])
  48. * JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication (https://tools.ietf.org/html/rfc7523[RFC 7523])
  49. * Proof Key for Code Exchange by OAuth Public Clients (PKCE) (https://tools.ietf.org/html/rfc7636[RFC 7636])
  50. |xref:protocol-endpoints.adoc[Protocol Endpoints]
  51. |
  52. * xref:protocol-endpoints.adoc#oauth2-authorization-endpoint[OAuth2 Authorization Endpoint]
  53. * xref:protocol-endpoints.adoc#oauth2-device-authorization-endpoint[OAuth2 Device Authorization Endpoint]
  54. * xref:protocol-endpoints.adoc#oauth2-device-verification-endpoint[OAuth2 Device Verification Endpoint]
  55. * xref:protocol-endpoints.adoc#oauth2-token-endpoint[OAuth2 Token Endpoint]
  56. * xref:protocol-endpoints.adoc#oauth2-token-introspection-endpoint[OAuth2 Token Introspection Endpoint]
  57. * xref:protocol-endpoints.adoc#oauth2-token-revocation-endpoint[OAuth2 Token Revocation Endpoint]
  58. * xref:protocol-endpoints.adoc#oauth2-authorization-server-metadata-endpoint[OAuth2 Authorization Server Metadata Endpoint]
  59. * xref:protocol-endpoints.adoc#jwk-set-endpoint[JWK Set Endpoint]
  60. * xref:protocol-endpoints.adoc#oidc-provider-configuration-endpoint[OpenID Connect 1.0 Provider Configuration Endpoint]
  61. * xref:protocol-endpoints.adoc#oidc-logout-endpoint[OpenID Connect 1.0 Logout Endpoint]
  62. * xref:protocol-endpoints.adoc#oidc-user-info-endpoint[OpenID Connect 1.0 UserInfo Endpoint]
  63. * xref:protocol-endpoints.adoc#oidc-client-registration-endpoint[OpenID Connect 1.0 Client Registration Endpoint]
  64. |
  65. * The OAuth 2.1 Authorization Framework (https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07[draft])
  66. ** https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-3.1[Authorization Endpoint]
  67. ** https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07#section-3.2[Token Endpoint]
  68. * OAuth 2.0 Device Authorization Grant (https://tools.ietf.org/html/rfc8628[RFC 8628])
  69. ** https://tools.ietf.org/html/rfc8628#section-3.1[Device Authorization Endpoint]
  70. ** https://tools.ietf.org/html/rfc8628#section-3.3[Device Verification Endpoint]
  71. * OAuth 2.0 Token Introspection (https://tools.ietf.org/html/rfc7662[RFC 7662])
  72. * OAuth 2.0 Token Revocation (https://tools.ietf.org/html/rfc7009[RFC 7009])
  73. * OAuth 2.0 Authorization Server Metadata (https://tools.ietf.org/html/rfc8414[RFC 8414])
  74. * JSON Web Key (JWK) (https://tools.ietf.org/html/rfc7517[RFC 7517])
  75. * OpenID Connect Discovery 1.0 (https://openid.net/specs/openid-connect-discovery-1_0.html[spec])
  76. ** https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig[Provider Configuration Endpoint]
  77. * OpenID Connect RP-Initiated Logout 1.0 (https://openid.net/specs/openid-connect-rpinitiated-1_0.html[spec])
  78. ** https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout[Logout Endpoint]
  79. * OpenID Connect Core 1.0 (https://openid.net/specs/openid-connect-core-1_0.html[spec])
  80. ** https://openid.net/specs/openid-connect-core-1_0.html#UserInfo[UserInfo Endpoint]
  81. * OpenID Connect Dynamic Client Registration 1.0 (https://openid.net/specs/openid-connect-registration-1_0.html[spec])
  82. ** https://openid.net/specs/openid-connect-registration-1_0.html#ClientRegistration[Client Registration Endpoint]
  83. ** https://openid.net/specs/openid-connect-registration-1_0.html#ClientConfigurationEndpoint[Client Configuration Endpoint]
  84. |===