Skip to main content

功能说明

查询帖子的点赞列表

请求说明

请求鉴权:接口需要增加验证 Header,请查看 鉴权说明

请求类型GET

请求限频100次/秒

请求地址:https://请求域名/jim/posts/reactions/list

Content-Typeapplication/json

请求参数

参数数据类型是否必填参数说明
post_id"string帖子的id

请求示例

GET /jim/posts/reactions/list?post_id=xxx HTTP/1.1
appkey: appkey
Authorization: xxxxxxxxxxxxxxxxxx
Content-Type: application/json

响应示例

{
"code":0,
"msg":"sucess",
"data":{
"items":[
{
"post_id":"postid1",
"key":"k1",
"value":"v1",
"timestamp":1732123456789,
"user_info":{
"user_id":"xxx",
"nickname":"xxxxx",
"avatar":"xxxx",
"user_type":0
}
}
]
}
}