欢迎来到 wabc.cc 官方网站!
【天眼数聚】行驶证OCR识别高清版

【天眼数聚】行驶证OCR识别高清版

API参数 行驶证OCR识别 调用地址: http,https://vehiclelicenceocr.api.bdymkt.com/vehicle_licence/ocr 请求方式: POST 支持格式: application/x-www-form-urlencoded 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body) 名称 类型 是否必须

联系电话: 13983470003
产品详情
API参数 行驶证OCR识别 调用地址: http,https://vehiclelicenceocr.api.bdymkt.com/vehicle_licence/ocr 请求方式: POST 支持格式: application/x-www-form-urlencoded 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body)
  • 名称
  • 类型
  • 是否必须
  • 示例值
  • 描述
  • image
  • string
  • true
  • --
  • 图片base64字符串
请求参数(Path) 请求示例 javapythongocurlphpnodejs 示例代码使用, 需要使用Maven加入依赖
<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;

// 行驶证OCR识别 Java示例代码
public class RequestDemo {
    public static void main(String[] args) {
        String path = "http://gwgp-u6phe9hgbgn.n.bdcloudapi.com/vehicle_licence/ocr";
        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();
        }
    }
}
                                    

                                    点击复制代码
                                
正常返回示例
                                    {
    "msg": "",
    "success": true,
    "code": 200,//code=200,计费
    "data":{
        "order_no": "582950292044255232",
        "result":{
            "owner": "杭州***运输有限公司",
            "address": "浙江省杭州市拱墅区****2幢714室",
            "engine_no": "301***12",
            "issue_date": "2016-09-10",
            "plate_no": "浙A0***7",
            "use_character": "货运",
            "vehicle_type": "轻型厢式货车",
            "model": "豪沃牌ZZ5047X***3414D1",
            "vin": "LZZ1BAD4***577230",
            "register_date": "2016-09-10"
        }
    }
}
                                
失败返回示例
                                    {
    "msg": "入参错误,
    "success": false, 
    "code": 400, 
    "data": { }
}
                                
错误码定义
标签: {}
在线客服
微信联系
客服
扫码加微信(手机同号)
电话咨询
返回顶部