system
OAuth2 Provider JWKS Endpoint
Returns the JSON Web Key Set containing public keys used for OAuth2/OIDC token signing.
get/oauth2/jwks
Response
JWKS response
Example response
{
"keys": [
{
"alg": "RS256",
"e": "AQAB",
"kid": "key-id-1",
"kty": "RSA",
"n": "abcd1234...",
"use": "sig"
}
]
}