<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/drivingLicense";
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", "");
request.addQueryParameter("cardSide", "");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"data": {
"identityNumber": "61010419770AF99",
"name": "Wexx",
"sex": "男",
"nationality": "中国",
"address": "陕西省西安市濂桥区长乐东6",
"dateOfBirth": "1977-01-06",
"dateOfFirstIssue": "2002-10-30",
"type": "B1D",
"validFrom": "2014-10-30",
"validTo": "2024-10-30",
"archivesCode": "",
"record": ""
},
"message": "success",
"status": 200,
"code": 0,
"serialNo": "345313697268236288"
}
失败返回示例 {
"serialNo": "343841871253995520",
"message": "信息不存在",
"status": 400,
"code": 5002
}
错误码定义 0 (0%) 好评 | 0 (0%) 中评 | 0 (0%) 差评 |