CspOpenIdConfigurationDto
The OpenID configuration document as defined by the specification: https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata. This is also compliant with the https://tools.ietf.org/html/draft-ietf-oauth-discovery-08 specification.
{
"authorization_endpoint": "string",
"claimsSupported": [
"string"
],
"code_challenge_methods_supported": [
"string"
],
"end_session_endpoint": "string",
"id_token_signing_alg_values_supported": [
"string"
],
"issuer": "string",
"jwks_uri": "string",
"response_types_supported": [
"string"
],
"scopes_supported": [
"string"
],
"subject_types_supported": [
"string"
],
"token_endpoint": "string",
"token_endpoint_auth_methods_supported": [
"string"
],
"userinfo_endpoint": "string"
}
The URL of the OAuth 2.0 authorization endpoint.
List of the claims CSP may be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list.
List of PKCE code challenge methods that GAZ supports.
The CSP endpoint for logout.
List of the JWS signing algorithms supported for the ID Token to encode the claims in a JWT.
The identifier of the token's issuer. This is identical to the issuer claim value in ID Tokens.
The URL of JSON web key set document.
List of the OAuth 2.0 response_type values that CSP supports.
List of the OAuth 2.0 scope values that CSP supports.
List of the subject identifier types that CSP supports.
The URL of the OAuth 2.0 token endpoint.
List of the authorization methods supported by OAuth 2.0 token endpoint.
The URL of the OAuth 2.0 UserInfo endpoint.