0.x — pre-release, no compatibility promise yet.What this means
Authorization server metadata (RFC 8414)
Authorization server metadata (RFC 8414): the endpoints, scopes, grant types and PKCE method.
Responses
Section titled “ Responses ”Successful Response
Media typeapplication/json
AuthorizationServerMetadata
Returned by oauth.server_metadata.
object
issuer
required
Issuer
string
authorization_endpoint
required
Authorization Endpoint
string
token_endpoint
required
Token Endpoint
string
revocation_endpoint
required
Revocation Endpoint
string
scopes_supported
required
Scopes Supported
Array<string>
response_types_supported
required
Response Types Supported
Array<string>
response_modes_supported
required
Response Modes Supported
Array<string>
grant_types_supported
required
Grant Types Supported
Array<string>
code_challenge_methods_supported
required
Code Challenge Methods Supported
Array<string>
token_endpoint_auth_methods_supported
required
Token Endpoint Auth Methods Supported
Array<string>
revocation_endpoint_auth_methods_supported
required
Revocation Endpoint Auth Methods Supported
Array<string>
Example
{ "issuer": "string", "authorization_endpoint": "string", "token_endpoint": "string", "revocation_endpoint": "string", "scopes_supported": [ "string" ], "response_types_supported": [ "string" ], "response_modes_supported": [ "string" ], "grant_types_supported": [ "string" ], "code_challenge_methods_supported": [ "string" ], "token_endpoint_auth_methods_supported": [ "string" ], "revocation_endpoint_auth_methods_supported": [ "string" ], "service_documentation": "string"}