Configuration

Get JSON Web Key Set

get

JWKS endpoint containing the public keys used by OpenID Connect Relying Party to verify any JWT issued by the authorization server.

Responses
200
A JSON object that represents a set of JWKs
application/json
get
GET /unknown/.well-known/jwks.json HTTP/1.1
Host: auth.authority.io
Accept: */*
200

A JSON object that represents a set of JWKs

{
  "keys": [
    {
      "kty": "text",
      "use": "text",
      "key_ops": "text",
      "alg": "text",
      "kid": "text",
      "x5u": "text",
      "x5c": "text",
      "x5t": "text",
      "x5t#S256": "text"
    }
  ]
}

Last updated

Was this helpful?