一、什么是人脸身份证比对?
人脸身份证比对又称人证比对,实人比对,人像比对,输入姓名、身份证号码和头像照片,与公安库身份证头像进行权威比对,返回分值作为判断依据。
二、人脸身份证比对接口适用哪些场景?
例如:金融领域
(1)银行开户:在客户进行银行账户开户时,通过人脸身份证比对接口可以快速验证客户身份的真实性。与传统的身份验证方式相比,它不仅更加高效,还能有效防范冒用他人身份开户的风险。例如,银行工作人员可以使用相关设备采集客户的人脸图像,并与身份证上的照片进行比对,确保是客户本人申请开户。可以减少人工审核的工作量和错误率,提高开户流程的效率和准确性。
(2)线上贷款申请:当客户在线上申请贷款时,人脸身份证比对接口能够确保申请人身份的真实性,降低贷款欺诈的风险。金融机构可以通过该接口实时比对申请人的人脸与身份证信息,防止不法分子利用虚假身份骗取贷款。例如,一些小额贷款公司通过这种方式快速核实借款人身份,在保障资金安全的同时,也能加快贷款审批速度,为真正有需求的客户提供更便捷的服务。
三、如何用Java实现接口调用?
下面我们以快证API为例,以下为Java实现的具体过程:
------支持免费测试,有需要小伙伴可以测试使用------
接口地址:https://market.aliyun.com/apimarket/detail/cmapi00066582?spm=5176.730005.result.6.5a883524COJ18v#sku=yuncode6058200002
public static void main(String[] args) {
String host = "https://kzfacev1.market.alicloudapi.com";
String path = "/api-mall/api/face_id_card_yi_suo/check";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("idcard", "idcard");
bodys.put("name", "name");
bodys.put("image", "image");
bodys.put("url", "url");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}
正确返回示例如下:
public static void main(String[] args) {
String host = "https://kzfacev1.market.alicloudapi.com";
String path = "/api-mall/api/face_id_card_yi_suo/check";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("idcard", "idcard");
bodys.put("name", "name");
bodys.put("image", "image");
bodys.put("url", "url");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}
如有问题,欢迎大家留言交流!