05-单点登录
<p><strong>简要描述:</strong>
> 单点登录token解析</p>
<p><strong>维护人员:</strong>
> amoy-peter</p>
<p><strong>请求URL:</strong></p>
<pre><code class="language-html">http://{ip}/api/cus/sso/getUserInfoByToken</code></pre>
<p><strong>参数格式:</strong></p>
<pre><code class="language-html">Content-Type:application/json</code></pre>
<p><strong>HTTP请求方式:</strong></p>
<pre><code>POST</code></pre>
<p><strong>请求Headers参数说明:</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;">appid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>应用id</td>
</tr>
<tr>
<td style="text-align: left;">token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>token信息</td>
</tr>
<tr>
<td style="text-align: left;">skipsession</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>跳过session检查 固定值1</td>
</tr>
</tbody>
</table>
<p><strong>请求Headers参数示例:</strong></p>
<pre><code>{
&quot;appid&quot;:&quot;APY9A2227rtwjDox&quot;,
&quot;token&quot;:&quot;07e8bb02-4d07-4a4f-8847-be9a5cf106fb&quot;,
&quot;skipsession&quot;:&quot;1&quot;
}</code></pre>
<p><strong>请求Body参数说明:</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;">ssoToken</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>ssoToken</td>
</tr>
</tbody>
</table>
<p><strong>请求Body参数示例:【备注==>>> ssoToken有效期为60s】</strong></p>
<pre><code class="language-json"> {
&quot;ssoToken&quot;:&quot;1f003165-efbc-6ed0-8d6d-756e616a92e5&quot;
}</code></pre>
<p><strong>返回参数说明:</strong></p>
<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;">batchkey</td>
<td style="text-align: left;">string</td>
<td>业务批次key</td>
</tr>
<tr>
<td style="text-align: left;">apiStatus</td>
<td style="text-align: left;">boolean</td>
<td>api请求状态true或flase</td>
</tr>
<tr>
<td style="text-align: left;">status</td>
<td style="text-align: left;">boolean</td>
<td>业务状态true或flase</td>
</tr>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">string</td>
<td>业务代码<br/>200:成功<br/>301:异常</td>
</tr>
<tr>
<td style="text-align: left;">cost</td>
<td style="text-align: left;">string</td>
<td>接口耗时ms</td>
</tr>
<tr>
<td style="text-align: left;">timestamp</td>
<td style="text-align: left;">long</td>
<td>时间戳</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">object</td>
<td>json对象</td>
</tr>
<tr>
<td style="text-align: left;">msg</td>
<td style="text-align: left;">String</td>
<td>输出提示</td>
</tr>
</tbody>
</table>
<p><strong>返回参数示例:</strong></p>
<pre><code>{
&quot;batchkey&quot;: &quot;amoy_user_info_1742372453882_wk1e&quot;,
&quot;msg&quot;: &quot;获取成功&quot;,
&quot;code&quot;: 200,
&quot;cost&quot;: &quot;5ms&quot;,
&quot;data&quot;: {
&quot;id&quot;: 68947,
&quot;name&quot;: &quot;陈元钧&quot;,
&quot;loginid&quot;: &quot;chenyuanjun&quot;
},
&quot;apiStatus&quot;: true,
&quot;status&quot;: true,
&quot;timestamp&quot;: 1742372453884
}</code></pre>
<p><strong>list数据集说明:</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">key</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">主键id</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">名称</td>
</tr>
<tr>
<td style="text-align: left;">loginid</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">登录名</td>
</tr>
</tbody>
</table>