Get Openid Configuration
Use this API instead:
- /oidc/.well-known/openid-configuration
Get discovery endpoint meta data as described in https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata. OpenID Connect 1.0 is a simple identity layer on top of the OAuth 2.0 protocol. It enables Clients to verify the identity of the End-User based on the authentication performed by an Authorization Server, as well as to obtain basic profile information about the End-User in an interoperable and REST-like manner.
Access Policy
Role | Access |
---|---|
Anonymous | ✔️ |
OK
{
"issuer": "string",
"authorization_endpoint": "string",
"token_endpoint": "string",
"token_endpoint_auth_methods_supported": [
"string"
],
"jwks_uri": "string",
"userinfo_endpoint": "string",
"response_types_supported": [
"string"
],
"grant_types_supported": [
"string"
],
"subject_types_supported": [
"string"
],
"id_token_signing_alg_values_supported": [
"string"
],
"scopes_supported": [
"string"
]
}
issuer
authorization_endpoint
token_endpoint
token_endpoint_auth_methods_supported
jwks_uri
userinfo_endpoint
response_types_supported
grant_types_supported
subject_types_supported
id_token_signing_alg_values_supported
scopes_supported
The requested resource could not be found.
"OpenidConfigurationResponse Object"
issuer
authorization_endpoint
token_endpoint
token_endpoint_auth_methods_supported
jwks_uri
userinfo_endpoint
response_types_supported
grant_types_supported
subject_types_supported
id_token_signing_alg_values_supported
scopes_supported
curl -H 'Authorization: <value>' https://{api_host}/.well-known/openid-configuration