获取多个彩种上下期信息
<p><strong>简要描述:</strong></p>
<ul>
<li>获取单个彩种上下期信息</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://xxx.xxx.com/systems/getSingleCloseTimeAll</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST Content-Type: application/json;charset=utf-8</li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">game_code</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>游戏代号json数组格式,例如:[270,260,280]</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": 0, // 值为0才会触发动画,值不为0则会运行'app.get_retry'这个方法调接口
"data": {
{
"currentTime": "2018-08-02 02:34:00", // 下期开奖时间
"ticking": 88, // 到下期开奖的倒计时秒数
"current": "20180801162", // 下期期号
"total": 180, // 当天总共多少期 (没用到)
"remain": 19, // 当天还剩余多少期 (没用到)
"currentNo": "162", // 下期第几期
"interval": 300, // 每N秒开一期 (没用到)
"summery": [ // 龙虎 冠亚合 单双 等杂项
"虎",
"虎",
"虎",
"虎",
"龙",
3,
"单",
"小"
],
"newest": {
"code": "2,1,4,6,5,3,10,9,8,7", // 上期号码 (字符串)
"issue": "20180801161", // 上期期号 (字符串)
"array": [ // 上期号码 (数组)
"2",
"1",
"4",
"6",
"5",
"3",
"10",
"9",
"8",
"7"
],
"sum": 55, // 上期号码总和
"term": 161, // 上期是当天第几期
"time": "2018-08-02 02:29:00" //上期开奖时间
},
}
。。。
},
"message": "success" // (没用到)
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>