On this page
查看帖子评论列表
接口URL
http://demonuxtapi.dishait.cn/pc/post_comment?page=1&post_id=7
请求方式
GET
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
appid | bd9d01ecc75dbbaaefce | String | 是 | 网校唯一appid |
请求Query参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
page | 1 | Integer | 是 | 页码 |
post_id | 7 | Integer | 是 | 帖子ID |
成功响应示例
json5
{
"msg": "ok",
"data": {
"count": 1,
"rows": [
{
"id": 1,
"content": "第一条评论",
"reply_id": 0,
"reply_user": null,
"is_top": 1,
"created_time": "2021-03-01T16:00:00.000Z",
"user": {
"id": 3,
"name": "ceshi2",
"avatar": ""
},
"post_comments": [
{
"id": 2,
"content": "第一条评论",
"reply_id": 1,
"reply_user": {
"avatar": "http://...png",
"nickname": "帝莎编程",
"username": "帝莎编程"
},
"is_top": 0,
"created_time": "2021-03-01T16:00:00.000Z",
"user": {
"id": 3,
"name": "ceshi2",
"avatar": ""
}
},
// ...
]
}
]
},
"code": 20000
}