OpenID Config
Request
URL
/.well-known/openid-configuration
Response
If successful, this operation returns HTTP status code 200, with the configuration information for the specified OpenID Connect provider. The full documentation for this endpoint can be found at openid.net.
Documentation
Return OpenID Provider Configuration Information as described in https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig
Responses
200
OpenID Provider Configuration Information
application/json
get
GET /.well-known/openid-configuration HTTP/1.1
Host:
Accept: */*
200
OpenID Provider Configuration Information
{
"authorization_endpoint": "text",
"claims_supported": [
"text"
],
"grant_types_supported": [
"text"
],
"id_token_signing_alg_values_supported": [
"text"
],
"issuer": "text",
"jwks_uri": "text",
"registration_endpoint": "text",
"response_types_supported": [
"text"
],
"scopes_supported": [
"text"
],
"subject_types_supported": [
"text"
],
"token_endpoint": "text",
"token_endpoint_auth_methods_supported": [
"text"
],
"userinfo_endpoint": "text"
}
Last updated