国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 熱點 > 淘寶 > 正文

silverlight調用淘寶api接口做淘寶客應用

2024-08-27 07:56:04
字體:
來源:轉載
供稿:網友

起始頁面為Login.aspx,固定調試端口為49441。需要配合自己淘寶開放平臺的應用的回調頁面URL來調整。

ashx代碼:
(說明:代碼中ITopClient為淘寶接口TopSdk.dll中的類,此例子使用的ItemsOnsaleGetRequest是用于獲取銷售中的商品,response.Body是獲取到的數據信息)


復制代碼代碼如下:
public class OnsaleGet : IHttpHandler
{</p><p> public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";

ITopClient client = new DefaultTopClient(Config.ServerURL, Config.Appkey, Config.Secret);</p><p> ItemsOnsaleGetRequest req = new ItemsOnsaleGetRequest();
req.Fields = "approve_status,num_iid,title,nick,type,cid,pic_url,num,props,valid_thru,list_time,price,has_discount,has_invoice,has_warranty,has_showcase,modified,delist_time,postage_id,seller_cids,outer_id";
ItemsOnsaleGetResponse response = client.Execute(req, Config.Top_session);</p><p>
if (response.IsError)
{
context.Response.Write("[錯誤:查詢函數執行失敗]");
}
else
{
context.Response.Write(response.Body);
}</p><p> }</p><p> public bool IsReusable
{
get
{
return false;
}
}
}

前端SL獲取數據信息的方法


復制代碼代碼如下:
void GetList()
{
string absolutePath = HtmlPage.Document.DocumentUri.AbsoluteUri;
string address = absolutePath.Substring(0, absolutePath.LastIndexOf('/'))
+ "/TaoBaoHandler/OnsaleGet.ashx";</p><p> Uri uri = new Uri(address);</p><p> WebClient client = new WebClient();
client.DownloadStringCompleted += (sender, e) =>
{
if (e.Error == null)
{
System.Xml.Linq.XElement.Parse(e.Result);//字符串轉為xml

ItemsOnsaleGetResponse list = SerializeHelper.DeserializeFromString<ItemsOnsaleGetResponse>(e.Result);//反序列化
if (list != null)
{
if (list.Items != null && list.Items.Count > 0)
{
MessageBox.Show(list.Items[0].NumIid.ToString());
}
}
else
{

}
}
else
{
MessageBox.Show(e.Error.Message);

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 邛崃市| 贡山| 丰顺县| 申扎县| 沁源县| 乌海市| 武城县| 梁平县| 海城市| 卢龙县| 尼勒克县| 柘城县| 措勤县| 休宁县| 游戏| 库尔勒市| 法库县| 江孜县| 大石桥市| 明光市| 富阳市| 马公市| 聂拉木县| 寻乌县| 陇西县| 郎溪县| 板桥市| 汉川市| 基隆市| 营口市| 孙吴县| 监利县| 南城县| 宜昌市| 阜新| 固原市| 龙岩市| 和平区| 福清市| 东阳市| 郁南县|