评论列表
开发中
GET
http://192.168.8.59:8080/douyin/comment/list/
请求参数
Query 参数
token
string
必需
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 'http://192.168.8.59:8080/douyin/comment/list/?token&video_id'
返回响应
🟢200成功
application/json
Body
status_code
integer
必需
status_msg
string | null
返回状态描述
comment_list
array [object {4}] | null
评论列表
id
integer
评论id
user
object
可选
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_count": true
},
"content": "string",
"create_date": "string"
}
]
}