This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Custom Authentication Examples - Fastify | |
| * | |
| * This file contains example Fastify endpoints that game developers can implement | |
| * on their own servers to integrate with PlaySafe's authentication system. | |
| * | |
| * These examples show how to: | |
| * 1. Verify player authentication tokens (used by PlaySafe to validate players) | |
| * 2. Generate player auth tokens (used by PlaySafe to get JWT tokens for players) | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Custom Authentication Examples - Express.js | |
| * | |
| * This file contains example Express endpoints that game developers can implement | |
| * on their own servers to integrate with PlaySafe's authentication system. | |
| * | |
| * These examples show how to: | |
| * 1. Verify player authentication tokens (used by PlaySafe to validate players) | |
| * 2. Generate player auth tokens (used by PlaySafe to get JWT tokens for players) | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Custom Authentication Examples | |
| * | |
| * This file contains example Hono endpoints that game developers can implement | |
| * on their own servers to integrate with PlaySafe's authentication system. | |
| * | |
| * These examples show how to: | |
| * 1. Verify player authentication tokens (used by PlaySafe to validate players) | |
| * 2. Generate player auth tokens (used by PlaySafe to get JWT tokens for players) | |
| */ |