• 大小: 739KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-06-11
  • 语言: C#
  • 标签: 淘宝客  淘宝客API  

资源简介

详细教程: c#.net淘宝客基础api练手日记 https://blog.csdn.net/cplvfx/article/details/82352851

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Top.Api;
using Top.Api.Request;
using Top.Api.Response;



namespace DTcms.Web
{
    public partial class ceshi_taobaoke_api : System.Web.UI.Page
    {
        public static string appUrl = “ http://gw.api.taobao.com/router/rest“;
        public static string appKey = “appKey“;
        public static string appSecret = “appSecret“;

        protected void Page_Load(object sender EventArgs e)
        {

            Label1.Text =TaoBaoShow(“524176904993“1L“61.52.68.39““json“)+“
“;
            Label1.Text+=“\n\n\n“+TaoBaoShow(“524176904993“1L“61.52.68.39““xml“);


        }

        #region 淘宝客商品详情(简版)----------------------------
        /// 
        /// 淘宝客商品详情 (简版)
        /// 

        /// 商品ID串,用分割,最大40个
        ///  链接形式:1:PC,2:无线,默认:1
        /// ip地址,影响邮费获取,如果不传或者传入不准确,邮费无法精准提供
        /// 格式:xml或JSON
        public static string TaoBaoShow(string NumIids Int64 Platform string Ip string format)
        {
            ITopClient client = new DefaultTopClient(appUrl appKey appSecretformat);
            TbkItemInfoGetRequest req = new TbkItemInfoGetRequest();
            req.NumIids =NumIids;
            req.Platform = Platform;
            req.Ip = Ip;
            TbkItemInfoGetResponse rsp = client.Execute(req);
            return rsp.Body;
        }
        #endregion

    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      617472  2018-08-23 15:33  淘宝客C#.NET基础API代码和SDK\TopSdk.dll
     文件      539203  2018-08-23 15:33  淘宝客C#.NET基础API代码和SDK\taobao-sdk-net-auto_1508141130900-20180823-source.zip
     文件       44676  2018-05-23 11:09  淘宝客C#.NET基础API代码和SDK\感谢码.jpg
     文件        1837  2018-09-03 18:45  淘宝客C#.NET基础API代码和SDK\示例代码.cs
     目录           0  2018-09-03 18:45  淘宝客C#.NET基础API代码和SDK\

评论

共有 条评论