Configure Applications with OIDC Discovery
Benefits of OIDC Discovery
Sample OIDC Discovery Response
{
"issuer": "https://{yourDomain}/",
"authorization_endpoint": "https://{yourDomain}/authorize",
"token_endpoint": "https://{yourDomain}/oauth/token",
"device_authorization_endpoint": "https://{yourDomain}/oauth/device/code",
"userinfo_endpoint": "https://{yourDomain}/userinfo",
"jwks_uri": "https://{yourDomain}/.well-known/jwks.json",
"registration_endpoint": "https://{yourDomain}/oidc/register",
"revocation_endpoint": "https://{yourDomain}/oauth/revoke",
"scopes_supported": ["openid", "profile", "email"],
"response_types_supported": ["code", "token", "id_token"],
"code_challenge_methods_supported": ["S256", "plain"],
"response_modes_supported": ["query", "fragment", "form_post"],
"subject_types_supported": ["public"],
"id_token_signing_alg_values_supported": ["HS256", "RS256", "PS256"],
"token_endpoint_auth_methods_supported": ["client_secret_basic", "client_secret_post", "private_key_jwt"],
"claims_supported": ["aud", "email", "exp", "iat", "iss", "sub"],
"request_uri_parameter_supported": false,
"request_parameter_supported": false}Last updated
Was this helpful?