sso校验及获取用户
<h5>请求URL</h5>
<ul>
<li><code>http://ip:9009/prod/oauth/ssoCheck/token?Token=***</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>位置</th>
<th>类型</th>
<th>必选</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>token</td>
<td>query</td>
<td>string</td>
<td>是</td>
<td>用户身份验证 token</td>
</tr>
</tbody>
</table>
<p>> 返回示例</p>
<p>> 成功</p>
<pre><code class="language-json">{
&quot;code&quot;: 0,
&quot;data&quot;: {
&quot;id&quot;: &quot;292296172582731776&quot;,
&quot;createdTime&quot;: &quot;2022-11-11 16:19:03&quot;,
&quot;createdBy&quot;: &quot;1&quot;,
&quot;updatedTime&quot;: &quot;2024-06-17 16:56:20&quot;,
&quot;updatedBy&quot;: &quot;292296172582731776&quot;,
&quot;username&quot;: &quot;***&quot;,
&quot;nickName&quot;: &quot;***&quot;,
&quot;email&quot;: null,
&quot;mobile&quot;: &quot;15111223344&quot;,
&quot;wxOpenId&quot;: null,
&quot;ddOpenId&quot;: null,
&quot;readonly&quot;: &quot;0&quot;,
&quot;sex&quot;: &quot;1&quot;,
&quot;nation&quot;: &quot;01&quot;,
&quot;education&quot;: &quot;08&quot;,
&quot;state&quot;: &quot;1&quot;,
&quot;workDescribe&quot;: &quot;O(∩_∩)O~&quot;,
&quot;passwordErrorLastTime&quot;: null,
&quot;passwordErrorNum&quot;: 0,
&quot;passwordExpireTime&quot;: null,
&quot;password&quot;: &quot;89861ae4e7f33d9bbe25c9bdb0bcf286e625d4dd7b4987eb3c1ae1071f98dfa6&quot;,
&quot;salt&quot;: &quot;tbt0utkj7zoittivumq9&quot;,
&quot;lastLoginTime&quot;: &quot;2024-06-18 13:38:37&quot;
},
&quot;msg&quot;: &quot;ok&quot;,
&quot;path&quot;: null,
&quot;extra&quot;: null,
&quot;timestamp&quot;: &quot;1718690620613&quot;,
&quot;errorMsg&quot;: &quot;&quot;,
&quot;isSuccess&quot;: true
}
</code></pre>
<h3>返回结果</h3>
<table>
<thead>
<tr>
<th>状态码</th>
<th>状态码含义</th>
<th>说明</th>
<th>数据模型</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td><a href="https://tools.ietf.org/html/rfc7231#section-6.3.1">OK</a></td>
<td>成功</td>
<td>Inline</td>
</tr>
</tbody>
</table>
<h3>属性</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>必选</th>
<th>约束</th>
<th>中文名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>integer</td>
<td>false</td>
<td>none</td>
<td>调用是否成功标识,0:成功,-1:系统繁忙,<br />响应编码:0/200-请求处理成功<br />40005-解析用户身份错误,请重新登录!<br />40009-登录超时,请重新登录!</td>
</tr>
<tr>
<td>data</td>
<td><a href="#schemafileresultvo">user</a></td>
<td>false</td>
<td>none</td>
<td>调用结果<br />响应数据</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>结果消息,如果调用成功,消息通常为空T<br />提示消息</td>
</tr>
<tr>
<td>path</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>请求路径</td>
</tr>
<tr>
<td>extra</td>
<td><a href="#schemamap%c2%abobject%c2%bb">Map«Object»</a></td>
<td>false</td>
<td>none</td>
<td>附加数据<br />附加数据</td>
</tr>
<tr>
<td>timestamp</td>
<td>integer</td>
<td>false</td>
<td>none</td>
<td>响应时间<br />响应时间戳</td>
</tr>
<tr>
<td>errorMsg</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>系统报错时,抛出的原生信息<br />异常消息</td>
</tr>
</tbody>
</table>