该网络服务将获取用户最近十天內未完成的桌上游戏及老虎机游戏。每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 21 22 23 24 25 |
<!--?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> <unfinishedgamedetail> <gamecode>EG-BACC-LOBBY</gamecode> <hostid>1001</hostid> <betamount>10</betamount> </unfinishedgamedetail> </unfinishedgamedetaillist> <errormsgid>0</errormsgid> <errormsg>Success</errormsg> </getunfinishedgameresponse> |