コンテンツにスキップ

Return JSON Web Key Set.

GET
/.well-known/jwks.json
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/.well-known/jwks.json

Successful JSON response.

Media type application/json
object
keys
required
Array<object>
object
kty
string
kid
string
use
string
alg
string
key
additional properties
Example
{
"keys": [
{
"kty": "RSA",
"kid": "signing-key-1",
"use": "sig",
"alg": "RS256"
}
]
}