接口说明
<p><strong>公共请求头参数:</strong></p>
<h4>所有请求都需要再hearders加入access_token</h4>
<h4>postman如何提交数据:</h4>
<h6>## Body->x-www-form-urlencoded;</h6>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>access_token</td>
<td>是</td>
<td>string</td>
<td>访问令牌</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
code: 0,
msg: &quot;&quot;,
data: {&quot;&quot;},
count:0
}</code></pre>
<p><strong>返回参数说明</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>int</td>
<td>接口状态码</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>返回信息</td>
</tr>
<tr>
<td>data</td>
<td>string</td>
<td>数据</td>
</tr>
<tr>
<td>count</td>
<td>int</td>
<td>条数</td>
</tr>
</tbody>
</table>
<p><strong>接口状态码(code)</strong></p>
<table>
<thead>
<tr>
<th>错误码</th>
<th>错误解释</th>
</tr>
</thead>
<tbody>
<tr>
<td>1001</td>
<td>访问令牌认证失败</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong></p>
<ul>
<li>access_token为公共请求头参数,用户登录时获取,有效期12小时</li>
<li>公共请求参数每个接口必需携带,登录接口除外</li>
<li>当接口状态码(code)为1001时,访问令牌(access_token)失效,需重新登录获取</li>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>