接口使用场景等说明:唯品会分类查询API:根据商品的父类目id查询子类目id信息,通常用于获取各级类目对应关系,以便将推广商品归类
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/vip/vip_category | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
parentId | Long | 否 | 默认0 | 父类目id,一级类目的父类目id为0 |
grade | Integer | 否 | 默认1 | 类目级别(1-一级类目,2-二级类目,3-三级类目),当parentId不为0时,grade需指定值 |
GET/POST http://api.veapi.cn/vip/vip_category?vekey=xxx&parentId=337&grade=2
$api="http://api.veapi.cn/vip/vip_category?vekey=xxx&parentId=337&grade=2"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/vip/vip_category?vekey=xxx&parentId=337&grade=2"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/vip/vip_category?vekey=xxx&parentId=337&grade=2" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
id | Long | 否 | 类目id | |
name | String | 否 | 类目名称 | |
grade | Integer | 否 | 类目等级:1-一级类目,2-二级类目,3-三级类目 | |
parentId | Long | 否 | 父类id:一级类目父类id为0 |
{ "error": "0", "msg": "接口调用成功!", "total": 5, "data": [ { "grade": 2, "name": "男上装", "id": 338, "parentId": 337 }, { "grade": 2, "name": "男下装", "id": 351, "parentId": 337 }, { "grade": 2, "name": "内衣/家居服_停用", "id": 457, "parentId": 337 }, { "grade": 2, "name": "男配饰_停用", "id": 499, "parentId": 337 }, { "grade": 2, "name": "男式礼服套装", "id": 1097, "parentId": 337 } ], "request_id": "fEJaIhg" }