Authorization endpoints
Telegram Auth V3
Explanation: Authenticates player based on Telegram MiniApp’s init data.
tip
This uses the Telegram's authentication method with asymethric cryptography.
- Endpoint specs
- Example request
- Example 200 response
- Path:
https://api.elympics.cc/v2/auth/user/telegram-auth-v3
- Method:
POST
- Headers:
Elympics-Publisher-API-Key: YOUR_API_KEY
{
"initDataRaw": "string", # Required. Provide here initData Mini App receives once it is opened
}
{
"jwtToken": "<auth-token>", # JWT token generated for the player
"userId": "<user-id>", # Elympics user id of the player
"nickname": "<user-nickname>", # Nickname of the player assigned in Elympics system
"avatarUrl": "https://url-to-users-avatar" # Url of the avatar assigned in Elympics
}