栏目文章列表.md
3.16 KB
1、频道列表页接口
频道列表页接口(app.grass.channelArticleList)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | Integer | 是 | 380463 | 0 | 用户id |
page | Integer | 否 | 1 | 1 | 页码 |
limit | Integer | 否 | 1 | 10 | 每页显示条数 |
columnType | Integer | 否 | 1000 | 无 | 栏目类型 (推荐:1001,球鞋:1004) |
注意,通用的头部没有列出。
请求示例
http://api-test3.dev.yohocorp.com/?method=app.grass.channelArticleList&uid=500031572&page=1&limit=10
响应
code为200即为成功。 响应JSON格式如下所示:
{
"code": 200,
"data": {
"total":1,
"totalPage":1,
"list": [
{
"articleId": 82, //文章id
"articleType": 1,//文章类型,1用户发布、2 逛文章
"authorHeadIco": "http://head.static.yhbimg.com/yhb-head/2018/10/19/14/01c349dfd4e467b7ca208e355eeb921122.jpg?imageView2/{mode}/w/{width}/h/{height}",
"authorName": "羡慕丶",
"authorType": 1, //进入个人主页的视角。 1.作者本人 2.非作者 3.作者是平台小编
"authorUid": 500031572,
"content": "文本文",//文字内容
"coverImage": "http://img11.static.yhbimg.com/yhb-img01/2016/12/16/18/01c84b87d28efe5e733367aa8aa91c02a6.jpg?imageView2/{mode}/w/{width}/h/{height}", //封面图
"favoriteCount": 0, //收藏数
"hasFavor": "N", //是否收藏
"imageHeight": "276", //封面图高度
"imageWidth": "640", //封面图宽度
"isTop": 1, //是否置顶
"publishTime": 1548671254,
"publishTimeStr": "2019-01-28 18:27:34"
},
{
"articleId": 86,
"articleType": 1,
"authorHeadIco": "http://head.static.yhbimg.com/yhb-head/2018/10/19/14/01c349dfd4e467b7ca208e355eeb921122.jpg?imageView2/{mode}/w/{width}/h/{height}",
"authorName": "羡慕丶",
"authorType": 1,
"authorUid": 500031572,
"content": "第2篇",
"coverImage": "http://img11.static.yhbimg.com/yhb-img01/2016/12/16/18/01c84b87d28efe5e733367aa8aa91c02a6.jpg?imageView2/{mode}/w/{width}/h/{height}",
"favoriteCount": 0,
"hasFavor": "N",
"imageHeight": "276",
"imageWidth": "640",
"isTop": 0,
"publishTime": 1548673065,
"publishTimeStr": "2019-01-28 18:57:45"
}
],
"pageNo": 1,
"pageSize": 5,
"totalCount": 1,
"totalPage": 1
},
"message": "success"
}
2、商品种草接口
商品种草接口(app.grass.addGrassFavorite)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | Integer | 否 | 380463 | 0 | 用户id |
productSkn | Integer | 否 | 55244331 | 1 | 商品skn |
注意,通用的头部没有列出。
请求示例
http://api-test3.dev.yohocorp.com/?method=app.grass.addGrassFavorite&uid=500031572&productSkn=51145491
响应
code为200即为成功。 响应JSON格式如下所示:
{
"code": 200,
"data": {
},
"message": "success"
}