产品详情
API参数 身份核验三维比对 调用地址: http,https://faceidnum.api.bdymkt.com/face/v2/verify_selfie_idnumber 请求方式: POST 支持格式: application/x-www-form-urlencoded 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- image_base64
- string
- true
- %2F9j%2F4AAQSkZJRgABAQAASABIAAD%2F4Q......
- 人脸图片转base64的UrlEncode编码
- id_number
- string
- true
- 4452******2342
- 身份证号。用以查询公安部后台预留照片
- name
- string
- true
- 黄大大
- 与身份证号相对应的姓名
<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;
// 身份核验三维比对 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "https://faceidnum.api.bdymkt.com/face/v2/verify_selfie_idnumber";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/x-www-form-urlencoded");
String requestExample = "id_number=4452********2123&name=黄大大&image_base64=\/9j\/4AAQSkZJRgABAQAASABIAAD\/ASAS......";
request.setJsonBody(requestExample);
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"status": "OK",
"request_id": "TID78792d84bebb44e794a3aeea1b9ff750",
"score": "66",
"result_code": 1001,
"result_message": "系统判断为同一人",
"selfie_image_id": "681cf14e5ef849909f5105d881f23ca4"
}
失败返回示例 {
"status": "RATE_LIMIT_EXCEEDED",
"request_id": "TID8bf47ab6eda64476973cc5f5b6ebf57e"
}
错误码定义 - code
- message
- status
- 描述
- 400
- INVALID_ARGUMENT
- 400
- 请求参数错误
- 403
- RATE_LIMIT_EXCEEDED
- 403
- 调用频率超出限额
- 500
- INTERNAL_ERROR
- 500
- 服务器内部错误
