You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/docs/guides/pub-sub/notifications-center.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -491,15 +491,15 @@ notification payloads, and platform-specific setup, see the [push notifications
491
491
### Best practices for offline handling
492
492
493
493
***Enable history on inbox channels** to allow users to retrieve missed notifications
494
-
***Set appropriate history retention** based on your use case (24 hours to 1 year)
494
+
***Set appropriate history retention** based on your use case (2 minutes to 1 year)
495
495
***Use push notifications for critical alerts** that require immediate user attention
496
496
***Consider notification priorities** - not all notifications need push delivery
497
497
498
498
## Production-ready checklist
499
499
500
500
Before launching your notification center, review these key points:
501
501
502
-
***Authentication:** Use token authentication for all client-side communication with short TTLs (1-4 hours).
502
+
***Authentication:** Use JWT authentication for all client-side communication with short TTLs (1-4 hours max).
503
503
***Capabilities:** Apply the principle of least privilege - clients should only have publish access to an outbox and subscribe access to their own inbox.
504
504
***Validation:** Validate all notification request data in your processing pipeline, never trust client data.
505
505
***Monitoring:** Subscribe to [`[meta]log` channels](/docs/platform/errors#meta) to track integration errors and issues.
@@ -511,7 +511,7 @@ Before launching your notification center, review these key points:
511
511
512
512
## Next steps
513
513
514
-
* Read the [token authentication documentation](/docs/auth/token) for detailed auth implementation.
514
+
* Read the [JWT authentication documentation](/docs/auth/token) for detailed auth implementation.
515
515
* Explore [integration options](/docs/platform/integrations) to choose the right processing pipeline for your needs.
516
516
* Learn about [push notifications](/docs/push) to handle offline delivery.
517
517
* Review the [batch publish API](/docs/api/rest-api#batch-publish) for efficient multi-channel publishing.
0 commit comments