用户登录
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户注册接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://680s20r720.goho.co:16812/custom/login</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>post </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;">userName</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户名</td>
</tr>
<tr>
<td style="text-align: left;">password</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>密码</td>
</tr>
</tbody>
</table>
<h5>Body</h5>
<pre><code>{
userName:&quot;test&quot;,
password:&quot;test&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code> {
&quot;msg&quot;:&quot;custom/login/ok&quot;,
&quot;code&quot;:200,
&quot;data&quot;:&quot;eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzM4NCJ9.eyJhdWQiOiIxIiwiZXhwIjoxNzAzNDAzMjM3fQ.Zu6PzItXqDY5zVR570ZWfbDmKL
fEy8pi9wAfTEiszZMisImprsd8V95ed2zZrPJ-&quot;
}
</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">string</td>
<td>token</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>