多语言API接口接入电商平台按图搜索商品源数据演示示例

按图搜索商品的好处主要有以下几点:

  1. 提供更直观的搜索方式:按图搜索商品不需要使用文字关键词,而是通过上传或拍摄一张图片来搜索相关的商品。这种搜索方式更直观和智能化,用户无需输入文字描述,减少了搜索的复杂性和繁琐性。

  2. 准确度高:按图搜索商品可以根据图片的特征进行匹配,相比于文字搜索,更能准确地找到用户感兴趣的商品。无论是商品的外观、颜色、款式等特点,按图搜索能够更全面、准确地识别并呈现相关结果。

  3. 提供更多的商品选择:按图搜索商品不仅可以搜索到与上传图片相似的商品,还可以提供相似款式、相似颜色、相似功能等相关商品的推荐。这样用户可以获得更多的选择,发现更多自己感兴趣的商品。

  4. 提高用户体验:按图搜索商品的功能使得用户可以在遇到喜欢的商品或者看到别人使用的物品时,方便快捷地找到相似的商品。这提高了用户的购物体验,节省了用户搜索的时间和精力。

  5. 探索和发现更多商品:按图搜索商品不仅可以搜索已知的商品,还可以用于探索和发现新的商品。用户可以通过图片搜索来寻找不同品牌、不同风格的类似商品,拓宽自己的购物选择。

综上所述,按图搜索商品的好处包括提供更直观的搜索方式、提高搜索准确度、提供更多商品选择、提高用户体验以及探索和发现更多商品。这种智能化的搜索方式有助于提升用户满意度,并且对于电商平台和品牌商家来说,也能够促进销售和推广。

taobao.item_search_img-按图搜索淘宝商品(拍立淘)

公共参数

名称 类型 必须 描述
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版本

请求参数

请求参数:imgid=http://g-search3.alicdn.com/img/bao/uploaded/i4/O1CN01IDpcD81zHbpHs1YgT_!!2200811456689.jpg&cat=

参数说明:imgid:图片地址(支持淘宝或天猫图片地址,外部地址先调用上传图片(upload_img)接口,返回图片地址)
如:https://img.alicdn.com/imgextra/i3/15353738/TB2HDHAqN9YBuNjy0FfXXXIsVXa_!!15353738-0-beehive-scenes.jpg

响应参数

Version: Date:

名称 类型 必须 示例值 描述

title

String 0 亲子装短袖t恤社会人衣服全家装一家三口母子母女纯棉夏装上衣潮 宝贝标题

cid

Int 0 50015374

list_type

String 0 外观相似宝贝 列表类型

pic_url

String 0 //g-search3.alicdn.com/img/bao/uploaded/i4/TB26ry1rBsmBKNjSZFsXXaXSVXa_!!2628705716.jpg 宝贝图片

promotion_price

String 0 38.71 优惠价

price

Float 0 39.50 价格

sales

Int 0 7 销量

num_iid

Bigint 0 575727312808 宝贝ID

sample_id

Bigint 0 1627115368 商品风格标识ID

seller_nick

String 0 专属味道之dzw 掌柜昵称

is_tmall

Bool 0 false

post_fee

String 0 0.00 物流费用

area

String 0 广东 东莞 店铺所在地

detail_url

String 0 //item.taobao.com/item.htm?id=575727312808&ns=1#detail 宝贝链接

多语言API接口接入电商平台按图搜索商品源数据演示示例_第1张图片

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://taobao/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=http://g-search3.alicdn.com/img/bao/uploaded/i4/O1CN01IDpcD81zHbpHs1YgT_!!2200811456689.jpg&cat=";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}

你可能感兴趣的:(API接口,经验分享,电商平台,图搜索算法,算法,前端,java,数据挖掘)