DEMO: Factor/idcard_faceauthentic - 人口库人像对比
<?php
/*****************
* 加密请求 示例代码
******************/
//appid参数 appkey参数在 身份认证-创建/管理AppID中获取
$appid = '6***3'; //appid参数
$appkey = '5d****************************58'; //appkey参数
$timestamp = time(); //获取当前时间戳
$name = '***'; //待验证用户姓名
$idNo = '3****************3'; //待验证用户 身份证号码
$image = '/Users/v1ctor/Documents/图片/****.jpg'; //图片地址
$temp_data = array(
'appkey' => $appkey ,
'timestamp' => $timestamp,
'idNo' => $idNo,
'name' => $name,
);
//生成签名
ksort($temp_data);
reset($temp_data);
$signature = hash('sha256', http_build_query($temp_data));
$post_data = array(
'appid' => $appid,
'timestamp' => $timestamp,
'signature' => $signature,
'name' => $name,
'idNo' => $idNo,
'image' => curl_file_create($image),
);
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://tpa.mysubmail.com/factor/idcard_faceauthentic",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => $post_data,
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}