Skip to content
本页内容

导出结构化数据

获取指定在线文档的结构化数据

基本信息

请求方法:POST

请求路径:/api/v1/openapi/outline/:file_token/export/full_json

请求主机:developer.kdocs.cn

Path 参数

参数必须类型说明
file_token
string

Query 参数

参数必须类型说明
access_token
string

返回参数

参数类型说明
code
integer
错误码
+
data
data {}
响应数据

示例

请求示例

curl --request POST \
	--url 'https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc'
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
	.url("https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc")
	.post(null)
	.build();

Response response = client.newCall(request).execute();
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc"

	req, _ := http.NewRequest("POST", url, nil)

	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("developer.kdocs.cn")

conn.request("POST", "/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
<?php

$curl = curl_init();

curl_setopt_array($curl, [
	CURLOPT_URL => "https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	CURLOPT_RETURNTRANSFER => true,
	CURLOPT_ENCODING => "",
	CURLOPT_MAXREDIRS => 10,
	CURLOPT_TIMEOUT => 30,
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
	CURLOPT_CUSTOMREQUEST => "POST",
]);

$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("POST", "https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");

xhr.send(data);
const http = require("https");

const options = {
	"method": "POST",
	"hostname": "developer.kdocs.cn",
	"port": null,
	"path": "/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	"headers": {}
};

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, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");

CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://developer.kdocs.cn/api/v1/openapi/outline/f209eaa06e/export/full_json?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");
var request = new RestRequest(Method.POST);
IRestResponse response = client.Execute(request);

返回示例

{
  "code": 0,
  "data": {
    "full_file_json": "{\"data\":{\"latex\":[],\"mainBody\":[{\"type\":\"paragraph\",\"content\":[{\"content\":\"12312312\",\"type\":\"text\"}]},{\"type\":\"picture\",\"attrs\":{\"height\":1080,\"renderHeight\":600,\"renderWidth\":1066.67,\"sourceKey\":\"GDPIKAYA4U\",\"version\":3,\"width\":1920}},{\"type\":\"paragraph\"}],\"picture\":[{\"type\":\"picture\",\"attrs\":{\"height\":1080,\"renderHeight\":600,\"renderWidth\":1066.67,\"sourceKey\":\"GDPIKAYA4U\",\"version\":3,\"width\":1920}}],\"processon\":[],\"title\":[]}}",
    "attachment_list": [
      {
        "key": "GDPIKAYA4U",
        "url": "https://ksc-bj-beta.ag.kdocs.cn/api/object/2_024035366f684e4baeece8423fed651f/compatible",
        "sha1": "928945e89b2bf209eaa06e4b2e007b1fa6a212ac"
      }
    ]
  }
}

错误码

请参考错误码说明