/.well-known/openid-configuration
OpenID Connect discovery metadata for sso.user.m7.org.
Endpoint
- Methods:
GETorHEAD - URL:
https://sso.user.m7.org/.well-known/openid-configuration - Response: JSON
What it returns
The current discovery document advertises:
issuerauthorization_endpointpushed_authorization_request_endpointregistration_endpointtoken_endpointend_session_endpointjwks_uriuserinfo_endpointrevocation_endpointintrospection_endpointdevice_authorization_endpointresponse_types_supportedresponse_modes_supportedgrant_types_supportedcode_challenge_methods_supported- token, revocation, and introspection auth method support
Example
{
"issuer": "https://sso.user.m7.org",
"authorization_endpoint": "https://sso.user.m7.org/authorize",
"pushed_authorization_request_endpoint": "https://sso.user.m7.org/par",
"registration_endpoint": "https://sso.user.m7.org/register",
"token_endpoint": "https://sso.user.m7.org/token",
"end_session_endpoint": "https://sso.user.m7.org/end-session",
"jwks_uri": "https://sso.user.m7.org/jwks.json",
"userinfo_endpoint": "https://sso.user.m7.org/userinfo",
"revocation_endpoint": "https://sso.user.m7.org/revoke",
"introspection_endpoint": "https://sso.user.m7.org/introspect",
"device_authorization_endpoint": "https://sso.user.m7.org/device_authorization"
}
Notes
- Use this endpoint when your client expects OpenID Connect discovery.
- The current server builds endpoint URLs from the request origin, so the document is host-local to the SSO surface you queried.