聊天室 -- 红包领取
<p><strong>简要描述:</strong></p>
<p>-聊天室发红包</p>
<p><strong>URL</strong></p>
<ul>
<li><code>http://xx.com/chatFunction/playChatRoomRedp</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>
<tr>
<td style="text-align: left;">RedpId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>红包id,在 聊天室 -- 管理员发红包 接口中返回数据中拿取</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code>{
"oid":"e094c8348b2576976b131c219e437201",
"RedpId":"22"
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code>{
"code":0,
"msg":2006,
"data":"领取成功,获得红包20元"
}</code></pre>
<p>失败的情况:</p>
<pre><code>{
"code": 1,
"msg": 7001,
"data": "登录失效" //失败原因
}</code></pre>
<p><strong>备注</strong></p>
<ul>
<li>单个会员领取红包的时间间隔是3秒</li>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>