No Authentication
No-authentication mode lets the widget connect using only a user identifier, with no token verification. This is the fastest way to get started during development.Setup
PassauthType: "none" with the user’s identity:
- React
- Angular
- Vanilla JS
Required fields
| Field | Type | Description |
|---|---|---|
authType | "none" | Must be set to "none". |
userId | string | The user’s unique identifier. |
userEmail | string | The user’s email address. |
When to use
This mode is appropriate for local development, demos, hackathons, or internal tools where security is not a concern. It lets you test the full notification flow without setting up backend token generation or Firebase.Migrating to production
When you’re ready to go to production, switch to one of the secure authentication strategies:Backend tokens
Recommended for apps with their own auth system.
Firebase
Zero-effort if you already use Firebase Auth.