com.aiwiown.face.request.OCRTemplateV1Request Maven / Gradle / Ivy
package com.aiwiown.face.request;
import com.aiwiown.face.ApiMethod;
import com.aiwiown.face.ApiObject;
import com.aiwiown.face.ApiRequest;
import com.aiwiown.face.internal.util.RequestParamUtils;
import com.aiwiown.face.response.OCRTemplateV1Response;
import java.util.Map;
/**
* 描述
* 用户通过控制台生成自定义模板并发布后,调用此API传入待识别图片及模板ID,返回模板定义的识别域内容
* https://api-cn.faceplusplus.com/cardpp/v1/templateocr
*/
public class OCRTemplateV1Request implements ApiRequest {
private String apiVersion = "v1";
private static String apiUrl = "/templateocr";
private String bizContent;
private ApiObject bizModel = null;
@Override
public ApiMethod getApiMethod() {
return ApiMethod.POST;
}
@Override
public String getApiUrl() {
return "/" + this.apiVersion + apiUrl;
}
@Override
public Map getTextParams() throws IllegalAccessException {
return RequestParamUtils.getTextParams(this.bizModel);
}
@Override
public Map getByteArrayParams() throws IllegalAccessException {
return RequestParamUtils.getByteArrayParams(this.bizModel);
}
@Override
public Class getResponseClass() {
return OCRTemplateV1Response.class;
}
@Override
public String getApiVersion() {
return this.apiVersion;
}
@Override
public String getBizContent() {
return this.bizContent;
}
public void setBizModel(ApiObject bizModel) {
this.bizModel = bizModel;
}
@Override
public String signVersion() {
return null;
}
@Override
public String getSignInfo(String apiKey, String secretKey) throws Exception {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy