Commit 12473f
2026-06-23 02:43:54 Anonymous: Build out AeThex documentation pages| /dev/null .. game-integration.md | |
| @@ 0,0 1,42 @@ | |
| + | # Game Integration |
| + | |
| + | Game integration connects an experience to Passport, inventory, achievements, progress, and support context. |
| + | |
| + | --- |
| + | |
| + | ## Integration Checklist |
| + | |
| + | 1. Register the game/project. |
| + | 2. Choose required Passport scopes. |
| + | 3. Implement sign-in or linking flow. |
| + | 4. Verify sessions server-side. |
| + | 5. Sync achievements/progress if needed. |
| + | 6. Connect support and moderation routing. |
| + | 7. Test with staging users. |
| + | |
| + | --- |
| + | |
| + | ## Common Game Data |
| + | |
| + | | Data | Notes | |
| + | |---|---| |
| + | | Passport ID | Stable user identity reference | |
| + | | Display profile | Public-facing name/avatar context | |
| + | | Inventory | Approved item/locker data | |
| + | | Achievements | Progress and milestone events | |
| + | | Entitlements | Access, roles, purchases, grants | |
| + | |
| + | --- |
| + | |
| + | ## Recommended Pattern |
| + | |
| + | Do not trust client-only game claims. Send client events to your server, verify with AeThex, then apply rewards or state changes. |
| + | |
| + | --- |
| + | |
| + | ## Related |
| + | |
| + | - [[Passport]] |
| + | - [[Authentication]] |
| + | - [[SDKs]] |
| + | - [[Webhooks]] |