Skip to content

OAuth2 Provider JWKS Endpoint

GET
/oauth2/jwks

Returns the JSON Web Key Set containing public keys used for OAuth2/OIDC token signing.

JWKS response

object
keys
required
Array<object>

JSON Web Key for JWT verification

object
alg
required

Algorithm used with this key

string
Example
RS256
e
required

RSA public exponent

string
Example
AQAB
kid
required

Key ID

string
Example
key-id-1
kty
required

Key type

string
Example
RSA
n
required

RSA modulus

string
Example
abcd1234...
use
required

Key usage

string
Example
sig

Error

object
error
required

OAuth2 error code

string
error_description

Human-readable error description

string