绑定手机
<p><strong>简要描述:</strong> </p>
<ul>
<li>绑定手机号码, 方便以后通过手机登录;</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/api/v1/user/bind-mobile</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </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;">mobile</td>
<td style="text-align: left;">必选</td>
<td style="text-align: left;">string</td>
<td>手机号码</td>
</tr>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">必选</td>
<td style="text-align: left;">string</td>
<td>短信验证码, 需要请求<code>发送短信验证码</code>接口, <code>type</code>为<code>bind</code></td>
</tr>
</tbody>
</table>
<p><strong>身份验证: </strong></p>
<p><code>是</code></p>
<p><strong>返回示例</strong></p>
<pre><code># 成功
{
&quot;code&quot;: 0,
&quot;message&quot;: &quot;&quot;,
&quot;data&quot;: []
}
# 异常
{
&quot;code&quot;: 422,
&quot;message&quot;:&quot;该手机号码已经被绑定&quot;,
&quot;data&quot;:[]
}</code></pre>