产品详情
API参数 云鉴_活体检测_活体识别_实人认证_人脸比对_人脸识别_真人认证_含活体检测SDK集成 调用地址: http,https://lcomparev2.api.bdymkt.com/lcomparev2 请求方式: POST 支持格式: application/x-www-form-urlencoded 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- idcard
- string
- true
- 440304199010******
- 证件号
- realname
- string
- true
- 张*
- 姓名
- photo
- string
- true
- /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4
- 人像照片(Base64字符串:不含img标签信息"data:image/jpg;base64,")格式为jpg或png,宽和高大于15px, 小于4000px,图片大小不能超过100kb,保证五官清晰可见,尽量传正脸照片不要旋转,不能有刘海,背光不能太强
<dependency>
<groupId>com.baidubce</groupId>
<artifactId>api-explorer-sdk</artifactId>
<version>1.0.0</version>
</dependency>
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;
// 动作活体检测SDK人像比对 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "//lcomparev2";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/x-www-form-urlencoded");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"jobid": "ZT20201016192957014323071",
"responsetime": "20201016192957916",
"errcode": "P0000",
"errmsg": "系统判定为同一人",
"result": {
"birthday": "19901010",
"score": "85",//score 比较结果分值,分值区间为0-100,参考指标:40以下系统判断为不同人;40-44不能确定是否为同一人;45及以上系统判断为同一人
"address": "广东省深圳市福田区",
"sex": "男"
}
}
失败返回示例 {
"jobid": "ZT20201015193946437886679",
"responsetime": "20201015193946635",
"errcode": "210J4",
"errmsg": "请求姓名格式错误",
"result": {}
}
错误码定义
