当前位置:   article > 正文

1688 API分享:1688商品采集接口 1688关键字搜索接口_1688 商品搜索api

1688 商品搜索api

  随着“无界零售”时代的到来,越来越多的企业开始寻求数字化转型,其中最重要的一个环节就是数据的互通和整合。而阿里巴巴旗下的B2B网站1688也推出了API接口,为企业间的数据交流提供了便利。电商API中有两个热门的接口,经常会被大家调用,那就是获取商品详情数据API和关键字搜索商品列表API。

API(Application Programming Interface)即应用程序接口,它是不同系统之间进行交互的桥梁。比如说,一个企业想要在自己的网站上展示来自1688的商品信息,就可以通过API接口,直接获取1688的商品数据,从而实现信息的更新和同步。

1、获取商品详情数据API:item_get

        商品API是1688 API中最常用的一个接口,它能够帮助企业获取1688上的商品信息,包括商品的价格、数量、规格、图片等等。拿到这些信息后,企业就可以在自己的网站上展示这些商品,并以此令自己的网站更加丰富和完整。此外,还可以基于商品API来完成一些其他的功能,比如说根据一定的条件筛选商品、对获取到的商品信息作出相应的处理等等。

        item_get请求参数为num_iid:1688商品ID,sales_data:&sales_data=1 获取近30天成交数据
agent:&agent=1 获取1688分销代发价格数据。可以获取到商品详情页上所有数据,包括宝贝ID、商品标题、商品简介、价格、原价、卖家昵称、宝贝链接、宝贝图片、品牌、品牌id、顶级分类ID、商品图片、邮费、快递费用、商品视频、商品SKU信息、商品规格信息列表、销售额、属性图片、详情图片列表。

2、关键字搜索接口item_search

        1688关键字搜索API是一个基于API接口的程序,通过将买家在前端页面输入的关键字转化为后端服务器能够识别的格式,从而实现对指定关键字进行搜索,并返回相关结果。使用该API,不仅可以省去繁琐的手动搜索过程,还能提升搜索速度和精准度,有效提高工作效率。

item_search请求参数为关键字,q:搜索关键字
cat:分类ID
start_price:开始价格
end_price:结束价格
sort:排序[bid,_bid,_sale,_credit]
  (bid:总价,sale:销量,credit信用,加_前缀为从大到小排序)
page:页数  page_size:每页宝贝数量,默认40
filter:额外的过滤参数,如:filter=filtId:1,2,3,4;activityType:1,2,3,4;city:天津;quantityBegin:1000
filtId 过滤:48小时发货,7+天包换,赠运费险,免费赊账;
activityType 优惠类型:包邮,产地货源,伙拼,手机专享价
city 地区:地区名
quantityBegin 起订量:数字

返回参数:

名称类型必须示例值描述

items

items[]0按关键字搜索商品

page

Int01页码

real_total_results

Int01900宝贝数量

total_results

Int01900宝贝数量

page_size

Int020接口返回数量

pagecount

Int0120总页数

data_from

String0

item

item[]0宝贝详情数据

 请求示例:

curl方式

  1. -- 请求示例 url 默认请求参数已经URL编码处理
  2. curl -i "https://api-服务器.cn/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="

PHP方式

  1. <?php
  2. // 请求示例 url 默认请求参数已经URL编码处理
  3. // 本示例代码未加密secret参数明文传输,若要加密请参考:https://o0b.cn/jennif
  4. $method = "GET";
  5. $url = "https://api-服务器.cn/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
  6. $curl = curl_init();
  7. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  8. curl_setopt($curl, CURLOPT_URL, $url);
  9. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
  10. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
  11. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  12. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  13. curl_setopt($curl, CURLOPT_HEADER, true);
  14. curl_setopt($curl, CURLOPT_ENCODING, "gzip");
  15. var_dump(curl_exec($curl));
  16. ?>

PHPsdk

  1. <?php
  2. //定义缓存目录和引入文件
  3. define("DIR_RUNTIME","runtime/");
  4. define("DIR_ERROR","runtime/");
  5. define("SECACHE_SIZE","0");
  6. //SDK下载地址 https://o0b.cn/jennif
  7. include ("ObApiClient.php");
  8. $obapi = new otao\ObApiClient();
  9. $obapi->api_url = "http://api-服务器.cn/";
  10. $obapi->api_urls = array("http://api-服务器.cn/","http://api-1.onebound.cn/");//备用API服务器
  11. $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
  12. $obapi->api_key = "<您自己的apiKey>";
  13. $obapi->api_secret = "<您自己的apiSecret>";
  14. $obapi->api_version ="";
  15. $obapi->secache_path ="runtime/";
  16. $obapi->secache_time ="86400";
  17. $obapi->cache = true;
  18. $api_data = $obapi->exec(
  19. array(
  20. "api_type" =>"1688",
  21. "api_name" =>"item_search",
  22. "api_params"=>array (
  23. 'q' => '女装',
  24. 'start_price' => '0',
  25. 'end_price' => '0',
  26. 'page' => '1',
  27. 'cat' => '0',
  28. 'discount_only' => '',
  29. 'sort' => '',
  30. 'page_size' => '40',
  31. 'seller_info' => '',
  32. 'nick' => '',
  33. 'ppath' => '',
  34. 'imgid' => '',
  35. 'filter' => '',
  36. )
  37. )
  38. );
  39. var_dump($api_data);
  40. ?>

Java

  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.InputStreamReader;
  5. import java.io.Reader;
  6. import java.net.URL;
  7. import java.nio.charset.Charset;
  8. import org.json.JSONException;
  9. import org.json.JSONObject;
  10. import java.io.PrintWriter;
  11. import java.net.URLConnection;
  12. public class Example {
  13. private static String readAll(Reader rd) throws IOException {
  14. StringBuilder sb = new StringBuilder();
  15. int cp;
  16. while ((cp = rd.read()) != -1) {
  17. sb.append((char) cp);
  18. }
  19. return sb.toString();
  20. }
  21. public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
  22. URL realUrl = new URL(url);
  23. URLConnection conn = realUrl.openConnection();
  24. conn.setDoOutput(true);
  25. conn.setDoInput(true);
  26. PrintWriter out = new PrintWriter(conn.getOutputStream());
  27. out.print(body);
  28. out.flush();
  29. InputStream instream = conn.getInputStream();
  30. try {
  31. BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
  32. String jsonText = readAll(rd);
  33. JSONObject json = new JSONObject(jsonText);
  34. return json;
  35. } finally {
  36. instream.close();
  37. }
  38. }
  39. public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
  40. URL realUrl = new URL(url);
  41. URLConnection conn = realUrl.openConnection();
  42. InputStream instream = conn.getInputStream();
  43. try {
  44. BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
  45. String jsonText = readAll(rd);
  46. JSONObject json = new JSONObject(jsonText);
  47. return json;
  48. } finally {
  49. instream.close();
  50. }
  51. }
  52. public static void main(String[] args) throws IOException, JSONException {
  53. // 请求示例 url 默认请求参数已经URL编码处理
  54. String url = "https://api-服务器.cn/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
  55. JSONObject json = getRequestFromUrl(url);
  56. System.out.println(json.toString());
  57. }
  58. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/668324
推荐阅读
相关标签
  

闽ICP备14008679号