Get JSON Web Key Set for token validation
GET /api/v1/auth/.well-known/jwks.json Select code sample Fetch cURL
Revoke API key Next
Enrich JWT claims with user context and ensure DID key
const url = 'https://localhost:8080/api/v1/auth/.well-known/jwks.json';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
curl --request GET \ --url https://localhost:8080/api/v1/auth/.well-known/jwks.json
Return the public JWKS used by relying services to validate enriched tokens issued by the auth service
Responses
Section titled “ Responses ”200
Section titled “200 ”JWKS response
Media type application/json object keys ArrayExample generated
{ "keys": [ "example" ]}
Previous Revoke API key Next
Enrich JWT claims with user context and ensure DID key