查询用户收藏信息
开发者可以查询用户在好物圈中指定商家的收藏物品,接口说明如下:
请求数据样例
{
"user_open_id": "user_open_id",
"key_list":[
{
"item_code":"00003563372839_0000xxxxxxxx"
}, {
"item_code":"00003563372839_0000xxxxxxxx"
}
]
}
{
"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
}
],
}