该网络服务将获取用户最近十天內未完成的老虎机游戏. 每1秒钟可以调用10次,否则报错.
输入参数名称 | 描述 | 类型和长度限制 | 必填? |
---|---|---|---|
method | 必须是 “GetUnfinishedGame” | String (32) | Y |
Key | 密钥 | String (32) | Y |
Time | 当前时间格式“yyyyMMddHHmmss” | DateTime | Y |
Username | 用户名 | String (28) | Y |
Name | Description | Type and Limit | Required? |
---|---|---|---|
Username | 用户名 | String (28) | Y |
UnfinishedGameDetailList | 未完成的游戏详细列表 | XML | Y |
ErrorMsgId | 错误信息: 0: 成功 100: 用户名错误 108: 用户名长度格或式错误 116: 用户名不存在 | Byte | Y |
ErrorMsg | 错误信息详细 | String | Y |
输出
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<?xml version="1.0" encoding="utf-8"?> <GetUnfinishedGameResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Username>DemoUser001</Username> <UnfinishedGameDetailList> <UnfinishedGameDetail> <GameCode>EG-SLOT-A036</GameCode> <BetAmount>10</BetAmount> </UnfinishedGameDetail> <UnfinishedGameDetail> <GameCode>EG-SLOT-A038</GameCode> <BetAmount>20</BetAmount> </UnfinishedGameDetail> <UnfinishedGameDetail> <GameCode>EG-SLOT-C003</GameCode> <BetAmount>40</BetAmount> </UnfinishedGameDetail> </UnfinishedGameDetailList> <ErrorMsgId>0</ErrorMsgId> <ErrorMsg>Success</ErrorMsg> </GetUnfinishedGameResponse> |