此 API 请求使运营商能够获取默认情况下使用真实现金模式进行的最近100轮游戏的历史记录。
GameHistory() 请求
类型 | 输入 |
---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL>/games/game-history/ |
标头 | "Content-Type": "application/json" |
POST 参数 | json 对象 e.g.: { "api_key": "1pghjl4v5apt2bks", "player_id": "1002", "amount_type": "real", "start_date": "2020-02-20 00:00:00", "end_date": "2020-02-21 00:00:00", "page_num": 1, } |
参数 | 类型 | 描述 |
---|
api_key | 字符串 | 分配给每个前端的API Key |
player_id | 字符串 | 玩家 ID |
amount_type | 字符串 | 玩游戏的模式 |
start_date | 字符串 | 开始日期时间格式如下 “YYYY-MM-DD HH:MM:SS” |
end_date | 字符串 | 结束日期时间格式如下 “YYYY-MM-DD HH:MM:SS” |
page_num | 整数 | 页数 |
GameHistory() 响应 + 示例
{ "game_history": {"headers": ["Game Name", "Round ID", "Bet Amount", "Win Amount", "Amount Type", "Date Time"], "data": [ ["Test Game Name-1", 1001, 100, 100, "real", "2019-07-23 17:20:57"], ["Test Game Name-1", 1002, 100, 100, "real", "2019-07-23 17:20:57"], ["Test Game Name-2", 1003, 100, 100, "real", "2019-07-23 17:20:57"] ] } }
响应对象中的对象/Key | 类型 | 描述 |
---|
game_history | JSON 对象 | 响应状态 |
game_history[‘headers’] | JSON 列表 | 表头 |
game_history[‘data’] | JSON 表中表 | 游戏回合数据表中表 |