Storyden
Auth

O Auth J W K S

List public JSON Web Keys that clients can use to validate Storyden OAuth access tokens and OpenID Connect ID tokens. This is advertised by `/.well-known/openid-configuration` as `jwks_uri`. Storyden serves this under the API mount because the key set is an API resource; the well-known discovery document itself is mounted at the instance root and is intentionally not part of this OpenAPI document.

GET/oauth/jwks

List public JSON Web Keys that clients can use to validate Storyden OAuth access tokens and OpenID Connect ID tokens.

This is advertised by /.well-known/openid-configuration as jwks_uri. Storyden serves this under the API mount because the key set is an API resource; the well-known discovery document itself is mounted at the instance root and is intentionally not part of this OpenAPI document.

Response Body

application/json

application/json

curl -X GET "https://example.com/oauth/jwks"
{
  "keys": [
    {
      "kty": "string",
      "use": "string",
      "alg": "string",
      "kid": "string",
      "n": "string",
      "e": "string"
    }
  ]
}
{
  "error": "string",
  "message": "string",
  "suggested": "string",
  "metadata": {}
}