评论列表
GET
/douyin/comment/list/
/douyin/comment/list/
请求参数
Query 参数
token
string
用户鉴权token
video_id
string
视频id
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/douyin/comment/list/?token=&video_id='
返回响应
🟢200成功
application/json
Body
status_code
integer
必需
status_msg
string | null
返回状态描述
comment_list
array[object (Comment) {4}] | null
评论列表
id
integer
评论id
user
object (User)
评论用户信息
content
string
评论内容
create_date
string
必需
示例
{
"status_code": 0,
"status_msg": "string",
"comment_list": [
{
"id": 0,
"user": {
"id": 0,
"name": "string",
"follow_count": 0,
"follower_count": 0,
"is_follow": true,
"avatar": "string",
"background_image": "string",
"signature": "string",
"total_favorited": "string",
"work_count": 0,
"favorite_count": 0
},
"content": "string",
"create_date": "string"
}
]
}
修改于 2023-12-22 14:10:42