JSON Web Key Set
GET
/.well-known/jwks.json
const url = 'https://auth.timetonic.com/.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://auth.timetonic.com/.well-known/jwks.jsonReturns the public signing keys used to verify OIDC tokens.
Responses
Section intitulée « Responses »JWKS containing public keys
Media typeapplication/json
object
keys
Array<object>
object
Examplegenerated
{ "keys": [ {} ]}