Skip to Content
🔐 Faable AuthOpenID ConnectOverview

OpenID Connect

OpenID Connect (OIDC) is the identity layer on top of OAuth 2.0. Where OAuth alone answers “can this client access this API?”, OIDC also answers “who is the user?” — by returning a signed ID token alongside the access token and standardizing how to fetch profile claims.

Faable Auth implements OpenID Connect Core 1.0 . Every tenant domain is a fully self-describing OIDC issuer, so any standard OIDC client library works out of the box.

Discovery

Each tenant publishes its configuration at the standard well-known URL:

GET https://your-tenant.faable.app/.well-known/openid-configuration

The document lists the issuer, the authorization_endpoint, token_endpoint, userinfo_endpoint, jwks_uri, end_session_endpoint, and the supported scopes, response types, and signing algorithms. Point your OIDC library at your tenant domain and it configures itself from here.

ID tokens and signing keys

ID tokens (and access tokens) are JWTs signed with RS256. The public keys are published at:

GET https://your-tenant.faable.app/.well-known/jwks.json

Keys rotate automatically; each token’s kid header identifies the key that signed it, so libraries that cache the JWKS pick up rotations transparently. See Validate Access Tokens for how to verify tokens in your own API.

What’s supported

CapabilityNotes
Authorization Code Flow + PKCE (S256)The recommended login flow — see OAuth 2.0 Flows
Discovery/.well-known/openid-configuration per tenant
JWKS with key rotation/.well-known/jwks.json, RS256
nonceReplay protection for ID tokens
promptnone, login, consent, select_account
max_age + auth_timeForce or measure re-authentication
UserInfo endpointClaims gated by scopes (§5.4)
RP-Initiated Logoutid_token_hint, post_logout_redirect_uri
Dynamic Client RegistrationRFC 7591 , POST /oidc/register

Standard claims

Which claims end up in the ID token and the UserInfo response is controlled by the scopes you request at /authorize time — openid is required, and profile, email, phone, address unlock their claim groups. The full scope-to-claim mapping is documented on the UserInfo page.

Next steps

Last updated on