Integrated Authorization Server
Get authorization server metadata, if the integrated authorization server is enabled. Conforms to OAuth2
get/.well-known/oauth-authorization-server
Response
Successful response
Example response
{
"issuer": "https://auth.example.com",
"authorization_endpoint": "https://auth.example.com/authorize",
"token_endpoint": "https://auth.example.com/token",
"jwks_uri": "https://auth.example.com/.well-known/jwks.json",
"registration_endpoint": "https://auth.example.com/register",
"scopes_supported": [
"openid",
"profile",
"email"
],
"response_types_supported": [
"code"
],
"response_modes_supported": [
"query",
"fragment"
],
"grant_types_supported": [
"authorization_code",
"urn:ietf:params:oauth:grant-type:pre-authorized_code",
"refresh_token"
],
"token_endpoint_auth_methods_supported": [
"client_secret_basic",
"private_key_jwt"
],
"token_endpoint_auth_signing_alg_values_supported": [
"RS256",
"ES256",
"PS256"
],
"service_documentation": "https://auth.example.com/docs",
"ui_locales_supported": [
"en-US",
"fr-FR",
"de-DE"
],
"op_policy_uri": "https://auth.example.com/policy",
"op_tos_uri": "https://auth.example.com/tos",
"revocation_endpoint": "https://auth.example.com/revoke",
"revocation_endpoint_auth_signing_alg_values_supported": [
"RS256",
"ES256"
],
"introspection_endpoint": "https://auth.example.com/introspect",
"introspection_endpoint_auth_signing_alg_values_supported": [
"RS256",
"ES256"
],
"code_challenge_methods_supported": [
"S256"
],
"pushed_authorization_request_endpoint": "https://auth.example.com/par",
"dpop_signing_alg_values_supported": [
"ES256",
"ES384",
"ES512",
"EdDSA"
],
"userinfo_endpoint": "https://auth.example.com/userinfo",
"check_session_iframe": "https://auth.example.com/check_session",
"end_session_endpoint": "https://auth.example.com/logout",
"acr_values_supported": [
"urn:mace:incommon:iap:silver",
"urn:mace:incommon:iap:bronze"
],
"subject_types_supported": [
"public"
],
"id_token_signing_alg_values_supported": [
"RS256",
"ES256",
"EdDSA"
],
"id_token_encryption_alg_values_supported": [
"RSA-OAEP",
"ECDH-ES"
],
"id_token_encryption_enc_values_supported": [
"A256GCM",
"A128GCM"
],
"request_object_signing_alg_values_supported": [
"RS256",
"ES256",
"none"
],
"request_object_encryption_alg_values_supported": [
"RSA-OAEP",
"ECDH-ES"
],
"request_object_encryption_enc_values_supported": [
"A256GCM",
"A128GCM"
],
"display_values_supported": [
"page",
"popup"
],
"claims_supported": [
"sub",
"iss",
"name",
"email",
"email_verified"
],
"pre-authorized_grant_anonymous_access_supported": true,
"authorization_challenge_endpoint": "https://auth.example.com/authorization-challenge",
"credential_endpoint": "https://auth.example.com/credentials",
"deferred_credential_endpoint": "https://auth.example.com/deferred-credentials",
"nonce_endpoint": "https://auth.example.com/nonce"
}