产品详情
API参数 车辆VIN码识别 调用地址: http,https://vinocr.api.bdymkt.com/s/api/ocr/vin 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- imgBase64
- string
- false
- null
- 图片base64编码(包含data:image/png;base64,);
- imgUrl
- string
- false
- null
- 图片的URL地址
<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;
// 车辆VIN码识别 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "https://gwgp-akpqpvpbcku.n.bdcloudapi.com/s/api/ocr/vin";
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", "");
request.addQueryParameter("imgUrl", "");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"data": {
"vin": "LVSHBFAF1BF212329"
},
"serialNo": "343848371577946112",
"message": "success",
"status": 200,
"code": 0
}
失败返回示例 {
"serialNo": "34383912352169097867",
"message": "图片内容为空",
"status": 400,
"code": 5003
}
错误码定义 - code
- message
- status
- 描述
- 0
- 操作成功
- 200
- 操作成功
- 5000
- OCR识别失败
- 400
- OCR识别失败
- 5001
- 照片中存在多张卡
- 400
- 照片中存在多张卡
- 5002
- 信息不存在
- 400
- 信息不存在
- 5003
- 图片内容为空
- 400
- 图片内容为空
- 5005
- 图片模糊
- 400
- 图片模糊
- 5007
- 图片中未检测到文本
- 400
- 图片中未检测到文本
