GET /.well-known/openid-configuration – Retrieves the OpenID Connect configuration (/.well-known/openid-configuration).
Headers:
Body:
Path Parameters:
Query Parameters:
200 OK
400
500
{ "error": "Detailed error message here"} Copy
{ "error": "Detailed error message here"}
GET /.well-known/openid-configuration Copy
GET /.well-known/openid-configuration
{ "issuer": "https://your-domain", "authorization_endpoint": "https://your-domain/authorize", "token_endpoint": "https://your-domain/token", "jwks_uri": "https://your-domain/.well-known/jwks.json", "response_types_supported": ["code"], "subject_types_supported": ["public"], "id_token_signing_alg_values_supported": ["RS256"], "scopes_supported": ["openid"], "token_endpoint_auth_methods_supported": ["client_secret_post"], "claims_supported": ["sub", "iss", "aud", "exp", "iat"] } Copy
{ "issuer": "https://your-domain", "authorization_endpoint": "https://your-domain/authorize", "token_endpoint": "https://your-domain/token", "jwks_uri": "https://your-domain/.well-known/jwks.json", "response_types_supported": ["code"], "subject_types_supported": ["public"], "id_token_signing_alg_values_supported": ["RS256"], "scopes_supported": ["openid"], "token_endpoint_auth_methods_supported": ["client_secret_post"], "claims_supported": ["sub", "iss", "aud", "exp", "iat"] }
The API Gateway event containing the request.
A Promise resolving to an API Gateway-compatible response.
GET /.well-known/openid-configuration – Retrieves the OpenID Connect configuration (/.well-known/openid-configuration).
Remarks
📥 Request
Headers:
Body:
Path Parameters:
Query Parameters:
📤 Response
200 OK– JSON stringified object representing the OpenID Connect configuration. See OpenIDConfigurationResponse.❗ Errors
400500Error Response Format
📦 Examples
📥 Request
📤 Response Example