zoukankan      html  css  js  c++  java
  • 利用淘宝接口上传商品

     try
                {
                    TopXmlRestClient client = new TopXmlRestClient("http://gw.api.taobao.com/router/rest", "appkey", "appsecret");
                    ItemAddRequest req = new ItemAddRequest();
                    req.ApproveStatus = "onsale";
                    req.EnlistTime = DateTime.Now;
                    req.Num = 10;
                    req.Price = "1000.00";
                    req.Type = "fixed";
                    req.StuffStatus = "new";
                    req.Title = "六脉神剑";
                    req.Desc = "客户第一,员工第二,股东第三";
                    Location location = new Location();
                    location.State = "广东";
                    location.City = "深圳";
                    req.Cid = "2203";
                    req.Location = location;
                    req.AutoRepost = true;
                    req.PostFee = "5.0";
                    req.ExpressFee = "10.0";
                    req.EmsFee = "20.0";
                    req.OuterId = "top4net";
                    req.Props = "20000:20727;1627207:3232483;20055:20716";
                    req.SkuProps = "1627207:3232483";
                    req.HasShowcase = true;
                    //req.Image = TestUtils.GetResourceAsFileItem("item.jpg");
                  
                    string rsp = client.GetResponse(req, SessionKey);
                    File.WriteAllText("e:\\add.txt", rsp);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }

  • 相关阅读:
    stm32时钟分析
    STM32中断优先级彻底讲解
    STM32 外部中断简介
    sencha touch 选择器
    sench touch 页面跳转
    sencha touch 学习汇总(转)
    ES6项目构建(babel+gulp+webpack)
    sencha touch
    sencha touch 目录结构
    angular学习笔记(6)- 指令
  • 原文地址:https://www.cnblogs.com/daretodream/p/1693622.html
Copyright © 2011-2022 走看看