OpenID Discovery Document


The OpenID Connect Discovery Document is a configuration page provided by an OpenID Connect (OIDC) Provider. It contains essential details that allow clients to authenticate users and securely access protected resources.

The miniOrange OAuth Server offers a fully compliant Discovery Document that lists all key configuration details according to the latest OpenID Connect Discovery Document Specifications.

Endpoint


The Discovery Document is available at the following URL pattern:

 __*/wp-json/moserver/<client-id>/.well-known/openid-configuration*__

Supported Metadata And their Meaning


Metadata Description
Request_parameter_supported Indicates whether the server supports the request parameter.
Claims_parameter_supported Indicates whether the server supports the claims parameter.
Issuer The HTTPS URL of the server. Must match the iss claim in issued ID Tokens.
Authorization_endpoint URL of the authorization endpoint.
Token_endpoint URL of the token exchange endpoint.
Userinfo_endpoint URL of the UserInfo endpoint.
Scopes_supported JSON array of scopes supported by the server.
Id_token_signing_alg_values_supported JSON array of JWS signing algorithms (alg) supported for ID Tokens.
Response_types_supported JSON array of supported response_type values.
Jwks_uri URL of the JSON Web Key Set (JWKS) containing signing keys to validate server signatures.
Grant_types_supported JSON array of supported grant_type values.
Subject_types_supported JSON array of supported subject identifier types.

You can always read more about the Discovery Docuement and its uses in the Specifications.