【提交评论接口】
地址
/api/userfiction/comment
方法
PUT
参数
content-type: application/x-www-form-urlencoded
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
fiction_id | long int | 是 | 小说id |
from_uid | long int | 是 | 发起评论用户id |
content | string | 是 | 评论内容 |
结果
{
"code": 0,
"result": "SUCCESS"
}
【查询评论接口】
地址
/api/userfiction/comment
方法
GET
参数
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
fiction_id | long int | 是 | 小说id |
comment_id | long int | 是 | 已读评论id,初始填0 |
size | long int | 是 | 返回的条数, 上限20 |
结果
{
"code": 0,
"data": [
{
"comment_id": 27,
"content": "评论",
"create_time": 1509605143782,
"fiction_id": 12345678,
"from_uid": 87654321,
"is_reply": false
},
{
"comment_id": 26,
"content": "回复",
"create_time": 1509605081995,
"fiction_id": 12345678,
"from_uid": 23123123,
"is_reply": true,
"replied_comment_id": 121371837,
"to_uid": 213123123
}
],
"result": "SUCCESS"
}
【删除评论接口/回复】
地址
/api/userfiction/comment
方法
DELETE
参数
content-type: application/x-www-form-urlencoded
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
fiction_id | long int | 是 | 小说id |
comment_id | long int | 是 | 评论记录id |
uid | long int | 是 | 发起评论/回复的用户id |
结果
{
"code": 0,
"result": "SUCCESS"
}
【回复评论接口】
地址
/api/userfiction/comment
方法
POST
参数
content-type: application/x-www-form-urlencoded
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
fiction_id | long int | 是 | 小说id |
comment_id | long int | 是 | 所回复的评论记录id |
from_uid | long int | 是 | 发起回复用户id |
to_uid | long int | 是 | 被回复用户id |
content | string | 是 | 回复内容 |
结果
{
"code": 0,
"result": "SUCCESS"
}
【查询评论总数接口】
地址
/api/userfiction/comments/count
方法
GET
参数
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
fiction_id | long int | 是 | 小说id |
结果
{
"code": 0,
"data": {
"count": 28
},
"result": "SUCCESS"
}
网友评论