/api/knowledge/lark/file/search 用于查阅文件夹/wiki分页。更多信息可参考可通过飞书开放平台OpenAPIhttps://open.larkoffice.com/document/server-docs/docs/faq。
完成“对接指南“页面的注册账号、实名认证、AK/SK 密钥获取和签名获取后,可调用 API 接口实现知识库的创建功能。
URI | /api/knowledge/lark/file/search | 统一资源标识符 |
---|---|---|
请求方法 | POST | 客户端对向量数据库服务器请求的操作类型 |
请求头 | Content-Type: application/json | 请求消息类型 |
Authorization: HMAC-SHA256 *** | 鉴权 |
参数 | 类型 | 是否必填 | 默认值 | 参数说明 |
---|---|---|---|---|
file_type | string | 否 | folder | 集合类型 |
data_type | string | 是 | -- | 数据类型 |
parent_token | string | 否 | -- | 父节点token |
query | string | 否 | -- | 关键词搜索 |
参数 | 参数说明 |
---|---|
code | 状态码 |
message | 返回信息 |
request_id | 标识每个请求的唯一标识符 |
data | { |
request { "file_type": "wiki", "data_type": "unstructured_data", "parent_token": "xxx", "query": "标题" }
response { "message": "success", "code": 0, "request_id": "xx", "data": { "items": [ "title": "文档标题", "parent_token": "xxx", "obj_type": "docx", "obj_token": "xxx", "has_child": true/false, "obj_create_time": "1642402428" ] } }