获取商品发布规则信息 for 分销铺货

新商品发布,获取商品发布规则信息

1.请求参数:

请求URL:

POST https://open.fw199.com/gateway/alibaba/item/publish/schema/distribute/get

基础参数

参数名 类型 必须 示例值 说明
appid String true uwkahf@jfs92 合作伙伴AppId
timestamp String true 1633618722 当前时间戳
tb_seller_nick String true kingdo 淘宝卖家店铺登录账号,非店铺名称
sign String true 999de41d862efaa6f1084ead3b3ba480 如何计算生成见示例代码

业务参数  

名称 类型 必须 示例值 描述
images String[] false https://img.alicdn.com/imgextra/i3/520557274/O1CN01noA5I023bXcMGWJXQ_!!0-item_pic.jpg 商品主图链接,最多5张,传入完整URL
item_type String false b 商品类型。b:一口价 a:拍卖 默认值b一口价
biz_type String false taobao/1.0.0/brandAsyncRenderEnable 业务扩展参数,需与平台约定好
market String true taobao 商品发布的市场。taobao:淘宝,tmall:天猫,litetao:淘宝特价版
cat_id Number true 50021288 商品类目ID
spu_id Number false 32323 产品ID,天猫市场(market=tmall)时必填
barcode String false 6932529211107 商品条码

2. 请求示例代码(Java)

      @Test
    public void AlibabaItemPublishSchemaDistributeGetRequest() throws Exception {
        String tb_seller_nick = Config.TBSellerNick;
        //业务参数
        Map<String, Object> data = new HashMap<String, Object>();
        data.put("appid", Config.AppId);
        data.put("tb_seller_nick", tb_seller_nick);
        Long timestamp = System.currentTimeMillis() / 1000;
        data.put("timestamp", timestamp.toString());
        data.put("market", "taobao");
        data.put("cat_id", 201305209);
        data.put("sign", Utils.SignObject(data, Config.AppSecret));
        // 调用服务API
        String rsp =   Utils.doHttpRequestObject(Config.AlibabaItemPublishSchemaDistributeGetRequestUrl, data);
        String unescapeRsp = StringEscapeUtils.unescapeJavaScript(rsp);
        System.out.println(unescapeRsp);
    }

3. 返回结果

返回结果如下 ,限于篇幅, 完整的接口返回示例内容点击下载

 {
    "code":0,
    "message":"ok",
    "data":"<itemSchema>xxxxxxxx</itemSchema>",
    "trace_id":""
}

说明: code为0表示成功,非0为失败,message会包含失败原因, 返回字段说明

名称 类型 示例值 描述
result String <itemSchema> </itemSchema> 商品发布规则信息,XML格式.
文档更新时间: 2024-12-31 18:51   作者:admin