分页获取文档评论
GET
https://open.feishu.cn/open-apis/drive/v1/files/{file_token}/comments
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 1069301 | fail | 重试,若稳定失败请联系相关业务方oncall人员 |
400 | 1069302 | param error | 检查参数有效性 |
403 | 1069303 | forbidden | 检查是否有待评论文档的评论权限 |
400 | 1069308 | exceeded limit | 评论数据超过上限限制,详情请咨询客服 |
400 | 1069304 | docs had been deleted | 检查待评论文档是否已被删除 |
404 | 1069307 | not exist | 检查待评论文档是否能正常访问、检查评论内容at人或云文档是否存在 |
400 | 1069399 | internal error | 重试,若稳定失败请联系相关业务方oncall人员 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/drive/v1/files/文档token/comments?file_type' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"has_more": true,
"page_token": "6916106822734512356",
"items": [
{
"comment_id": "6916106822734512356",
"user_id": "ou_cc19b2bfb93f8a44db4b4d6eababcef",
"create_time": 1610281603,
"update_time": 1610281603,
"is_solved": false,
"solved_time": 1610281603,
"solver_user_id": "null",
"has_more": false,
"page_token": "6916106822734512356",
"is_whole": true,
"quote": "划词评论引用内容",
"reply_list": {
"replies": [
{
"reply_id": "6916106822734512356",
"user_id": "ou_cc19b2bfb93f8a44db4b4d6eab2abcef",
"create_time": 1610281603,
"update_time": 1610281603,
"content": {
"elements": [
{
"type": "text_run",
"text_run": {
"text": "comment text"
},
"docs_link": {
"url": "https://bytedance.feishu.cn/docs/doccnHh7U87HOFpii5u5Gabcef"
},
"person": {
"user_id": "ou_cc19b2bfb93f8a44db4b4d6eababcef"
}
}
]
},
"extra": {
"image_list": [
"xfsfseewewabcef"
]
}
}
]
}
}
]
}
}
请求参数
Path 参数
file_token
string
必需
示例值:
文档token
Query 参数
file_type
string
必需
is_whole
string
是否全文评论
示例值:
false
is_solved
string
是否已解决(可选)
示例值:
false
page_token
string
可选
示例值:
7153511712153412356
page_size
string
可选
示例值:
10
user_id_type
string
可选
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
返回响应
修改于 2023-01-13 08:05:44