获取文章列表
GET
/papers请求参数
Query 参数
search
string
可选
搜索关键字 默认为空
order
string
可选
排序方式(rand | new | like) 默认为new
示例值:
rand
page
integer
可选
页码 从0开始 默认为0
示例值:
0
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array of:
id
integer
必需
title
string
标题
intro
string
简介
like_num
integer
点赞数
comment_num
integer
评论数
update_time
string
更新时间
示例
[
{
"id": 1,
"title": "关于BIT101",
"intro": "存在于此的缘由,以及背后的故事。",
"like_num": 116,
"comment_num": 58,
"update_time": "2022/08/05 02:30:59"
}
]
最后修改时间: 2 年前