Flows / Simple SSO

Simple SSO

The zero-backend identity flow. Hand the widget a user object with a username and optional metadata. The account is created or updated on first comment.

Mode · Simple User · Someone
src/pages/simple-sso.astro
---
import { FastComments } from 'fastcomments-astro';

const simpleSSO = {
  username: 'Someone',
  email: 'someone@somewhere.com',
  avatar: 'https://example.com/avatar.jpg',
};
---

<FastComments tenantId="demo" urlId="demo-simple-sso" simpleSSO={simpleSSO} />