图文模块用于平台发布文章功能,通过该接口可以获取所有文章的分类。
文章详情接口
用户获取图文详情接口。
请求方法:GET
是否鉴权:否
请求编码:Content-Type:application/x-www-form-urlencoded
响应编码:Content-Type:application/json;charset=UTF-8
请求地址:index/article/articleDetail
请求参数:
参数名 | 参数类型 | 是否必填 | 参数说明 | 示例值 |
---|---|---|---|---|
uid | string | 是 | 文章id | ab010 |
- 成功示例:
javascript
{
"data": {
"click": 16,
"uid": "535852753648261158",
"title": "为何每次洗澡都能搓出“泥”?因为代谢一刻不停歇",
"image": "https://qiniucloud.qqdeveloper.com/uploads/images/20240527/20240527004918ee51b3490.jpg",
"click_virtual": 0,
"click_actual": 16,
"create_time": "2023-08-26 00:15:40",
"author": "科普中国",
"abstract": "为何每次洗澡都能搓出“泥”?因为代谢一刻不停歇",
"like_count": 0,
"content": "文章",
"is_collect": 2,
"keywords": "ai,jsdfsadf"",
"is_click": 2,
"collect_count": 0,
"site_author": "兔兔答题",
"tag": "标签1,标签2",
"category": {
"title": "产品设计",
"uid": "autidl192",
},
"category_uid": "autidl192",
"site_url": "https:/www.tutudati.com/"
},
"code": 100,
"msg": "请求成功"
}
参数名 | 参数类型 | 是否必有 | 参数说明 | 示例值 |
---|---|---|---|---|
click | int | 是 | 点击量 | |
uid | string | 是 | 文章id | ab010 |
title | string | 是 | 文章标题 | |
tag | string | 否 | 文章标签 | |
image | string | 是 | 文章封面 | |
click_virtual | int | 是 | 虚拟点击量 | |
click_actual | int | 是 | 实际点击量 | |
like_count | int | 是 | 点赞量 | |
create_time | string | 是 | 发布时间 | |
author | string | 是 | 作者 | 兔兔答题 |
abstract | string | 是 | 文章摘要 | |
content | string | 是 | 文章内容 | |
keywords | string | 否 | 文章关键词 | |
is_click | int | 是 | 是否点赞1是2否 | |
is_collect | int | 是 | 是否收藏1是2否 | |
collect_count | int | 是 | 收藏数量 | |
site_author | string | 是 | 发布平台 | |
site_url | string | 是 | 原文链接 | |
category.uid | string | 是 | 分类uid | |
category.title | string | 是 | 分类名称 |
- 失败示例:
javascript
{
"code": 101,
"data": [],
"msg": "文章不存在"
}