O Auth Provider Callback
OAuth2 callback.
/auth/oauth/{oauth_provider}/callbackOAuth2 callback.
In: cookie
Path Parameters
The identifier for an OAuth2 provider such as "twitter".
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/auth/oauth/twitter/callback" \ -H "Content-Type: application/json" \ -d '{ "state": "string", "code": "string" }'{
"id": "string"
}{
"error": "string",
"message": "string",
"suggested": "string",
"metadata": {}
}O Auth J W K S GET
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.
O Auth Refresh Token Delete DELETE
Revoke one OAuth refresh token issued to the authenticated account. This prevents future refresh-token use for the selected grant. Existing JWT access tokens remain valid until their expiry.