签到
<p>[TOC]</p>
<h3>1、【签到】接口功能</h3>
<h5>请求URL</h5>
<ul>
<li>/v1/gzhSignV2/sign</li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
<li>Content-Type:application/x-www-form-urlencoded</li>
</ul>
<h5>请求参数</h5>
<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 </td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>乐玩游戏标识,含服务号、主游戏、子游戏</td>
</tr>
<tr>
<td style="text-align: left;">token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户态</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>// 成功
{
&quot;code&quot;: 1,
&quot;msg&quot;: &quot;签到成功&quot;,
&quot;d&quot;: {
&quot;sign_info&quot;: {
&quot;is_open&quot;: 1,
&quot;is_sign&quot;: 1,
&quot;tomorrow_time&quot;: 32621,
&quot;days&quot;: 1,
&quot;list&quot;: [
{
&quot;day&quot;: 1,
&quot;desc&quot;: &quot;伙伴经验箱(12小时)*1&quot;,
&quot;status&quot;: 0
},
{
&quot;day&quot;: 2,
&quot;desc&quot;: &quot;随机英雄碎片*5&quot;,
&quot;status&quot;: 0
},
{
&quot;day&quot;: 8,
&quot;desc&quot;: &quot;钻石*500&quot;,
&quot;status&quot;: 0
},
{
&quot;day&quot;: 14,
&quot;desc&quot;: &quot;稀有铸币*50&quot;,
&quot;status&quot;: 0
},
{
&quot;day&quot;: 21,
&quot;desc&quot;: &quot;招募券*5&quot;,
&quot;status&quot;: 0
}
],
&quot;conf&quot;: {
&quot;title&quot;: &quot;10月签到有礼【部落大乱斗1-几何王国】&quot;,
&quot;bg_pic&quot;: &quot;https://static-cdn.llewan.com/storage/award_code/icons/20240410/25dcdb28a5fda9ff6648927d933e5c28.png&quot;,
&quot;is_bind&quot;: 1
}
},
&quot;user_info&quot;: {
&quot;mobile_number&quot;: &quot;&quot;,
&quot;nickname&quot;: &quot;LEWAN20231129174608&quot;,
&quot;avatar&quot;: &quot;2222&quot;,
&quot;role_id&quot;: &quot;149193703&quot;,
&quot;wx_role_ids&quot;: [
{
&quot;server_id&quot;: &quot;815&quot;,
&quot;role_id&quot;: &quot;149193732&quot;
},
{
&quot;server_id&quot;: &quot;815&quot;,
&quot;role_id&quot;: &quot;149193703&quot;
}
],
&quot;platform&quot;: &quot;weixin&quot;,
&quot;platform_name&quot;: &quot;微信&quot;,
&quot;all_platform&quot;: [
{
&quot;platform&quot;: &quot;weixin&quot;,
&quot;name&quot;: &quot;微信&quot;
},
{
&quot;platform&quot;: &quot;toutiao&quot;,
&quot;name&quot;: &quot;头条&quot;
},
{
&quot;platform&quot;: &quot;qq&quot;,
&quot;name&quot;: &quot;QQ&quot;
},
{
&quot;platform&quot;: &quot;zfb&quot;,
&quot;name&quot;: &quot;支付宝&quot;
}
],
&quot;uid&quot;: &quot;193783_183_1&quot;
}
}
}
// 异常
{&quot;code&quot;: -1, &quot;msg&quot;: &quot;找不到角色信息&quot;}
</code></pre>