产品详情
API参数 多张图片转换POST文档转换GET 调用地址: http,https://all2img.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
- png
- 要转换的文档扩展名
- outtype
- number
- true
- 2
- 要转为何种图片类型
- imagesize
- number
- false
- 2048
- 图片大小。如果outtype是1(每页一个图),该值是每个图最大的宽或高。如果outtype是2(长图),该值是长图的宽。如果outtype是3(动图),该值是动图最大的宽或高。默认是0,自动。长图,动图宽最大2000,其他图宽高最大4096。
- imageduration
- number
- false
- 5
- 动图多少秒切换下一张。如果outtype是3(动图)才有效,单位是秒,比如传入10就是每隔10s切换一张图
- 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 = "http://all2img.bd.duhuitech.com/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
- --
