查询用户收藏信息

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

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

请求数据样例

  • type=batchquery:
  1. {
  2. "user_open_id": "user_open_id",
  3. "key_list":[
  4. {
  5. "item_code":"00003563372839_0000xxxxxxxx"
  6. }, {
  7. "item_code":"00003563372839_0000xxxxxxxx"
  8. }
  9. ]
  10. }
  • type=getbypage:
  1. {
  2. "user_open_id": "user_open_id",
  3. "offset": 0,
  4. "count": 20
  5. }
物品基本字段必填字段类型说明
user_open_idstring用户的openid
key_listbatchquery模式下必填array单次请求物品数量不可超过20个
offsetstring按页查询时起始位置偏移,默认0
countstring按页查询时单次最大返回数量,默认20
key_list基本字段必填字段类型说明
item_codestring物品的item_code

回包数据样例

接口调用成功回包
  1. {
  2. "errcode":0,
  3. "errmsg":"success"
  4. "goods_list": [{
  5. "biz_uin": 3506967354,
  6. "item_code": "00010101010010101010101010alinchiiiii",
  7. "sku_id": "sku_id2",
  8. "quantity": 1,
  9. "create_time": 1557924591,
  10. "update_time": 1557924591,
  11. "source": 2,
  12. "status": 0,
  13. "title": "product_name_for_test_alinchalinch",
  14. "from_scene": 1
  15. }
  16. ],
  17. }
错误码说明
0成功
其他常见错误码点击查看