产品详情
API参数 港澳台地区及境外护照识别 调用地址: http,https://otherpassport.api.bdymkt.com/s/api/ocr/otherPassport 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- imgBase64
- string
- true
- null
- 图片base64编码(包含data:image/png;base64,);
<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://gwgp-akpqpvpbcku.n.bdcloudapi.com/s/api/ocr/otherPassport";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
request.addQueryParameter("imgBase64", "");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"data": {
"id": "H81234608",
"dateOfBirth": "610804",
"sex": "M",
"dateOfExpiration": "290808",
"issuingCountry": "CHN",
"nationality": "CHN",
"name": "CHAI CHUN BO"
},
"serialNo": "343597419042177024",
"message": "success",
"status": 200,
"code": 0
}
失败返回示例 {
"serialNo": "343824815343271936",
"message": "图片内容为空",
"status": 400,
"code": 5003
}
错误码定义 - code
- message
- status
- 描述
- 0
- 操作成功
- 200
- --
- 5000
- OCR识别失败
- 400
- --
- 5001
- 照片中存在多张卡
- 400
- --
- 5002
- 信息不存在
- 400
- --
- 5003
- 图片内容为空
- 400
- --
- 5005
- 图片模糊
- 400
- --
- 5007
- 图片中未检测到文本
- 400
- --
