Dec 12, 2024
Centralize authentication for Stack Dyno apps using your existing identity provider.

You can keep the marketing site public while gating the reseller and user dashboards behind SSO.
email and groups claimssequenceDiagram
participant User
participant IdP
participant StackDyno
User->>StackDyno: Access /frontend-user
StackDyno->>IdP: Redirect with client_id + scopes
IdP-->>User: Prompt + MFA
User-->>StackDyno: Auth code
StackDyno->>IdP: Exchange for tokens
IdP-->>StackDyno: id_token + access_token
StackDyno->>User: Signed session cookie
https://app.stackdyno.dev/api/auth/callback).CLIENT_ID, CLIENT_SECRET, and ISSUER_URL in the backend .env.frontend-user/src/App.tsx to require an authenticated session before rendering.With SSO locked in, customers trust Stack Dyno with their real production data.
Need more depth? Check the related guides or ping us for a live walk-through.
Read the blog