/{app_slug}/v1/.well-known/jwks.jsonPer-app JWKS
Returns the JSON Web Key Set used to sign EndUser and M2M access tokens for this app. Cached at the edge for 1 hour; verifiers should re-fetch on `kid` miss.
Path parameters
app_slug*stringResponse · 200
keys*arrayExample
Request
GET /{app_slug}/v1/.well-known/jwks.jsonResponse
{
"keys": [
{
"kid": "rs256-moc6k64k-b2214480",
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "string",
"e": "AQAB"
}
]
}