简要描述:

请求域名:

  • http://xx.com

请求URL:

POST:plugin.article.api.comment.create-comment

参数:

参数名 是否必须 类型 说明
article_id YES int 文章ID
content YES int 评论
images NO arr 图片

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "评论成功!",
    "data": {
        "article_id": "4",
        "content": "haha1",
        "images": "a:0:{}",
        "uniacid": "2",
        "nick_name": "肥仔",
        "uid": 1,
        "head_img_url": "http://wx.qlogo.cn/mmopen/JoMbGNWIQsRVOx5e4S7MZgeFicicjDGKsso2Hvko9ZUV5nCfIRgPoDSeRJj6JdnPKMEWiaUk5KrzJic918c8jDTSXUVFdU6YfrP3/0",
        "type": "1",
        "updated_at": "2021-06-18 16:58:21",
        "created_at": "2021-06-18 16:58:21",
        "id": 5,
        "type_name": "评论",
        "comment_images": [],
        "head_image": "https://wx.qlogo.cn/mmopen/JoMbGNWIQsRVOx5e4S7MZgeFicicjDGKsso2Hvko9ZUV5nCfIRgPoDSeRJj6JdnPKMEWiaUk5KrzJic918c8jDTSXUVFdU6YfrP3/0"
    }
}

返回参数说明:

参数名 类型 说明
result int 0:失败,1:成功
msg string 提示消息
data array 返回数据

返回参数 data(回显的) 说明:

参数名 类型 说明
id int 评论ID
nick_name string 评论昵称
head_image string 评论头像
content string 评论内容
comment_images array 评论图片
created_at string 时间

备注: