Get the public keys of the configured JWT issuer.
GET/.well-known/jwks.json
Get the public keys of the configured JWT issuer.
Responses​
- 200
The public keys of the configured JWT issuer.
- application/json
- Schema
- Example
Schema
any
{
"keys": [
{
"alg": "sha256WithRSAEncryption",
"e": "AQAB",
"kid": "fDKvq05HG0...",
"kty": "RSA",
"n": "u7cp95GkUOj...",
"use": "sig",
"x5c": [ "MIIDoTCCAomgAw..." ],
"x5t": "DMpDIyR...",
"x5t#S256": "fDKvq05HG0Oz...."
}
]
}
Loading...