JWKS
A JSON Web Key set is a JSON object which represents a set of JSON Web Keys (a JSON object that represents a cryptographic key).
Get jwks
GET
{{BASE_URL}}/api/jwks
Get a JWKS object to validate the token issued from BE0.
{
"keys": [
{
"kty": "EC",
"kid": "PVv6i20A4FfurWUkJFF31EyYnlvrSV1PE3NQ28M51-E",
"use": "sig",
"alg": "ES256",
"crv": "P-256",
"x": "DF0AzHnyhJE42f3gvTn2FTMRYjmVjkDRzp1m7eaZzEE",
"y": "QCczeDGNneJ8mTIClmb-_udpUQH-CKIqnxaU9KSklRA"
}
]
}
Last updated
Was this helpful?