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

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

MultiOperationを使ってItemSearchオペレーションとListSearchオペレーションのリクエストを一度に送信するサンプルです。TextBoxに検索するキーワードを入力します。

  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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<%@ 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)
    {
        //商品検索のためのItemSearchを作成
        ItemSearchRequest req1 = new ItemSearchRequest();
        //検索するストアのインデックスを指定する(必須)
        req1.SearchIndex = "Blended";
        //検索する語句を指定
        req1.Keywords = TextBox1.Text;
        ItemSearch isc = new ItemSearch();
        //あなたのAccess Key ID
        //AWSAccessKeyIdかSubscriptionIdのどちらかを必ず指定する
        isc.AWSAccessKeyId = "(あなたのAccessKeyID)";
        //あなたのAssociate ID
        isc.AssociateTag = "dobonnet-22";
        isc.Request = new ItemSearchRequest[] { req1 };
 
        //ウィッシュリスト検索のためのListSearchを作成
        ListSearchRequest req2 = new ListSearchRequest();
        //Amazon.co.jpではListTypeにはWishListしか指定できない
        req2.ListType = ListSearchRequestListType.WishList;
        //リスト作成者の名前で検索する
        req2.Name = TextBox1.Text;
        req2.ResponseGroup = new string[]
            { "Request", "ListInfo", "ListMinimum" };
        ListSearch list = new ListSearch();
        //あなたのAccess Key ID
        list.AWSAccessKeyId = "(あなたのAccessKeyID)";
        //あなたのAssociate ID
        list.AssociateTag = "dobonnet-22";
        list.Request = new ListSearchRequest[] { req2 };
 
        //MultiOperationの作成
        MultiOperation multiOpe = new MultiOperation();
        multiOpe.ItemSearch = isc;
        multiOpe.ListSearch = list;
 
        AWSECommerceService aws = new AWSECommerceService();
        MultiOperationResponse res;
        try
        {
            //MultiOperationを実行し、結果を取得
            res = aws.MultiOperation(multiOpe);
        }
        catch (Exception ex)
        {
            Label1.Text = "エラー:" + Server.HtmlEncode(ex.Message);
            return;
        }
 
        if (res == null)
        {
            Label1.Text = "結果を取得できませんでした。";
            return;
        }
 
        //結果を表示
        Label1.Text = "";
        
        //商品検索の結果
        Label1.Text += "<h2>商品検索の結果</h2>\n";
        ItemSearchResponse res1 = res.ItemSearchResponse;
        if (res1 == null || res1.Items == null)
        {
            Label1.Text += "商品が見つかりませんでした。<br />\n";
        }
        else if (res1.Items[0].Request.Errors != null)
        {
            Label1.Text += "エラー:" +
                res1.Items[0].Request.Errors[0].Message + "</br />\n";
        }
        else if (res1.Items[0].Item == null)
        {
            Label1.Text += "該当する商品が見つかりませんでした。<br />\n";
        }
        else
        {
            Label1.Text += res1.Items[0].TotalResults +
                " 件見つかりました。<br />\n";
            Label1.Text += "<ul>\n";
            foreach (Item i in res1.Items[0].Item)
            {
                //タイトル
                Label1.Text += "<li><a href=\"" + i.DetailPageURL + "\">" +
                    i.ItemAttributes.Title + "</a>\n";
            }
            Label1.Text += "</ul>\n";
        }
        
        //ウィッシュリスト検索の結果
        Label1.Text += "<h2>ウィッシュリスト検索の結果</h2>\n";
        ListSearchResponse res2 = res.ListSearchResponse;
        if (res2 == null || res2.Lists == null)
        {
            Label1.Text += "リストが見つかりませんでした。<br />\n";
        }
        else if (res2.Lists[0].Request.Errors != null)
        {
            Label1.Text += "エラー:" +
                res2.Lists[0].Request.Errors[0].Message + "</br />\n";
        }
        else if (res2.Lists[0].List == null)
        {
            Label1.Text += "該当するリストが見つかりませんでした。<br />\n";
        }
        else
        {
            //結果を表示する
            Label1.Text += res2.Lists[0].TotalResults +
                "件見つかりました。<br />";
            Label1.Text += "<ul>\n";
            foreach (List l in res2.Lists[0].List)
            {
                Label1.Text += "<li>" + "<a href=\"" + l.ListURL + "\">" +
                    l.ListName + " : " +
                    l.CustomerName + "</a>\n";
            }
            Label1.Text += "</ul>\n";
        }
    }
</script>
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Amazonでの商品とウィッシュリストの同時検索</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <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>

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