目前官方查询关联产品的接口,是http://open.taobao.com/api.htm?docId=24517&docType=2
调用示例:
$c = new TopClient; $c->appkey = $appkey; $c->secretKey = $secret; $req = new TbkItemRecommendGetRequest; $req->setFields("num_iid,title,pict_url,small_images,reserve_price,zk_final_price,user_type,provcity,item_url"); $req->setNumIid("123"); $req->setCount("20"); $req->setPlatform("1"); $resp = $c->execute($req);
但是这个接口只能查到关联产品,目前无法查到这些关联产品优惠券。
如果需要在关联产品中展示优惠券,可以调用维易接口“批量解析产品佣金和优惠券”接口,获取优惠券信息。
接口地址:http://wsd.591hufu.com/doc/rexiaogaoyongchanpin 第二项
返回关联产品详细信息:
{
"error": 0, #当为0表,表示出错,则无data字段,错误消息在msg字段
"msg": "批量获取高佣和优惠券成功!部分产品没有佣金和优惠券,可能已下架或非联盟产品.",
"no_commission_list": "564919031783,564012647752", #提供的产品清单中,有已下架或非联盟产品
"data": [
{
"cat_name": "女装/女士精品",
"item_url": "https://item.taobao.com/item.htm?id=560910525988",
"nick": "Forevercan", #卖家昵称
"num_iid": "560910525988", #产品ID
"pict_url": "https://img.alicdn.com/bao/uploaded/i4/TB1DctPX2Qs8KJjSZFEYXI9RpXa_M2.SS2",
"provcity": "广东 广州",
"reserve_price": "599", #原价,无意义的字段。
"seller_id": "211937632", #卖家ID
"title": "Forevercan201...连衣裙女", #产品标题
"user_type": "0", #类型:0-淘宝产品,1-天猫产品
"volume": "22", #30天销量
"zk_final_price": "599", #折后价(指在淘客购物实际价,但未减淘客优惠券的价)
"category_id": "16", #分类ID
"max_commission_rate": "12.00", #该产品最高佣金比例
#以下字段仅当有优惠券时才有
"coupon_info": "满429元减20元", #优惠券信息,无券则无本字段
"coupon_end_time": "2018-09-30", #优惠券结束时间
"coupon_start_time": "2018-09-19", #开始时间
"coupon_remain_count": "3500", #余量
"coupon_total_count": "5000" #总量
}
]
}