Page History

0680

Last edited by 翁力

返回

读取朋友圈某条动态的评论(含回复)

视讯云URL: http://console.open.cnlive.com/open/doc/api/df19ba4d-29f4-4617-8810-56671c7da65c


请求方式: HTTP GET


请求参数说明:

参数名 参数类型 必选 参数说明
appId String true 应用ID
plat String true i=IOS客户端,a=Android客户端
id String true 主题ID
page String true 页号
pageSize String true 每页显示的条数
sign String true 签名

返回格式样例:

{
    "errorCode": "0",
    "errorMessage": "成功",
    "data": {
        "next_cursor": "0",
        "previous_cursor": "0",
        "total_number": "1",
        "total_columns": "2",
        "comments": [{
            "commentId": "1",
            "fromSid": "10011",         
            "fromNick": "xxxxx",
            "fromFace": "xxxxx",
            "toSid": "123456",
            "toNick": "xxxxxxxxxx",
            "content": "中文评论",
            "created_at": "2018-03-07 13:00",
            "plat": "a",
            "type": "reply"
        }, {
            "commentId": "2",
            "fromSid": "10011",
            "fromNick": "xxxxx",
            "fromFace": "xxxxx",
            "toSid": "123456",
            "toNick": "xxxxxxxxxx",
            "content": "中文评论",
            "created_at": "2018-03-07 13:10",
            "plat": "a",
            "type": "comment"
        }]
    }
}