人脸识别结果
<p><strong>简要描述:</strong> </p>
<ul>
<li>人脸识别结果</li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>API地址: <a href="https://open-beta.56yzm.com:8443">https://open-beta.56yzm.com:8443</a> (不同的环境,不同的API地址)</li>
<li>请求地址:/open-api/ocr/ocrFaceResult</li>
</ul>
<p><strong>请求头数据 </strong></p>
<ul>
<li>Content-Type : application/json;charset=UTF-8 </li>
<li>Authorization: Bearer {your_access_token} </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;">flowId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">String</td>
<td>发起刷脸时的ID</td>
</tr>
</tbody>
</table>
<p><strong>入参示例</strong></p>
<pre><code> {
&quot;ocrFaceResult&quot;: &quot;3653955595587292752&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;">status</td>
<td style="text-align: left;">string</td>
<td>刷脸结果状态<br><br>ING - 刷脸地址已申请<br><br>SCAN - 刷脸地址已使用,但尚未接收到刷脸结果<br><br>SUCCESS - 刷脸认证通过<br><br>FAIL - 刷脸认证失败</td>
</tr>
<tr>
<td style="text-align: left;">message</td>
<td style="text-align: left;">string</td>
<td>刷脸结果描述</td>
</tr>
<tr>
<td style="text-align: left;">similarity</td>
<td style="text-align: left;">string</td>
<td>刷脸照片相似度得分</td>
</tr>
<tr>
<td style="text-align: left;">livingScore</td>
<td style="text-align: left;">string</td>
<td>刷脸活体检测得分</td>
</tr>
</tbody>
</table>
<p><strong>出参示例</strong></p>
<pre><code> {
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;string&quot;,
&quot;data&quot;: {
&quot;status&quot;: &quot;string&quot;,
&quot;message&quot;: &quot;string&quot;,
&quot;similarity&quot;: &quot;string&quot;,
&quot;livingScore&quot;: &quot;string&quot;
}
}</code></pre>