红包雨活动
<p><strong>简要描述:</strong></p>
<ul>
<li>红包雨活动</li>
</ul>
<p><strong>获取用户签到状态URL:</strong></p>
<ul>
<li><code>http://xx.com/BonusActivity/do_RedMoney</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;">oid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户在线oid</td>
</tr>
</tbody>
</table>
<p><strong>失败示例</strong></p>
<pre><code>{
&quot;msg&quot; : 7001,
&quot;info&quot; : &quot;您已经参加过此次活动了!&quot; // 具体失败原因, 已经包含所有情况
}</code></pre>
<p><strong>成功示例</strong></p>
<pre><code>{
&quot;msg&quot; : 2006,
&quot;money&quot; : 88, // 抢到的金额
&quot;hb_num&quot; : 2, // 2到5之间的随机数
}</code></pre>
<p><strong>获取活动是否开放URL:</strong></p>
<ul>
<li><code>http://xx.com/BonusActivity/isActivityClose</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;">oid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户在线oid</td>
</tr>
</tbody>
</table>
<p><strong>开放</strong></p>
<pre><code>{
&quot;msg&quot; : 2006,
&quot;status&quot; : &quot;on&quot;
}</code></pre>
<p><strong>关闭</strong></p>
<pre><code>{
&quot;msg&quot; : 7001,
&quot;status&quot; : &quot;off&quot;,
'info' : &quot;活动关闭中!&quot;
}</code></pre>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>