文档
测试

2.1 guest

POST
/api/user/guest

接口描述

Vistors enter game

Headers

参数名
类型
描述
必填
Authorization
string
Example:9b358d8549004bd0bb48b3f94ae7e2a5
必填
Content-Language
string
Language packs (optional), the default language for opening an account, Example:ENG
必填

Response

参数名
类型
描述
必填
success
number
Example:1
必填
msg
string
Example : guest login
必填
info
object
Data dictionary
必填
Url
string
The url to enter the game
必填

Description / Example

`curl https://api.xx.com/api/user/guest -X POST -H "Authorization: 9b358d8549004bd0bb48b3f94ae7e2a5" -H "Content-Type:application/x-www-form-urlencoded" -d "LANGUAGE=ENG"` Response body example: ```language { success: 1, msg: "login successful", info: { Url: https://xxx.xxx.com/start.html?api=xxxxx&token=d8e8d3c67f4e4878a2b89e2ec32481a1&language=ENG } } ```