查询用户收藏信息

开发者可以查询用户在好物圈中指定商家的收藏物品,接口说明如下:

接口调用基本信息 说明
协议 https
http请求方式 POST
请求URL https://api.weixin.qq.com/mall/queryshoppinglist?access_token=ACCESS_TOKEN&type=[batchquery|getbypage]
POST数据格式 UTF-8 json
接口能力 获取用户在好物圈指定商家的收藏物品
接口调用时机 获取用户在好物圈指定商家的收藏物品
type batchquery代表指定item_code批量查询,getbypage代表按页查询

请求数据样例

  • type=batchquery:

    {
    "user_open_id": "user_open_id",
    "key_list":[
      {
        "item_code":"00003563372839_0000xxxxxxxx"
      }, {
        "item_code":"00003563372839_0000xxxxxxxx"
      }
    ]
    }
    
  • type=getbypage:

    {
    "user_open_id": "user_open_id",
    "offset": 0,
    "count": 20
    }
    
物品基本字段 必填 字段类型 说明
user_open_id string 用户的openid
key_list batchquery模式下必填 array 单次请求物品数量不可超过20个
offset string 按页查询时起始位置偏移,默认0
count string 按页查询时单次最大返回数量,默认20
key_list基本字段 必填 字段类型 说明
item_code string 物品的item_code

回包数据样例

接口调用成功回包
{
    "errcode":0,
    "errmsg":"success"
    "goods_list": [{
        "biz_uin": 3506967354,
        "item_code": "00010101010010101010101010alinchiiiii",
        "sku_id": "sku_id2",
        "quantity": 1,
        "create_time": 1557924591,
        "update_time": 1557924591,
        "source": 2,
        "status": 0,
        "title": "product_name_for_test_alinchalinch",
        "from_scene": 1
    }
    ],
}
错误码 说明
0 成功
其他常见错误码 点击查看