文档
测试

分享记录列表接口

POST
http://localhost:6600/api/v1/list/history

接口描述

分享记录列表

请求参数

参数名
类型
描述
必填
user_id
int
用户id
必填
page
int
页码
必填
limit
int
每页数量
必填

响应参数

参数名
类型
描述
必填
code
int
错误码
必填
data
object
内容
必填
data
array
内容
必填
wx_nick_name
String
被分享者的微信昵称
必填
shape_message
String
分享的内容
必填
shape_time
String
分享时间
必填
total
int
总数
必填
total_page
int
总页数
必填
now_page
int
当前页数
必填
limit
int
每页数量
必填
msg
String
错误信息
必填

说明 / 示例

入参: ``` { "user_id" : 1 } ``` 出参: ``` { "code": 0, "data": { "data": [ { "wx_nick_name": "ghljyjkgor", "shape_message": "tgfvcymclr", "shape_time": "1993-02-19 04:45:18" }, { "wx_nick_name": "ghljyjkgor", "shape_message": "tgfvcymclr", "shape_time": "1993-02-19 04:45:18" }, { "wx_nick_name": "ghljyjkgor", "shape_message": "tgfvcymclr", "shape_time": "1993-02-19 04:45:18" } ], "total": 123, "total_page": 5, "now_page": 1, "limit": 20 }, "msg": "成功" } ```