OpenID Connect
OpenID Connect specific endpoints
GET/.well-known/openid-configuration
OpenID Connect Discovery Endpoint
Returns the OpenID Connect Provider configuration information. This endpoint provides metadata about the OpenID Connect implementation, including supported features, endpoints, and algorithms.
Request
GET
/.well-known/openid-configurationcurl -G https://api.example.com/.well-known/openid-configuration \
-H "Authorization: Bearer {token}"
Response
{
"id": "123456",
"name": "Example",
"created_at": 1591478057
}
GET/jwks
JSON Web Key Set (JWKS) Endpoint
Returns the JSON Web Key Set containing the public keys used to verify tokens issued by this authorization server.
Request
GET
/jwkscurl -G https://api.example.com/jwks \
-H "Authorization: Bearer {token}"
Response
{
"id": "123456",
"name": "Example",
"created_at": 1591478057
}
