解密手机号
<p><strong>请求URI:</strong></p>
<ul>
<li><code>account/encrypted-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>
</tbody>
</table>
<p><strong>说明:</strong></p>
<ul>
<li>自动覆盖用户手机号信息</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;phoneNumber&quot;: &quot;183211111111&quot;,
&quot;purePhoneNumber&quot;: &quot;183211111111&quot;,//不带区号的手机号
&quot;countryCode&quot;: &quot;86&quot;,
&quot;watermark&quot;: {
&quot;timestamp&quot;: 1662005237,
&quot;appid&quot;: &quot;wx236cbaf206cc2280&quot;
}
},
&quot;code&quot;: 0
}</code></pre>