Authentication
Get JWKS
Returns the JSON Web Key Set used to validate JWT tokens issued by this service
get/jwks.json
Response
OK
Example response
{
"keys": [
{
"alg": "ES256",
"crv": "P-256",
"kid": "<thumbprint>",
"kty": "EC",
"use": "sig",
"x": "<base64url>",
"y": "<base64url>"
}
]
}