favorite.md
5.04 KB
1、PC查询用户收藏商品列表接口
(method=web.favorite.product)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | int | 否 | 3407014 | 0 | 用户id |
limit | int | 是 | 500 | 10 | 返回记录数 |
响应
code为200即为成功,否则是失败。 响应JSON格式如下所示:
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"category_list": [
{
"category_id": 1,
"category_name": "上衣",
"num": 2
}
],
"product_list": [
{
"attribute": 0,
"category_id": 1,
"cnAlphabet": "FLYDFLYDA502TE16DuanXiuTXu",
"fav_price": "199.00",
"goodsId": 246351,
"image": "http://img13.static.yhbimg.com/goodsimg/2015/05/05/02/02a4f22b5dd8902ff265540d8cbd7a29a8.jpg?imageMogr2/thumbnail/160x200/extent/160x200/background/d2hpdGU=/position/center/quality/80",
"is_join_promotion": "Y",
"is_price_down": "N",
"is_subscribe_reduction": "N",
"market_price": "199.00",
"price_down": 0,
"product_id": 181867,
"product_name": "F.L.Y.D 剪裁印花长款短袖T恤[修身弹力棉]",
"product_skn": 51106081,
"product_url": "http://www.yohobuy.com/product/pro_181867_246351/FLYDFLYDA502TE16DuanXiuTXu.html",
"promotion_list": [
{
"promotion_title": "全场59加价购-WEB重构",
"promotion_type": "加价购"
},
{
"promotion_title": "全场39加价购-WEB重构",
"promotion_type": "加价购"
}
],
"sales_price": "199.00",
"status": 1,
"storage": 0
},
{
"attribute": 0,
"category_id": 1,
"cnAlphabet": "SKINARTSERIESINN201503009DaXiangTEEBai",
"fav_price": "229.00",
"goodsId": 221659,
"image": "http://img12.static.yhbimg.com/goodsimg/2015/03/17/09/024462dc4a951f93066907c8c23df27c95.jpg?imageMogr2/thumbnail/160x200/extent/160x200/background/d2hpdGU=/position/center/quality/80",
"is_join_promotion": "Y",
"is_price_down": "Y",
"is_subscribe_reduction": "N",
"market_price": "458.00",
"price_down": 0,
"product_id": 162553,
"product_name": "Skin Art Series INN 白色大象印花 TEE",
"product_skn": 51096290,
"product_url": "http://www.yohobuy.com/product/pro_162553_221659/SKINARTSERIESINN201503009DaXiangTEEBai.html",
"promotion_list": [
{
"promotion_title": "全场59加价购-WEB重构",
"promotion_type": "加价购"
},
{
"promotion_title": "全场39加价购-WEB重构",
"promotion_type": "加价购"
}
],
"sales_price": "219.00",
"status": 1,
"storage": 1
}
],
"total": 2
},
"md5": "7b1910d6696b7a1915ebd95029f888bc",
"message": "favorite product list"
}
2、PC取消商品收藏接口
(method=web.favorite.cancel)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | int | 否 | 8040274 | 0 | 用户id |
favIds | int | 否 | 212403,228841 | null | 商品id列表 |
type | String | 否 | product | null | 收藏类型 |
响应
code为200即为成功,否则是失败。 响应JSON格式如下所示:
{
"alg": "SALT_MD5",
"code": 200,
"data": [],
"md5": "6d729d4b35f10fc73531210bd7ecff91",
"message": "取消收藏成功"
}
2、PC取消商品收藏接口
(method=web.favorite.cancel)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | int | 否 | 3385902 | 0 | 用户id |
favIds | int | 否 | 46,175 | null | 品牌id列表 |
type | String | 否 | brand | null | 收藏类型 |
响应
code为200即为成功,否则是失败。 响应JSON格式如下所示:
{
"alg": "SALT_MD5",
"code": 200,
"data": [],
"md5": "6d729d4b35f10fc73531210bd7ecff91",
"message": "取消收藏成功"
}