ListLookupのサンプルコード(VB.NET) †
ここで紹介しているコードはこちらのプロキシクラスを使用しています。
ここで紹介しているコードはこちらのC#のコードをVB.NETに変換したものです。
リストIDからそのウィッシュリストを表示するサンプルです。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
89
90
91
92
| | <%@ Page Language="VB" %>
<%@ 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 Sub Button1_Click(ByVal sender As Object, _
ByVal e As EventArgs)
Dim req As New ListLookupRequest()
req.ListType = ListLookupRequestListType.WishList
req.ListTypeSpecified = True
req.ListId = TextBox1.Text
req.ResponseGroup = New String() {"ListInfo", "ListItems"}
Dim list As New ListLookup()
list.AWSAccessKeyId = "(あなたのAccessKeyID)"
list.AssociateTag = "dobonnet-22"
list.Request = New ListLookupRequest() {req}
Dim aws As New AWSECommerceService()
Dim res As ListLookupResponse
Try
res = aws.ListLookup(list)
Catch ex As Exception
Label1.Text = "エラー:" + Server.HtmlEncode(ex.Message)
Return
End Try
If res Is Nothing OrElse res.Lists Is Nothing Then
Label1.Text = "結果を取得できませんでした。"
Return
End If
If Not (res.Lists(0).Request.Errors Is Nothing) Then
Label1.Text = "エラー:" + _
res.Lists(0).Request.Errors(0).Message
Return
End If
If res.Lists(0).List Is Nothing Then
Label1.Text = "該当するリストが見つかりませんでした。"
Return
End If
Label1.Text = ""
Label1.Text += "<ul>" + vbLf
Dim l As List
For Each l In res.Lists(0).List
Label1.Text += "<li><a href=""" + l.ListURL + """>" + _
l.ListName + "</a><br />" + vbLf
Label1.Text += "商品の数 : " + l.TotalItems + "<br />" + vbLf
If Not (l.ListItem Is Nothing) Then
Label1.Text += "<ul>" + vbLf
Dim i As Amazon.jp.v20060913.ListItem
For Each i In l.ListItem
Label1.Text += "<li><b>" + _
i.Item.ItemAttributes.Title + "</b>" + vbLf
Label1.Text += "<br />ASIN : " + i.Item.ASIN
Label1.Text += "<br />List Item ID : " + i.ListItemId
Next i
Label1.Text += "<ul>" + vbLf
End If
Next l
Label1.Text += "</ul>" + vbLf
End Sub
</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" Text="検索"
OnClick="Button1_Click" /><br />
</div>
</form>
<br />
<asp:Label ID="Label1" runat="server" EnableViewState="False">
</asp:Label>
</body>
</html>
|