产品详情
API参数 文档转换GET 调用地址: http,https://pdf2doc.api.bdymkt.com/v1/convert 请求方式: GET 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- url
- string
- true
- https://xxx/xxx.pdf
- 要转换的文档URL,需要URLEncoding,必须http(s),ftp开头
- type
- string
- true
- docx
- 转换为目标文档扩展名,例如docx
- ocr
- integer
- false
- 0
- 对于扫描的PDF,是否做OCR,1:做OCR,0:不做OCR
- language
- integer
- false
- 2
- OCR识别语言选项,默认2简体中文: 1:英语 2:简体中文 3:繁体中文 4:法语 5:德语 6:意大利语 7:俄语 8:日文 9:韩文 10:西班牙语 11:葡萄牙语 12:丹麦语 13:荷兰语 14:芬兰语 15:挪威语 16:瑞典语
- outfilename
- string
- false
- null
- 生成的文件的文件名,默认随机
- callbackurl
- string
- false
- null
- 回调URL,转换结束后,会回调该URL,需要URL Encoding,详细见文档 回调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;
// 文档转换GET Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "http://pdf2doc.bd.duhuitech.com/v1/convert";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.GET, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
request.addQueryParameter("url", "");
request.addQueryParameter("type", "");
request.addQueryParameter("ocr", "");
request.addQueryParameter("language", "");
request.addQueryParameter("outfilename", "");
request.addQueryParameter("callbackurl", "");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"code": 10000,
"msg": "",
"result": {
"token": "3345822c6df2dbbdd1db84daf0383d38"
}
}
失败返回示例 {
"code": 40001,
"msg": "ParmNotRight"
}
错误码定义 - code
- message
- status
- 描述
- 40000
- 通用错误
- 200
- --
- 40001
- 参数错误
- 200
- --
- 40002
- 参数不符合规范
- 200
- --
