taobao.item_search_shop
这个API名称听起来像是针对淘宝或天猫平台的一个商品搜索接口,但实际上,淘宝和天猫的官方API体系中并没有直接命名为taobao.item_search_shop
的公开API。不过,为了解答关于类似功能的API返回值详解,我们可以基于一般商品搜索API的返回值结构来进行一个概括性的说明。
taobao.item_search_shop
公共参数
请求地址:
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
key | String | 是 | 调用key(必须以GET方式拼接在URL中) |
secret | String | 是 | 调用密钥 |
api_name | String | 是 | API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等] |
cache | String | 否 | [yes,no]默认yes,将调用缓存的数据,速度比较快 |
result_type | String | 否 | [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读 |
lang | String | 否 | [cn,en,ru]翻译语言,默认cn简体中文 |
version | String | 否 | API版本 |
请求参数
请求参数:shop_id=440688975&seller_id=4273827547&page=1&sort=
参数说明: shop_id:shop_id
seller_id:seller_id
sort:排序[new,bid,sale]
(new 新品,bid:价格,sale:销量,bid加_前缀为从大到小排序)
响应参数
Version: Date:
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
num_iid | Bigint | 0 | 579813460997 | 商品ID |
pic_url | String | 0 | //img.alicdn.com/bao/uploaded/i3/478952498/O1CN011UK7q9WzgFGKQw8_!!478952498.jpg | 图片地址 |
title | String | 0 | 英伦小皮鞋女复古2020秋冬新款网红毛毛鞋女百搭外穿粗跟中跟单鞋 | 店铺标题 |
orginal_price | String | 0 | 398.00 | 优惠价 |
price | Float | 0 | 148 | 价格 |
sales | Int | 0 | 7 | 销量 |
detail_url | String | 0 | //item.taobao.com/item.htm?id=579813460997 | 宝贝链接 |
通常,淘宝或天猫的商品搜索API(虽然可能不叫taobao.item_search_shop
)会返回一系列关于搜索结果的数据,这些数据以JSON或XML格式提供,具体取决于API的调用方式和配置。以下是一个假设性的、基于JSON格式的返回值结构示例,用于说明一个商品搜索API可能返回的数据类型:
{ "total_results": "1000", // 总搜索结果数 "page_number": 1, // 当前页码 "page_size": 20, // 每页显示结果数 "request_id": "xxxxxxx", // 请求ID,用于问题追踪 "items": [ { "item_id": "123456789", // 商品ID "title": "商品标题", // 商品标题 "price": "99.99", // 商品价格 "discount_price": "89.99", // 折扣价(如果有) "sale_count": "1000+", // 销售数量 "comments_count": "1000", // 评价数量 "seller_id": "seller123", // 卖家ID "seller_nick": "卖家昵称", // 卖家昵称 "shop_name": "店铺名称", // 店铺名称 "shop_score": "4.9", // 店铺评分 "category_id": "12345", // 商品分类ID "category_name": "分类名称",// 商品分类名称 "image_url": "http://example.com/image.jpg", // 商品主图URL "detail_url": "http://example.com/detail.html" // 商品详情页URL }, // 更多商品数据... ]
}