查询属性项的属性值
查询属性项的属性值信息
请求URL:
POST https://kf.fw199.com/gateway/dd/product/get/category/property/value
公共参数
参数名称 | 参数类型 | 是否必须 | 示例值 | 参数描述 |
---|---|---|---|---|
appid | String | 是 | 合作伙伴AppId | |
timestamp | String | 是 | 1657525936 | 当前Unix时间戳,秒 |
seller_nick | String | 是 | 38173182 | 抖店的账号,对应蜂巢授权返回doudianseller字段 |
sign | String | 是 |
业务参数
参数名称 | 参数类型 | 是否必须 | 示例值 | 参数描述 |
---|---|---|---|---|
category_id | Int64 | 是 | 31860 | 类目id |
property_id | Int64 | 是 | 2176 | 属性项id |
2. 请求示例代码(Java)
请求示例代码
@Test
public void DDProductGetcategoryPropertyvalue() throws Exception {
Map<String, Object> data = new HashMap<String, Object>();
data.put("appid", Config.AppId);
Long timestamp = System.currentTimeMillis() / 1000;
data.put("timestamp", timestamp.toString());
data.put("seller_nick", Config.DDSellerNick);
data.put("category_id","20212" );
data.put("property_id","241" );
data.put("sign", Sign(data,Config.AppSecret));
// 调用服务API
String resp = doHttpRequest(Config.DDProductGetCategoryPropertyValue, data);
System.out.println(resp);
}
3. 返回结果如下:
{
"code": 0,
"message": "ok",
"data": {
"property": {
"property_id": 241,
"property_values": [
{ "property_value_id": 38566, "property_value_name": "薄款" },
{ "property_value_id": 17314, "property_value_name": "常规款" },
{ "property_value_id": 197429, "property_value_name": "加绒加厚款" },
{ "property_value_id": 195685, "property_value_name": "厚款" }
]
}
}
}
说明: code为0表示成功,非0为失败,message会包含失败原因。返回字段说明见文档
https://op.jinritemai.com/docs/api-docs/14/1373
文档更新时间: 2024-12-15 22:21 作者:JSL