解密手机号(手机号主体)
<p><strong>请求URI:</strong></p>
<ul>
<li><code>account/encrypted-phone/unique-phone</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST <code>AUTH</code></li>
</ul>
<p><strong>参数:</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;">session_key</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>授权登录返回的会话session</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>授权确认返回的e.detail.encryptedData</td>
</tr>
<tr>
<td style="text-align: left;">iv</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td> e.detail.iv</td>
</tr>
<tr>
<td style="text-align: left;">mini_openid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>小程序openid</td>
</tr>
<tr>
<td style="text-align: left;">tencent_unionid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>集团编码</td>
</tr>
</tbody>
</table>
<p><strong>说明:</strong></p>
<ul>
<li>手机号已存在则关联openid</li>
<li>手机号不存在则注册</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;decrypt_data&quot;: {//解密数据内容
&quot;phoneNumber&quot;: &quot;18329046271&quot;,
&quot;purePhoneNumber&quot;: &quot;18329046271&quot;,
&quot;countryCode&quot;: &quot;86&quot;,
&quot;watermark&quot;: {
&quot;timestamp&quot;: 1738827147,
&quot;appid&quot;: &quot;wxf791eb7758273940&quot;
}
},
&quot;token&quot;: {//登录令牌信息
&quot;authorization&quot;: &quot;UVK0o2iSyPEWkkdQFgoVFnVf3KeptP1SOKo8bbQOFZ33pWLNA59ZvJl2aEVIJONrcqrLvQQQSg5TosXMx5UtFgQlINMpgtyQGK+eLbRPMXmS430npIhbuuayvlgWlpIRjyA5AJtmVr1cV0z/RhrWFg==&quot;,
&quot;iat&quot;: 1738827577,
&quot;exp&quot;: 1739690577
}
},
&quot;code&quot;: 0
}</code></pre>