Get well-known JWT keys
Retrieve JWKs for JWT verification, containing both static and dynamic keys.
GET
/appid-{appId}/.well-known/jwks.jsonResponses
200Retrieve JWKs for JWT verification, containing both static and dynamic keys.
keysjwk[]Show propertiesHide properties
Array of
jwkalgcreateJWTAlgorithmThe algorithm to use when creating the JWT.
Allowed:
RS256ktystringusestringkidstringUnique identifier for the JWK
x5cstring[]X.509 Certificate Chain
400error code 400
string404error code 404
string500error code 500
stringTry it
Server
Request
curl -X GET "/appid-{appId}/.well-known/jwks.json"const response = await fetch("/appid-{appId}/.well-known/jwks.json", {
method: "GET"
});import requests
response = requests.get(
"/appid-{appId}/.well-known/jwks.json",
)Response
{
"keys": [
{
"alg": "RS256",
"kty": "RSA",
"use": "sig",
"kid": "string",
"x5c": [
"string"
]
}
]
}"string""Not Found""Internal Error"