图文模块用于平台发布文章功能,通过该接口可以获取所有文章的分类。
文章列表接口
用户获取图文列表接口。
请求方法:GET
是否鉴权:否
请求编码:Content-Type:application/x-www-form-urlencoded
响应编码:Content-Type:application/json;charset=UTF-8
请求地址:index/article/articleList
请求参数:
参数名 | 参数类型 | 是否必填 | 参数说明 | 示例值 |
---|---|---|---|---|
uid | string | 否 | 图文分类id | ab010 |
page | int | 是 | 页码 | 1 |
size | int | 是 | 每页条数 | 20 |
new | int | 否 | 是否按照最新条件查询 | 1是 |
recommend | int | 否 | 是否按照推荐条件查询 | 1是 |
- 成功示例:
javascript
{
"data": {
"items": [
{
"click": 0,
"uid": "535843466751545307",
"title": "Go语言切片底层原理深度剖析",
"image": "https://qiniucloud.qqdeveloper.com/uploads/images/20230825/20230825233532958562778.jpg",
"click_virtual": 0,
"click_actual": 0,
"like_count": 0,
"create_time": "2023-08-25 23:38:45",
"author": "兔兔答题",
"tag": "标签1,标签2",
"abstract": "针对Go语言切片基础知识、底层原理进行深度剖析,带你快速掌握切片的知识点。"
}
],
"page": 1,
"size": 20,
"total": 5
},
"code": 100,
"msg": "请求成功"
}
参数名 | 参数类型 | 是否必有 | 参数说明 | 示例值 |
---|---|---|---|---|
items.click | int | 是 | 点击量 | |
items.uid | string | 是 | 文章id, 用于获取文章详情 | ab010 |
items.title | string | 是 | 文章标题 | |
items.tag | string | 是 | 文章标签 | |
items.image | string | 是 | 文章封面 | |
items.click_virtual | int | 是 | 虚拟点击量 | |
items.click_actual | int | 是 | 实际点击量 | |
items.like_count | int | 是 | 点赞量 | |
items.create_time | string | 是 | 发布时间 | |
items.author | string | 是 | 作者 | 兔兔答题 |
items.abstract | string | 是 | 文章摘要 | |
page | int | 是 | 当前页 | |
size | int | 是 | 每页条数 | |
total | int | 是 | 总条数 |
- 失败示例:
javascript
{
"code": 101,
"data": [],
"msg": "请求失败"
}