产品详情
API参数 多图转换POST单图转换GET 调用地址: http,https://img2doc.api.bdymkt.com/v1/convert 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- Content-Type
- string
- true
- application/json
- application/json
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- url
- array
- true
- --
- --
- type
- string
- true
- docx
- 需转换为的文件类型
- clean
- number
- false
- 0
- 是否清除图像背景只显示文字,默认0否,1是
- language
- number
- false
- 2
- OCR识别语言选项,默认2简体中文: 1:英语 2:简体中文 3:繁体中文 4:法语 5:德语 6:意大利语 7:俄语 8:日文 9:韩文 10:西班牙语 11:葡萄牙语 12:丹麦语 13:荷兰语 14:芬兰语 15:挪威语 16:瑞典语
- outfilename
- string
- false
- --
- 生成的文件的文件名,默认随机
- callbackurl
- string
- false
- --
- 回调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;
// 多图转换POST Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "//v1/convert";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
request.addHeaderParameter("Content-Type", "");
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
- --
