进入游戏
## 进入游戏
### 接口说明
```
接口用途:获取游戏地址及其他相关信息
请求地址:发布站/api/system/
请求方式:Get 或 Post
```
### 请求参数
| 名称| 参数 | 类型 | 默认值 | 示例 |说明 |是否必填
| -------| ------- | ------------ | -------- | -------- | -------- |---
| 请求类型 | cmd | string | play.game | play.game | 固定值 |是
| 游戏编号 | gid | int | | 1220 | 进入的游戏编号 |是
| 游戏服编号 | sid | int | | 2750 | 进入的游戏服编号 |是
| 游戏服密码 | server_key | string | | | 可为空 |否
| 玩家编号 | playerid | string | | 16596 | 进入游戏的账号编号 可以是小号 |是
| 玩家名称 | player | string | | xykj888 | 进入游戏的账号名称 可以是小号 |是
| 盒子标识 | boxsource | string | | | 盒子进游戏标识,不是盒子传空 |否
### 请求响应
```json
{
"code": 1,
"msg": "",
"data": {
"GameType": "页游", //游戏类型
"GameName": "传奇霸业", //游戏名称
"ServerName": "绿色1区", //游戏服名称
"Sid": 2750, //游戏服编号
"Gid": "1220", //游戏编号
"PlayGame": "http://app.335wan.mir.6wtx.com/client/?user_name=61851&server_id=S1&time=1589265816&is_adult=1&sign=3391ed0599b847a0f78734ce24e7ee53&client=2&wd_entergame=1", //游戏地址
"PlayKey": "a96GDKfxrc4lvJvWv1Nicg==", //进入游戏key
"User": { //后期会去掉返回user 从认证站拿
"QQ": "",
"Weixin": "",
"City": "",
"Address": "",
"Sex": "男",
"Phone": "",
"Mail": "",
"Paypwd": true,
"Uid": "10004",
"Uname": "xykj777",
"Source": "",
"Vip": 0,
"Coin": 721,
"Score": 19,
"Points": null,
"NickName": "xykj777",
"UserFace": "http://vip2.wan911.com/api/skin/img/use-img.jpg",
"Token": null,
"IsFcm": null,
"Users": []
},
"BallLogo":"xxx",//小球logo
}
}
```