>獲取領寶箱和領金幣的時間
~~~[api]
get:/index.php/gamecow/Apigame/member_get_receive
<<<
success
{
"err": 0,
"point": {
"money": 0,
"point": 1305
},
"data": {
"coins_time": 201,
"chest_time": 0
}
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "錯誤信息"
}
~~~
| 字段 | 詳情 |
| --- | --- |
| point| 積分信息|
| |----money| 現金數量 |
| |----point| 金幣數量 |
| data | 物品欄信息|
| |----coins_time| 領取金幣的時間 0:可以領取,-1:不能領取(無領取按鈕),大于0:倒計時 |
| |----chest_time| 開寶箱時間,0:可以領取,-1:不能領取(無領取按鈕),大于0:倒計時 |
>領取金幣或者開寶箱
~~~[api]
get:/index.php/gamecow/Apigame/member_receive
string:type=coins#類型 coins:領取金幣,chest:開寶箱
<<<
success
{
"err": 0,
"receive": 100,
"point": {
"money": 0,
"point": 1305
},
"data": {
"coins_time": 201,
"chest_time": 0
}
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "錯誤信息"
}
~~~
| 字段 | 詳情 |
| --- | --- |
| receive| 領取金幣或者開寶箱產生的金幣|
| point| 積分信息|
| |----money| 現金數量 |
| |----point| 金幣數量 |
| data | 物品欄信息|
| |----coins_time| 領取金幣的時間 0:可以領取,-1:不能領取(無領取按鈕),大于0:倒計時 |
| |----chest_time| 開寶箱時間,0:可以領取,-1:不能領取(無領取按鈕),大于0:倒計時 |