Skip to content

获取表单信息

注意

表单相关接口目前处于 alpha 阶段,接口可能会随时调整,请慎重使用。

获取表单信息

基本信息

请求方法:GET

请求路径:/api/v1/openapi/personal/forms/:form_id

请求主机:developer.kdocs.cn

限流频次

应用类型限额
测试应用
10,000 次/天
正式应用
1,000,000 次/天

权限范围

权限值显示名称权限说明
access_form
修改表单
修改表单内容

Path 参数

参数必须类型说明
form_id
string
表单 id

Query 参数

参数必须类型说明
access_token
string

返回参数

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

提示

questions 为一个 map<string, question>key 为题目 ID,value 为题目内容。

示例

请求示例

curl --request GET \
	--url 'https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc' \
	--header 'Content-Type: application/json'
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
	.url("https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc")
	.get()
	.addHeader("Content-Type", "application/json")
	.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/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc"

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

	req.Header.Add("Content-Type", "application/json")

	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")

headers = { 'Content-Type': "application/json" }

conn.request("GET", "/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc", headers=headers)

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/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	CURLOPT_RETURNTRANSFER => true,
	CURLOPT_ENCODING => "",
	CURLOPT_MAXREDIRS => 10,
	CURLOPT_TIMEOUT => 30,
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
	CURLOPT_CUSTOMREQUEST => "GET",
	CURLOPT_HTTPHEADER => [
		"Content-Type: application/json"
	],
]);

$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://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");
xhr.setRequestHeader("Content-Type", "application/json");

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

const options = {
	"method": "GET",
	"hostname": "developer.kdocs.cn",
	"port": null,
	"path": "/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	"headers": {
		"Content-Type": "application/json"
	}
};

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://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCeZpWWEbCZYH0Dlgx4bYsSRayQ?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
IRestResponse response = client.Execute(request);

返回示例

{
    "code": 0,
    "data": {
        "answers_items": {
            "closing_remark_text": "closing_remark_text"
        },
        "config": {
            "varied_config": {
                "vote_show_time": "",
                "is_vote": false,
                "is_not_write_excel": false,
                "information_fill_notify": false,
                "channel_share": [
                    "test channel"
                ]
            },
            "check_login": false,
            "check_once": false,
            "can_secret_vote": false,
            "expire": 0
        },
        "contact_group_id": "",
        "count": 1,
        "created_ts": 1667275463,
        "edit_version": 0,
        "hide_company_certification": false,
        "id": {
            "open_id": "JxdxSDJpnZKRRr0dEKZRuJ3TYZCBx2quimbwsRZfEV1iUiRtEOIDwZRu_eA56TeA23NwXcWtC8CZ8Vqv1stgCg",
            "union_id": "-9Yu8Qo2oJirjqhvNofycJ3TYZCBx2quimbwsRZfEV1iUiRtEOIDwZRu_eA56TeA23NwXcWtC8CZ8Vqv1stgCg"
        },
        "kind": "form_v2",
        "modified_ts": 1667276574,
        "questions": {
            "3t56gf": {
                "id": "3t56gf",
                "title": "填空题-单行填空",
                "type": "input",
                "need": true,
                "hidden": false
            }
        "rebuilding": false,
        "shareId": "Otl0xnZT",
        "star": false,
        "subtitle": "test form subtitle",
        "title": "test form",
        "token,omitempty": "",
        "type": "Release",
        "uid": {
            "open_id": "JxdxSDJpnZKRRr0dEKZRuChR6r3Gtc-oHiH_VOrjHKg",
            "union_id": "-9Yu8Qo2oJirjqhvNofycChR6r3Gtc-oHiH_VOrjHKg"
        },
        "version": 8,
        "question_sections": [
          {
            "id": "poyinqye",
            "questions": [
              {
                "qid": "1855622480"
              }
            ]
          }
        ]
    }
}

错误码

请参考错误码说明