简要描述

  • 获取当前用户帖子的评论信息列表和未读信息数量

请求域名:

  • http://xx.com

请求URL:

GET/&route=plugin.micro-communities.api.message.index

参数:

参数名 是否必须 类型 说明
page int 页数

返回示例:

正确时返回:

{
"result": 1,
"msg": "成功",
"data": {
    "stick_comment_list": {
        "current_page": 1,
        "data": [
            {
                "id": 4,
                "user_id": 3,
                "uname": "14*******69",
                "content": "评论多多",
                "stick_id": 3,
                "is_read": 0,
				 "major_cm_id": 3,
                "created_at": "2022-06-13 17:32:59",
                "has_one_comment_user": {
                    "uid": 3,
                    "avatar": "/static/images/photo-mr.jpg",
                    "avatar_image": "http://yzhonshop.com/static/images/photo-mr.jpg"
                },
                "stick": {
                    "id": 3,
                    "title": "test",
                    "audio_src": []
                }
            }
			{
                "id": 3,
                "user_id": 1,
                "uname": "14*******69",
                "content": "我叫评论,欢迎评论3",
                "stick_id": 3,
                "is_read": 0,
                "major_cm_id": null,
                "created_at": "2022-06-13 17:32:43",
                "has_one_comment_user": {
                    "uid": 1,
                    "avatar": "/static/images/photo-mr.jpg",
                    "avatar_image": "http://yzhonshop.com/static/images/photo-mr.jpg"
                },
                "stick": {
                    "id": 3,
                    "title": "test",
                    "audio_src": []
                }
            },
        ],
        "first_page_url": "http://yzhonshop.com/addons/yun_shop/api.php?page=1",
        "from": 1,
        "last_page": 1,
        "last_page_url": "http://yzhonshop.com/addons/yun_shop/api.php?page=1",
        "next_page_url": null,
        "path": "http://yzhonshop.com/addons/yun_shop/api.php",
        "per_page": 15,
        "prev_page_url": null,
        "to": 3,
        "total": 3
    },
    "unread_num": 3
}

}

返回参数说明

参数名 类型 说明
current_page int 当前页数
last_page int 最后一页的页数
per_page int 每页显示的数据量
total int 总数据量

关联数据data[]

参数名 类型 说明
id int 评论id
user_id int 评论用户的ID
uname string 评论用户的昵名称
content string 评论内容
stick_id int 帖子id
major_cm_id int 回复的评论id
is_read int 0:未读;1:已读;
created_at string 创建时间
has_one_comment_user array 评论用的数据
stick array 帖子数据

关联数据 has_one_comment_user[]

参数名 类型 说明
uid int 用户Uid
avatar string 用户头像路径
avatar_image string 头像全路径

关联数据stick[]

参数名 类型 说明
id int 帖子id
title string 帖子标题

未读评论数量

参数名 类型 说明
unread_num int 未读评论数量