获取用户信息接口
<h5>简要描述</h5>
<ul>
<li>获取用户信息</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://wlhyapi.hbcygc.net/api/wleye/GetUserInfo</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST 【form-data格式】</li>
</ul>
<h5>Header请求头</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;">access_token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户登录后凭证token</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;data&quot;: {
&quot;id&quot;: &quot;2134dbc7-e970-499d-9471-9a1721192669&quot;,
&quot;device&quot;: null,
&quot;platform&quot;: &quot;eyeprotect&quot;,
&quot;user_name&quot;: null,
&quot;user_phone&quot;: &quot;18602757158&quot;,
&quot;nickname&quot;: &quot;p2&quot;,
&quot;sex&quot;: 2,
&quot;headimg&quot;: &quot;https://img.hbcygc.net/wlhy/UserHeadImg/2134dbc7-e970-499d-9471-9a1721192669.jpg&quot;,
&quot;token&quot;: &quot;cfd2db53-4315-45a5-af31-9f8b9725cb9b&quot;,
&quot;wallet_address&quot;: null,
&quot;app_pwd&quot;: null,
&quot;pay_pwd&quot;: null,
&quot;meta_id&quot;: null,
&quot;country&quot;: null,
&quot;province&quot;: null,
&quot;city&quot;: null,
&quot;address&quot;: null,
&quot;need_improve_info&quot;: false,
&quot;universe_name&quot;: null,
&quot;grade&quot;: null,
&quot;profile&quot;: null,
&quot;meta_birthday_ts&quot;: &quot;1083824704000&quot;,
&quot;expiredate_ts&quot;: &quot;&quot;,
&quot;is_expired&quot;: false,
&quot;points&quot;: &quot;3&quot;, //用户可用积分
&quot;createtime_ts&quot;: &quot;1716947572000&quot;,
&quot;uptime_ts&quot;: &quot;1716968187000&quot;
},
&quot;otherValue&quot;: null,
&quot;message&quot;: &quot;操作成功&quot;,
&quot;result&quot;: false,
&quot;total&quot;: 0
}</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;">code</td>
<td style="text-align: left;">int</td>
<td>状态码,200:成功;201:参数不完整 202:获取失败 401:授权不通过</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">json</td>
<td>用户信息 wallet_address:钱包地址 meta_id:元宇宙Id createtime:出生日期</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>