深色模式
控制台
查询文档格式转换结果
请求路径:GET /api/developer/v1/tasks/:task_id
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
Date | 是 | string | 使用 RFC1123 时间格式的当前时间 |
Content-Md5 | 是 | string | HTTP Body 中数据的 MD5 值十六进制表达方式, 必需小写, 如果是 get 请求一律使用 URI 计算 MD5 |
Content-Type | 是 | string | 目前固定为: application/json |
Authorization | 是 | string | "WPS-2:" + app_id + ":" + sha1( app_key + Content-Md5 + Content-Type + DATE ) |
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
task_id | 是 | string | 格式转换任务 id |
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
code | 是 | integer | 错误码 |
+ data | 是 | data {} | 响应数据 |
status | 是 | string | 转换任务状态 |
progress | 是 | int | 转换任务进度 |
message | 否 | string | 转换任务失败原因 |
+ result | 否 | result {} | 转换任务结果 |
+ images | 否 | image[] | 转换后的图片列表 |
url | 是 | string | 转换后的图片下载地址(半小时有效) |
size | 是 | int | 转换后的图片大小(以字节为单位) |
slideId | 是 | string | 转换后的图片页号(演示转换后对应的是 幻灯片SlideID 如:150995203,其他文档类型转换后对应的是当前页号如:1或01) |
+ pdfs | 否 | pdf[] | 转换后的 pdf 文档列表 |
url | 是 | string | 转换后的 pdf 文档下载地址(半小时有效) |
size | 是 | int | 转换后的 pdf 文档大小(以字节为单位) |
+ txts | 否 | txts[] | 转换后的 txt 文件列表 |
url | 是 | string | 转换后的 txt 文件下载地址(半小时有效) |
size | 是 | int | 转换后的 txt 文件大小(以字节为单位) |
+ task | 是 | task{} | 转换任务信息 |
elapsed | 是 | integer | 转换耗时(ms) |
resource_size | 是 | integer | 原文档大小 |
curl --request GET \
--url https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv \
--header 'Authorization: WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a' \
--header 'Content-Md5: d41d8cd98f00b204e9800998ecf8427e' \
--header 'Content-Type: application/json' \
--header 'Date: Wed, 23 Jan 2013 06:43:08 GMT'
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv")
.get()
.addHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT")
.addHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e")
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a")
.build();
Response response = client.newCall(request).execute();
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Date", "Wed, 23 Jan 2013 06:43:08 GMT")
req.Header.Add("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import http.client
conn = http.client.HTTPSConnection("solution.wps.cn")
headers = {
'Date': "Wed, 23 Jan 2013 06:43:08 GMT",
'Content-Md5': "d41d8cd98f00b204e9800998ecf8427e",
'Content-Type': "application/json",
'Authorization': "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a"
}
conn.request("GET", "/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a",
"Content-Md5: d41d8cd98f00b204e9800998ecf8427e",
"Content-Type: application/json",
"Date: Wed, 23 Jan 2013 06:43:08 GMT"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv");
xhr.setRequestHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT");
xhr.setRequestHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("Authorization", "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a");
xhr.send(data);
const http = require("https");
const options = {
"method": "GET",
"hostname": "solution.wps.cn",
"port": null,
"path": "/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv",
"headers": {
"Date": "Wed, 23 Jan 2013 06:43:08 GMT",
"Content-Md5": "d41d8cd98f00b204e9800998ecf8427e",
"Content-Type": "application/json",
"Authorization": "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Date: Wed, 23 Jan 2013 06:43:08 GMT");
headers = curl_slist_append(headers, "Content-Md5: d41d8cd98f00b204e9800998ecf8427e");
headers = curl_slist_append(headers, "Content-Type: application/json");
headers = curl_slist_append(headers, "Authorization: WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://solution.wps.cn/api/developer/v1/tasks/open:jwnqjwfquawbpgesovbqhohuankwdkv");
var request = new RestRequest(Method.GET);
request.AddHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT");
request.AddHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e");
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "WPS-2:******:ac59dac1460772a04b3a97d7ef78409f28241e3a");
IRestResponse response = client.Execute(request);
{
"code": 0,
"data": {
"status": "success",
"progress": 100,
"result": {
"images": [
{
"url": "https://***.com/***",
"size": 70154,
"slideId": "150995203"
},
{
"url": "https://***.com/***",
"size": 112172,
"slideId": "150995204"
},
{
"url": "https://***.com/***",
"size": 954,
"slideId": "150995205"
},
{
"url": "https://***.com/***",
"size": 35327,
"slideId": "150995206"
}
],
"task": {"elapsed":7892,"resource_size":1070216}
}
}
}
请参考错误码说明