本文主要是介绍电商API接口苏宁易购按关键字搜索suning商品API请求接入演示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
要接入苏宁易购的API接口按关键字搜索商品,你需要遵循以下步骤:
-
注册成为开放平台的开发者,获取ApiKey和ApiSecret。
-
使用ApiKey和ApiSecret获取访问令牌(AccessToken)。
-
使用AccessToken调用苏宁易购的API接口按关键字搜索商品。
以下是一个简单的Python示例,展示了如何使用requests库调用苏宁易购的API接口:
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="
headers = {"Accept-Encoding": "gzip","Connection": "close"
}
if __name__ == "__main__":r = requests.get(url, headers=headers)json_obj = r.json()print(json_obj)
响应参数
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
title | String | 0 | 百慕爱BAIMUAI休闲鞋 女2019春季 透气 时尚 推荐舒适增高运动鞋女板鞋女英伦小白鞋女学生磨砂皮女鞋 秋冬新款 热销推荐 | 商品标题 |
pic_url | String | 0 | //imgservice1.suning.cn/uimg1/b2c/image/GfDETtejamy-pyxEFRQGPA.jpg_400w_400h_4e | 商品图片 |
promotion_price | Float | 0 | 79.00 | 优惠价 |
price | Float | 0 | 180.00 | 价格 |
sales | Int | 0 | 销量 | |
num_iid | Bigint | 0 | 0070089297/10228868562 | 商品ID |
item_id | Bigint | 0 | 10228868562 | |
sample_id | String | 0 | 商品风格标识ID | |
seller_nick | String | 0 | 约薇女装官方旗舰店 | 卖家昵称 |
shopid | Bigint | 0 | 店铺ID | |
shop_href | String | 0 | 店铺链接 | |
shopname | String | 0 | 店铺名称 | |
post_fee | Float | 0 | 物流费用 | |
area | String | 0 | 店铺所在地 | |
detail_url | String | 0 | //product.suning.com/0070089297/10228868562.html | 商品链接 |
seller_info | Mix | 0 | {"user_num_id": "0070089297"} | 店铺信息 |
这篇关于电商API接口苏宁易购按关键字搜索suning商品API请求接入演示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!