API(Application Programming Interface) 是现代移动应用程序开发和互联网服务有机结合的产物。API的应用使得应用程序之间的通信变得更加轻松、快捷,尤其对于业务复杂而庞大的企业系统,API让开发者能够从中提取必要的功能进行二次开发,有效地加快了应用程序开发的速度。
接下来小编会展示具体操作步骤和方式:
公共参数
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
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版本 |
请求参数
请求参数:imgcode=
参数说明:imgcode:base64加密后的图片内容(post方式),或者是直接上传(file方式)
响应参数
Version: Date:
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
items | String | 0 | ["女鞋", "鞋子", "高跟鞋", "凉鞋", "一字", "摄影", "高清", "高跟", "素材", "细高跟"] | 识别的图片内容列表 |
tags | String | 0 | 篮球 袜子 加厚 湖人 运动袜 毛巾 男款 穆斯特 杜兰特 高筒 | 识别的图片内容TAG |
find | String | 0 | 篮球袜 | [不通用] |
result | Mix | 0 | { "title": "篮球袜", "desc": [ "品牌:起之萌", "类别:运动配饰" ] } | [不通用] |
same_info | Mix | 0 | [ { "title": "男士运动袜_篮球袜 冬季男士运动袜 - 阿里巴巴", "link": "http://detail.1688.com/offer/562919120066.html", "text": "建议零售价 ¥28.00 货源类别 现货 货号 篮球袜 ", "img": "https://graph.baidu.com/thumb/v4/2398243139,4012709553.jpg" }] | [不通用] |
same_goods | Mix | 0 | [{ "title": "篮球袜 加厚毛巾底缓震运动袜子 篮球袜子 男 中筒 白蓝经典款1717 均码", "price": "https://graph.baidu.com/thumb/v2/3819723548,1832786620.jpg?goods_id=http://item.jd.com/32609582908.html", "url": "http://item.jd.com/32609582908.html", "source": "京东商城", "guessword": "篮球袜", "mypos": [ "运动户外", "运动服饰", "运动配饰", "起之萌" ], "img": "https://graph.baidu.com/thumb/v2/3819723548,1832786620.jpg?goods_id=http://item.jd.com/32609582908.html" }] | [不通用] |
same_similar | Mix | 0 | [不通用] | |
same_hotrecom | Mix | 0 | [不通用] | |
guesswords | String | 0 | [不通用] |
php请求示例
<?php
// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://更多接口-v;18870288846/img2text/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgcode=";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
欢迎广大码友私信交流!