SellerListingSearchのサンプルコード(C#)

ここで紹介しているコードはこちらのプロキシクラスを使用しています。

指定した出品者が出品している商品を表示するサンプルです。TextBoxに出品者のIDを入力します。

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
<%@ Page Language="C#" %>
<%@ Import Namespace="Amazon.jp.v20060913" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<script runat="server">
 
    protected void Button1_Click(object sender, EventArgs e)
    {
        SellerListingSearchRequest req = new SellerListingSearchRequest();
        //Seller IDを指定する
        req.SellerId = TextBox1.Text;
        //タイトル名で並べる
        req.Sort = "title";
 
        SellerListingSearch sls = new SellerListingSearch();
        //あなたのAccess Key ID
        sls.AWSAccessKeyId = "(あなたのAccessKeyID)";
        //あなたのAssociate ID
        sls.AssociateTag = "dobonnet-22";
        sls.Request = new SellerListingSearchRequest[] { req };
 
        AWSECommerceService aws = new AWSECommerceService();
        SellerListingSearchResponse res;
        try
        {
            //SellerListingSearchオペレーションを実行し、結果を取得
            res = aws.SellerListingSearch(sls);
        }
        catch (Exception ex)
        {
            Label1.Text = "エラー:" + Server.HtmlEncode(ex.Message);
            return;
        }
 
        if (res == null || res.SellerListings == null)
        {
            Label1.Text = "結果を取得できませんでした。";
            return;
        }
        if (res.SellerListings[0].Request.Errors != null)
        {
            Label1.Text = "エラー:" +
                res.SellerListings[0].Request.Errors[0].Message;
            return;
        }
        if (res.SellerListings[0].SellerListing == null)
        {
            Label1.Text = "該当するSellerのリストが見つかりませんでした。";
            return;
        }
 
        //結果を表示
        SellerListings listings = res.SellerListings[0];
        Label1.Text += "総数 : " + listings.TotalResults + "<br />";
        Label1.Text += "<ul>\n";
        foreach (SellerListing sl in listings.SellerListing)
        {
            Label1.Text += "<li><b>" + sl.Title + "</b><br />\n";
            Label1.Text += "価格 : " + sl.Price.FormattedPrice + "<br />\n";
            Label1.Text += "ExchangeID : " + sl.ExchangeId + "<br />\n";
            Label1.Text += "ASIN : " + sl.ASIN + "<br />\n";
            Label1.Text += "ListingId : " + sl.ListingId + "<br />\n";
        }
        Label1.Text += "</ul>\n";
 
    }
</script>
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Amazon出品者の商品リスト表示</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <label for="TextBox1">出品者のID : </label>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server"
         OnClick="Button1_Click" Text="送信" /><br />
    </div>
    </form>
    <br />
    <asp:Label ID="Label1" runat="server" EnableViewState="False">
    </asp:Label>
</body>
</html>

ページ情報
[ トップ ]   [ 編集 | 凍結 | 差分 | バックアップ | 添付 | 複製 | 名前変更 | リロード ]   [ 新規 | 子ページ作成 | 一覧 | 単語検索 | 最終更新 | ヘルプ ]