On this page
我的帖子列表
接口URL
请求方式
GET
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
appid | bd9d01ecc75dbbaaefce | String | 是 | 网校唯一appid |
token | eyj...Nj | String | 是 | 认证令牌 |
请求Query参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
page | 1 | Integer | 是 | 页码 |
成功响应示例
json5
{
"msg": "ok",
"data": {
"count": 2,
"rows": [
{
"id": 3,
"bbs_id": 1,
"desc": {
"images": [
"http://...png",
// ...
],
"text": "第一个帖子"
},
"user_id": 3,
"comment_count": 0,
"support_count": 0,
"is_top": 1,
"created_time": "2021-03-01T16:00:00.000Z",
"user": {
"id": 3,
"avatar": "",
"sex": "未知",
"name": "ceshi2"
}
},
// ...
]
},
"code": 20000
}
错误响应示例
json5
{
"msg": "fail",
"data": "您没有权限访问该接口!"
}