开放Api-博客文章-详情
Api描述:商家端,获取博客文章的详细信息
URL: /manager/api/apps/openapi/blog-article/info
格式:json
方式:get
数据请求部分
1.Request Header 参数:
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
open-access-token | 必须 | String | 在开放api插件中,创建权限后即可获取该token |
2.Request JSON Data(Body):
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
id | 必填 | String | 博客文章 id |
数据返回部分
1.Response JSON Data(Body):
格式:json
参数名称 | 是否必须 | 类型 | 描述 |
---|---|---|---|
code | 必须 | Number | 200 代表成功 |
message | 必须 | String | 执行结果的文字描述信息 |
data | 必须 | Array | api获取的数据保存到data中 |
data > id | 必须 | int | id |
data > shop_id | 必须 | int | 店铺 id |
data > author | 必须 | string | 作者名字 |
data > handle | 选填 | string | url handle |
data > title | 选填 | string | 标题 |
data > summary_html | 选填 | string | 简短描述 |
data > body_html | 选填 | string | 内容描述 |
data > meta_title | 选填 | string | meta title |
data > meta_keywords | 选填 | string | meta keywords |
data > meta_description | 选填 | string | meta description |
data > image | 选填 | string | 图片 |
data > is_published | 选填 | int | 1已发布,2未发布 |
data > published_at | 选填 | string | 发布时间 |
data > created_at | 必须 | string | 创建时间 |
data > updated_at | 必须 | string | 更新时间 |
data > collect | 必须 | array[object] | 分类信息 |
data > collect > article_id | 必须 | int | 博客文章id(忽略即可) |
data > collect > collection_id | 必须 | int | 博客专辑id |
Response JSON Data(示例数据):
{
"code": 200,
"data": {
"id": 1,
"shop_id": 15,
"author": "terry3",
"handle": "handle-terr3y",
"title": "title terry3",
"summary_html": "summary_html terry",
"body_html": "body_html terry",
"meta_title": "meta_title terry",
"meta_keywords": "meta_keywords terry",
"meta_description": "meta_description terry",
"image": "image terry",
"is_published": 1,
"published_at": 1656612124,
"created_at": "2022-06-28 14:51:44",
"updated_at": "2022-06-28 15:39:29",
"collect": [
{
"article_id": 12,
"collection_id": 8
},
{
"article_id": 12,
"collection_id": 10
}
]
},
"message": "success"
}