简要描述:

  • 检查商品是否收藏接口

请求域名:

  • http://xx.com

请求URL: member.member-favorite.isFavorite

参数:

参数名 是否必须 类型 说明
goods_id int 商品ID
member_id 可选 int 会员ID
uniacid 可选 int 所属公众号ID

返回示例:

正确时返回:

  {
    "result": 1,
    "msg": "商品已收藏",
    "data": 
		{
			"status":1,
			"message":"商品已收藏"
		}
  }

OR

{
    "result": 1,
    "msg": "商品已收藏",
    "data": 
		{
			"status":0,
			"message":"商品未收藏"
		}
  }

错误时返回:

  {
    "result": 0,
    "msg":"未获取到商品ID",
    "data":{}
  }

备注:

开发链接:/app/index.php?i=8&c=entry&do=shop&m=yun_shop&route=member.member-favorite.isFavorite
  • 更多返回错误代码请看首页的错误代码描述