美文网首页
[API] 小说评论接口

[API] 小说评论接口

作者: clydezhao | 来源:发表于2017-11-01 10:32 被阅读0次

    【提交评论接口】

    地址

    /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"
    }
    

    相关文章

      网友评论

          本文标题:[API] 小说评论接口

          本文链接:https://www.haomeiwen.com/subject/biuwpxtx.html