GET/authorisation/v4/jwks
Exposes the public keys of the Authorisation Service in JSON Web Key Set (JWKS) format.
Request
Responses
- 200
- 500
JSON Web Key Set
- application/jwk-set+json
- Schema
- JSON Web Key Set
Schema
- Array [
- ]
keys object[]
kty string
crv string
alg string
x string
y string
kid string
JSON Web Key Set
{
"keys": [
{
"kty": "EC",
"crv": "P-256",
"alg": "ES256",
"x": "9Cn5hmFfG-uVuixEk4zCdeF6ZLeeWuvqfGPPWMKDKOw",
"y": "yNnt9p06g8gzoKToQZwzJ-7z6ES-dR2PkyV6oQecaUA",
"kid": "hcpxQ2xL8ncXKB9SoEgW2ImiG_4WR5NXJvQ_PGuHO5k"
}
]
}
Internal Server Error
- application/problem+json
- Schema
- Internal Server Error
Schema
type uri
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
title string
A short summary of the problem type.
status int32
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
detail string
A human readable explanation specific to this occurrence of the problem.
instance uri
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Internal error",
"status": 500,
"detail": "Internal error"
}
Loading...