当前用户的评论和@
POST
/api/xhs/mentions:::highlight red 📌
小红书接口在原有的字段基础上外套response_status
、response_body
、response_headers
,分别对应小红书返回的响应码
,响应体
,响应头
,其中response_body
内容字段与原有的保持一致。
:::
请求参数
Header 参数
cookie
string
必需
可以携带小红书主页cookie
Body 参数application/json
num
string
返回条数
cursor
string
下一页锚点
示例
{
"num": "20",
"cursor": ""
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
path
string
必需
data
object
必需
cursor
integer
必需
message_list
array [object {11}]
必需
has_more
boolean
必需
示例
{
"code": 0,
"msg": "string",
"path": "string",
"data": {
"cursor": 0,
"message_list": [
{
"comment_info": {
"id": "string",
"content": "string",
"illegal_info": {
"status": 0,
"desc": "string",
"illegal_status": "string"
},
"status": 0,
"liked": true,
"like_count": 0
},
"track_type": "string",
"time_flag": 0,
"id": "string",
"title": "string",
"time": 0,
"user_info": {
"userid": "string",
"nickname": "string",
"image": "string",
"red_official_verify_type": 0
},
"type": "string",
"score": 0,
"item_info": {
"user_info": {
"nickname": "string",
"image": "string",
"red_official_verify_type": 0,
"userid": "string"
},
"status": 0,
"type": "string",
"id": "string",
"image": "string",
"image_info": {
"url": "string",
"width": 0,
"height": 0
},
"illegal_info": {
"desc": "string",
"illegal_status": "string",
"status": 0
},
"link": "string"
},
"liked": true
}
],
"has_more": true
}
}
最后修改时间: 1 个月前