API: Factor/idcard_faceauthentic- 人口库人像比对
概览
Factor/idcard_faceauthentic
是submail的人口库人像比对API,输入姓名和身份证号以及人脸照片,和公安库照片比较,返回比较结果。
URL
<主> http://tpa.mysubmail.com/factor/idcard_faceauthentic
<备> https://tpa.mysubmail.com/factor/idcard_faceauthentic
http 请求方式
请求方式 | content-type 设置 |
---|---|
http post | multipart/form-data 、x-www-form-urlencoded 、application/json |
signature创建规则
1. 请将以下参数按照字段升序(A-Z)排列 appkey 、idNo 、name 、timestamp
2. 创建签名字符串 :以"key=value" + "&"(连接符)+ "key=value" 的方式连接所有参数
3. 创建签名:拼接签名字符串示例string = "appkey=xxxx&idNo=xxxx&name=xxxx×tamp=xxxxxxxxxx",然后使用sha256(string)创建签名
注:中文需要使用urlencode处理后再参与创建签名
请求参数
参数 | 类型 | 是否必需 | 默认 | 描述 |
---|---|---|---|---|
appid | string | 必需 | 无 | 在 SUBMAIL 身份认证服务中创建并且认证通过的应用 ID |
timestamp | string | 必需 | 无 | UNIX 时间戳 |
signature | string | 必需 | 无 | 签名,详细规则看下方介绍 |
idNo | string | 必需 | 无 | 身份证号码 |
name | string | 必需 | 无 | 用户姓名 |
image | string | 必需 | 无 | 身份证图片文件, 最大不超过4m, 支持 png、jpeg、jpg |
返回参数格式
jsonString
代码示例
详情请查询demo示例文档
响应消息
API请求失败
{
'status' : 'error' , // 状态描述
'send_id' : 'ee05d1635db847a2bf3c8317434539d6', // API流水号
'code' : 1201 , // API返回的状态码 详情查看 API错误代码与描述 文档
'msg' : 'Incorrect APP ID.' , // API返回的描述、
}
API请求成功
{
'status' : 'success' , // 状态描述
'send_id' : 'ee05d1635db847a2bf3c8317434539d6', // API流水号
'result' : {
'msg' => '...', //结果描述
'identical' => 'true', //true 判断是同一个人 false 判断不是同一个人
'status' => '01', //01 判断是同一个人 02 判断不是同一个人
'idCardNo' => '*****************', //身份证号码
'idCardName' => '***', //用户名字
};
}