sucker 2.0.0.pre.5 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +4 -139
- data/lib/sucker.rb +2 -2
- data/lib/sucker/config.rb +4 -0
- data/lib/sucker/request.rb +3 -3
- data/lib/sucker/version.rb +1 -1
- data/spec/fixtures/cassette_library/cartcreate/e3e2f9b71afba67619a95c7178178595.yml +27 -0
- data/spec/fixtures/cassette_library/itemlookup/4908294851a4df13269707e9f6507f91.yml +26 -0
- data/spec/fixtures/cassette_library/itemlookup/5670727fa0cb9f30464e41aa1346c91c.yml +26 -0
- data/spec/fixtures/cassette_library/itemlookup/6e6b1dc74378e2e1118713e254191fc0.yml +26 -0
- data/spec/fixtures/cassette_library/itemlookup/76f548183c2804a74d0ed7e0bfbd6d4a.yml +26 -0
- data/spec/fixtures/cassette_library/itemlookup/8286b763b726d3dc1fc992023e639b9b.yml +151 -0
- data/spec/fixtures/cassette_library/itemlookup/d3d6ea869d31173526f48907bff752a3.yml +26 -0
- data/spec/fixtures/cassette_library/itemlookup/d8ad346710c3b479febcf58e67fea7ef.yml +26 -0
- data/spec/fixtures/cassette_library/itemsearch/295b9eadfb69d55e1c0acb06220e0b6e.yml +26 -0
- data/spec/fixtures/cassette_library/itemsearch/4c1e50d070821f4eb9fe3961aba105ee.yml +26 -0
- data/spec/fixtures/cassette_library/itemsearch/5a15430433ab94c70466eb61c919a028.yml +26 -0
- data/spec/fixtures/cassette_library/itemsearch/7b463c88b9936c1f601826437e7e8ef5.yml +26 -0
- data/spec/fixtures/cassette_library/itemsearch/8fd40b929a9ed46e2b38ac905c8ab53a.yml +26 -0
- data/spec/fixtures/cassette_library/sellerlistingsearch/cb25caadce96ac3de70b69b76431d730.yml +26 -0
- data/spec/fixtures/cassette_library/sellerlistingsearch/e1261838e1754870ffd309dd78eb7374.yml +26 -0
- data/spec/sucker/config_spec.rb +8 -2
- data/spec/sucker_spec.rb +2 -2
- metadata +72 -36
- data/spec/fixtures/asins.txt +0 -10000
- data/spec/support/amazon_credentials.rb +0 -7
- data/spec/support/asins.rb +0 -8
data/README.md
CHANGED
@@ -1,145 +1,10 @@
|
|
1
1
|
# Sucker
|
2
2
|
|
3
|
-
|
3
|
+
[](http://travis-ci.org/papercavalier/sucker)
|
4
|
+
|
5
|
+
Sucker is a minimal Ruby wrapper to the
|
4
6
|
[Amazon Product Advertising API](https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/main.html).
|
5
7
|
|
6
8
|

|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
## Usage
|
11
|
-
|
12
|
-
_Note_: For the README of version 1.6.1 and earlier, [click here](https://github.com/papercavalier/sucker/tree/v1.6.1).
|
13
|
-
|
14
|
-
1. Define your Amazon credentials.
|
15
|
-
|
16
|
-
```ruby
|
17
|
-
Sucker.configure do |c|
|
18
|
-
c.locale = :us
|
19
|
-
c.key = amazon_key
|
20
|
-
c.secret = amazon_secret
|
21
|
-
c.associate_tag = associate_tag
|
22
|
-
end
|
23
|
-
|
24
|
-
2. Set up a request.
|
25
|
-
|
26
|
-
```ruby
|
27
|
-
request = Sucker.new
|
28
|
-
```
|
29
|
-
|
30
|
-
Alternatively, you may your credentials when initializing the request.
|
31
|
-
|
32
|
-
```ruby
|
33
|
-
request = Sucker.new(
|
34
|
-
:locale => :us,
|
35
|
-
:key => amazon_key,
|
36
|
-
:secret => amazon_secret)
|
37
|
-
end
|
38
|
-
```
|
39
|
-
|
40
|
-
2. Build a request.
|
41
|
-
|
42
|
-
```ruby
|
43
|
-
request << {
|
44
|
-
'Operation' => 'ItemLookup',
|
45
|
-
'IdType' => 'ASIN',
|
46
|
-
'ItemId' => 10.asins,
|
47
|
-
'ResponseGroup' => 'ItemAttributes' }
|
48
|
-
```
|
49
|
-
|
50
|
-
Amazon provides countless configuration options to fine-tune your query. Read
|
51
|
-
[their API](http://aws.amazon.com/archives/Product%20Advertising%20API) or
|
52
|
-
check out [these common scenarios](http://relishapp.com/papercavalier/sucker)
|
53
|
-
if in a hurry.
|
54
|
-
|
55
|
-
3. Get a response.
|
56
|
-
|
57
|
-
```ruby
|
58
|
-
response = request.get
|
59
|
-
```
|
60
|
-
|
61
|
-
Fulfill a business value.
|
62
|
-
|
63
|
-
```ruby
|
64
|
-
if response.valid?
|
65
|
-
response.find('Item').each do |item|
|
66
|
-
# consume
|
67
|
-
end
|
68
|
-
end
|
69
|
-
```
|
70
|
-
|
71
|
-
4. Repeat ad infinitum.
|
72
|
-
|
73
|
-
```ruby
|
74
|
-
request << { 'ItemId' => 10.new.asins }
|
75
|
-
request.get["Item"].each do |item|
|
76
|
-
# consume
|
77
|
-
end
|
78
|
-
```
|
79
|
-
|
80
|
-
|
81
|
-
## Some tips
|
82
|
-
|
83
|
-
Inspect the response as a hash to find out nodes you are interested in.
|
84
|
-
|
85
|
-
```ruby
|
86
|
-
p response.to_hash
|
87
|
-
```
|
88
|
-
|
89
|
-
The following are all valid ways to query a response:
|
90
|
-
|
91
|
-
```ruby
|
92
|
-
items = response.find('Item')
|
93
|
-
items = response['Item']
|
94
|
-
items = response.map('Item') { |item| ... }
|
95
|
-
response.each('Item') { |item| ... }
|
96
|
-
```
|
97
|
-
|
98
|
-
To dig further into the response object:
|
99
|
-
|
100
|
-
```ruby
|
101
|
-
p response.valid?,
|
102
|
-
response.body,
|
103
|
-
response.code,
|
104
|
-
response.errors,
|
105
|
-
response.has_errors?,
|
106
|
-
response.xml
|
107
|
-
```
|
108
|
-
|
109
|
-
To use multiple local IPs on your server, configure the request adapter:
|
110
|
-
|
111
|
-
```ruby
|
112
|
-
adapter = request.adapter
|
113
|
-
adapter.socket_local.host = '10.0.0.2'
|
114
|
-
```
|
115
|
-
|
116
|
-
[Browse the public interface of Sucker.](http://rdoc.info/github/papercavalier/sucker/master/frames)
|
117
|
-
|
118
|
-
Evented Requests
|
119
|
-
----------------
|
120
|
-
|
121
|
-
Large responses can block! I am including an EM:Synchrony patch in the 2.0
|
122
|
-
release.
|
123
|
-
|
124
|
-
```ruby
|
125
|
-
require 'sucker/synchrony'
|
126
|
-
|
127
|
-
EM.synchrony do
|
128
|
-
# set up request
|
129
|
-
response = request.get
|
130
|
-
# do something with the response
|
131
|
-
EM.stop
|
132
|
-
end
|
133
|
-
|
134
|
-
```
|
135
|
-
For more meaningful examples, read [here](http://relishapp.com/papercavalier/sucker/evented-requests).
|
136
|
-
|
137
|
-
Stubbing Tests
|
138
|
-
--------------
|
139
|
-
|
140
|
-
Try [VCR](http://github.com/myronmarston/vcr).
|
141
|
-
|
142
|
-
Moral of the story
|
143
|
-
------------------
|
144
|
-
|
145
|
-
Don't overabstract a spaghetti API.
|
10
|
+
[Read here](http://code.papercavalier.com/sucker) for more detail.
|
data/lib/sucker.rb
CHANGED
@@ -4,7 +4,7 @@ require 'sucker/response'
|
|
4
4
|
|
5
5
|
# = Sucker
|
6
6
|
#
|
7
|
-
# Sucker is a Ruby wrapper to the Amazon Product Advertising API.
|
7
|
+
# Sucker is a minimal Ruby wrapper to the Amazon Product Advertising API.
|
8
8
|
module Sucker
|
9
9
|
class << self
|
10
10
|
# Initializes a request object.
|
@@ -28,7 +28,7 @@ module Sucker
|
|
28
28
|
# end
|
29
29
|
#
|
30
30
|
def configure(&block)
|
31
|
-
|
31
|
+
Config.configure(&block)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
data/lib/sucker/config.rb
CHANGED
data/lib/sucker/request.rb
CHANGED
@@ -18,9 +18,9 @@ module Sucker
|
|
18
18
|
LOCALES = HOSTS.keys
|
19
19
|
|
20
20
|
def_delegators :@config, :associate_tag, :associate_tag=,
|
21
|
-
:key,
|
22
|
-
:locale,
|
23
|
-
:secret,
|
21
|
+
:key, :key=,
|
22
|
+
:locale, :locale=,
|
23
|
+
:secret, :secret=
|
24
24
|
|
25
25
|
# Creates a new a request.
|
26
26
|
#
|
data/lib/sucker/version.rb
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
---
|
3
|
+
- !ruby/struct:VCR::HTTPInteraction
|
4
|
+
request: !ruby/struct:VCR::Request
|
5
|
+
method: :get
|
6
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Item.1.OfferListingId=mg7dbfIPL3rTrnxR6R9I4u0glPrEbbdF6p7X9tXpyhAMBRUwGLGi1mOQoClXMciAFenOXG9dZXGSPTfjRoQXma9yOTmeHhYqwPOEPHOz2XHMgooCZPjeQRfgRYQe6DBEd1qz%252Fu1G0ew%253D&Item.1.Quantity=1&Operation=CartCreate&Service=AWSECommerceService&Signature=KOWNiGbBwuhtK2gCzvhY4zZEtjQpJfE5v0FRd8f+pBs=&Timestamp=2011-04-06T11:09:11Z&Version=2010-11-01
|
7
|
+
body:
|
8
|
+
headers:
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Wed, 06 Apr 2011 11:09:11 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: <?xml version="1.0" encoding="UTF-8"?><CartCreateResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-11-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Ruby"></Header></HTTPHeaders><RequestId>1168G1DJCNJD2Z5YBXCG</RequestId><Arguments><Argument Name="AssociateTag"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="KOWNiGbBwuhtK2gCzvhY4zZEtjQpJfE5v0FRd8f+pBs="></Argument><Argument Name="Item.1.OfferListingId" Value="mg7dbfIPL3rTrnxR6R9I4u0glPrEbbdF6p7X9tXpyhAMBRUwGLGi1mOQoClXMciAFenOXG9dZXGSPTfjRoQXma9yOTmeHhYqwPOEPHOz2XHMgooCZPjeQRfgRYQe6DBEd1qz%2Fu1G0ew%3D"></Argument><Argument Name="Item.1.Quantity" Value="1"></Argument><Argument Name="Operation" Value="CartCreate"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Version" Value="2010-11-01"></Argument><Argument Name="Timestamp" Value="2011-04-06T11:09:11Z"></Argument></Arguments><RequestProcessingTime>0.089832067489624</RequestProcessingTime></OperationRequest><Cart><Request><IsValid>True</IsValid><CartCreateRequest><Items><Item><OfferListingId>mg7dbfIPL3rTrnxR6R9I4u0glPrEbbdF6p7X9tXpyhAMBRUwGLGi1mOQoClXMciAFenOXG9dZXGSPTfjRoQXma9yOTmeHhYqwPOEPHOz2XHMgooCZPjeQRfgRYQe6DBEd1qz%2Fu1G0ew%3D</OfferListingId><Quantity>1</Quantity></Item></Items></CartCreateRequest></Request><CartId>185-5703867-5466531</CartId><HMAC>hE8sZY4/KzkQvZzH6XxuIVyEjk4=</HMAC><URLEncodedHMAC>hE8sZY4%2FKzkQvZzH6XxuIVyEjk4%3D</URLEncodedHMAC><PurchaseURL>https://www.amazon.com/gp/cart/aws-merge.html?cart-id=185-5703867-5466531%26associate-id=ws%26hmac=hE8sZY4/KzkQvZzH6XxuIVyEjk4=%26SubscriptionId=0ZVSQ33MDFPQS8H2PM02%26MergeCart=False</PurchaseURL><SubTotal><Amount>1054</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.54</FormattedPrice></SubTotal><CartItems><SubTotal><Amount>1054</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.54</FormattedPrice></SubTotal><CartItem><CartItemId>U2329STRQPCFPV</CartItemId><ASIN>1844672972</ASIN><ExchangeId>Y18M6004066M1787332</ExchangeId><MerchantId>A1C3QU77DDT2KW</MerchantId><SellerId>A1C3QU77DDT2KW</SellerId><SellerNickname>indoobestsellers</SellerNickname><Quantity>1</Quantity><Title>The Future of the Image</Title><ProductGroup>Book</ProductGroup><Price><Amount>1054</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.54</FormattedPrice></Price><ItemTotal><Amount>1054</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.54</FormattedPrice></ItemTotal></CartItem></CartItems></Cart></CartCreateResponse>
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0007218095&Operation=ItemLookup&Service=AWSECommerceService&Signature=W/qSSxRiQF/hXTlveZ2X6aEtDXfgSq8BdiYWOy0GLik=&Timestamp=2011-07-13T14:01:58Z&Version=2010-11-01
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
server:
|
16
|
+
- Server
|
17
|
+
date:
|
18
|
+
- Wed, 13 Jul 2011 14:01:58 GMT
|
19
|
+
nncoection:
|
20
|
+
- close
|
21
|
+
vary:
|
22
|
+
- Accept-Encoding,User-Agent
|
23
|
+
transfer-encoding:
|
24
|
+
- chunked
|
25
|
+
body: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-11-01"><OperationRequest><RequestId>fbd5e4cc-6fe1-446a-92d8-3c9117b68811</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="W/qSSxRiQF/hXTlveZ2X6aEtDXfgSq8BdiYWOy0GLik="></Argument><Argument Name="AssociateTag"></Argument><Argument Name="Version" Value="2010-11-01"></Argument><Argument Name="ItemId" Value="0007218095"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Timestamp" Value="2011-07-13T14:01:58Z"></Argument></Arguments><RequestProcessingTime>0.0833030000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0007218095</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest><Errors><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218095 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error></Errors></Request></Items></ItemLookupResponse>
|
26
|
+
http_version: "1.1"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0679753354&Operation=ItemLookup&RelationshipType=AuthorityTitle&ResponseGroup=RelatedItems&Service=AWSECommerceService&Signature=FM7M5ik1PbKGnw7vgUiMXIucR19UeTMFsFT3D2MV9Cs=&Timestamp=2011-07-13T14:02:02Z&Version=2010-11-01
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
server:
|
16
|
+
- Server
|
17
|
+
date:
|
18
|
+
- Wed, 13 Jul 2011 14:02:02 GMT
|
19
|
+
nncoection:
|
20
|
+
- close
|
21
|
+
vary:
|
22
|
+
- Accept-Encoding,User-Agent
|
23
|
+
transfer-encoding:
|
24
|
+
- chunked
|
25
|
+
body: <?xml version="1.0" encoding="UTF-8"?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-11-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Jakarta Commons-HttpClient/3.0.1"></Header></HTTPHeaders><RequestId>1S7T5K5W4A6D86T598QH</RequestId><Arguments><Argument Name="ItemId" Value="0679753354"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="ResponseGroup" Value="RelatedItems"></Argument><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="Timestamp" Value="2011-07-13T14:02:02Z"></Argument><Argument Name="Version" Value="2010-11-01"></Argument><Argument Name="RelationshipType" Value="AuthorityTitle"></Argument><Argument Name="AssociateTag"></Argument><Argument Name="Signature" Value="FM7M5ik1PbKGnw7vgUiMXIucR19UeTMFsFT3D2MV9Cs="></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument></Arguments><RequestProcessingTime>0.0241901874542236</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>0679753354</ItemId><ResponseGroup>RelatedItems</ResponseGroup><RelationshipType>AuthorityTitle</RelationshipType></ItemLookupRequest></Request><Item><ASIN>0679753354</ASIN><RelatedItems><Relationship>Parents</Relationship><RelationshipType>AuthorityTitle</RelationshipType><RelatedItemCount>1</RelatedItemCount><RelatedItemPageCount>1</RelatedItemPageCount><RelatedItemPage>1</RelatedItemPage><RelatedItem><Item><ASIN>B000B1BO1C</ASIN></Item></RelatedItem></RelatedItems></Item></Items></ItemLookupResponse>
|
26
|
+
http_version: "1.1"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0679753354&Operation=ItemLookup&ResponseGroup=AlternateVersions&Service=AWSECommerceService&Signature=ZIRxwHlh8c9ycOwrEjTuAm3IYPVrIkWol5c+H3peAsg=&Timestamp=2011-07-13T14:01:51Z&Version=2010-11-01
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
server:
|
16
|
+
- Server
|
17
|
+
date:
|
18
|
+
- Wed, 13 Jul 2011 14:01:52 GMT
|
19
|
+
nncoection:
|
20
|
+
- close
|
21
|
+
vary:
|
22
|
+
- Accept-Encoding,User-Agent
|
23
|
+
transfer-encoding:
|
24
|
+
- chunked
|
25
|
+
body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><HTTPHeaders><Header Name=\"UserAgent\" Value=\"Jakarta Commons-HttpClient/3.0.1\"></Header></HTTPHeaders><RequestId>1GQ1QJHE5K6ZRQ61GS6A</RequestId><Arguments><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"ItemId\" Value=\"0679753354\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"ZIRxwHlh8c9ycOwrEjTuAm3IYPVrIkWol5c+H3peAsg=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"AlternateVersions\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:01:51Z\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument></Arguments><RequestProcessingTime>0.0581691265106201</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>0679753354</ItemId><ResponseGroup>AlternateVersions</ResponseGroup></ItemLookupRequest></Request><Item><ASIN>0679753354</ASIN><AlternateVersions><AlternateVersion><ASIN>B004WOW07G</ASIN><Title>The Order of Things: An Archaeology of the Human Sciences</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>B004WIMD7Y</ASIN><Title>The Order of Things</Title><Binding>Unknown Binding</Binding></AlternateVersion><AlternateVersion><ASIN>B000SW4DX0</ASIN><Title>The Order of Things: an Archaeology of the human Sciences</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>B000KHFOCC</ASIN><Title>The Order of Things: an Archaeology of the Human Sciences (World of Man)</Title><Binding>Hardcover</Binding></AlternateVersion><AlternateVersion><ASIN>B000OT88VU</ASIN><Title>The Order of Things: An Archaeology of the Human Sciences (Routledge Classics)</Title><Binding>Kindle Edition</Binding></AlternateVersion><AlternateVersion><ASIN>0394719352</ASIN><Title>The Order of Things</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>B0007BFJ08</ASIN><Title>The order of things: An archaeology of the human sciences (Social science paperbacks)</Title><Binding>Unknown Binding</Binding></AlternateVersion><AlternateVersion><ASIN>0422718904</ASIN><Title>The order of things: An archaeology of the human sciences; (World of man)</Title><Binding>Hardcover</Binding></AlternateVersion><AlternateVersion><ASIN>039443952X</ASIN><Title>The Order of Things: An Archaeology of the Human Sciences (World of Man)</Title><Binding>Hardcover</Binding></AlternateVersion><AlternateVersion><ASIN>B000W2Q70I</ASIN><Title>THE ORDER OF THINGS. An Archaeology of the Human Sciences.</Title><Binding>Hardcover</Binding></AlternateVersion><AlternateVersion><ASIN>B000MBQYNE</ASIN><Title>Order of Things: An Archaeology of the Human Sciences</Title><Binding>Hardcover</Binding></AlternateVersion><AlternateVersion><ASIN>B000HZIHD0</ASIN><Title>The Order of Things: An Archaeology of the Human Sciences</Title><Binding>Mass Market Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>0415267374</ASIN><Title>Order of Things: An Archaeology of the Human Sciences (Routledge Classics)</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>0415040191</ASIN><Title>The Order of Things</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>0415267366</ASIN><Title>Order of Things: An Archaeology of the Human Sciences (Routledge Classics)</Title><Binding>Hardcover</Binding></AlternateVersion></AlternateVersions></Item></Items></ItemLookupResponse>"
|
26
|
+
http_version: "1.1"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0394751221&Operation=ItemLookup&ResponseGroup=Images&Service=AWSECommerceService&Signature=IqPaK38P9vxTlYOjwM9CWJ/9LaM/KrWxOYxyCIrhT+Q=&Timestamp=2011-07-13T14:01:57Z&Version=2010-11-01
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
server:
|
16
|
+
- Server
|
17
|
+
date:
|
18
|
+
- Wed, 13 Jul 2011 14:01:57 GMT
|
19
|
+
nncoection:
|
20
|
+
- close
|
21
|
+
vary:
|
22
|
+
- Accept-Encoding,User-Agent
|
23
|
+
transfer-encoding:
|
24
|
+
- chunked
|
25
|
+
body: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-11-01"><OperationRequest><RequestId>cfc23e66-8933-4a16-be9a-a04611672105</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="IqPaK38P9vxTlYOjwM9CWJ/9LaM/KrWxOYxyCIrhT+Q="></Argument><Argument Name="AssociateTag"></Argument><Argument Name="Version" Value="2010-11-01"></Argument><Argument Name="ItemId" Value="0394751221"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Timestamp" Value="2011-07-13T14:01:57Z"></Argument><Argument Name="ResponseGroup" Value="Images"></Argument></Arguments><RequestProcessingTime>0.0499710000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0394751221</ItemId><ResponseGroup>Images</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0394751221</ASIN><SmallImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">49</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">104</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">324</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">19</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">49</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">49</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">71</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">104</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41RbE1XoSwL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">324</Width></LargeImage></ImageSet></ImageSets></Item></Items></ItemLookupResponse>
|
26
|
+
http_version: "1.1"
|
@@ -0,0 +1,151 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=5ePrfSDxtBAhR54nc/F1YsVDHhVKM+er3loUxAQwGVI=&Timestamp=2011-07-13T14:01:57Z&Version=2010-11-01
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
date:
|
16
|
+
- Wed, 13 Jul 2011 14:01:58 GMT
|
17
|
+
server:
|
18
|
+
- Server
|
19
|
+
nncoection:
|
20
|
+
- close
|
21
|
+
vary:
|
22
|
+
- Accept-Encoding,User-Agent
|
23
|
+
transfer-encoding:
|
24
|
+
- chunked
|
25
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>acaf39a7-8ca1-4e84-b04c-ff1eabe0d31a</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"5ePrfSDxtBAhR54nc/F1YsVDHhVKM+er3loUxAQwGVI=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:01:57Z\"></Argument></Arguments><RequestProcessingTime>0.0102950000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Schizophrenia-Gilles-Deleuze/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Schizophrenia-Gilles-Deleuze/dp/tech-data/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Creator Role=\"Contributor\">Felix Guattari</Creator><Manufacturer>Univ Of Minnesota Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
26
|
+
http_version: "1.1"
|
27
|
+
- !ruby/struct:VCR::HTTPInteraction
|
28
|
+
request: !ruby/struct:VCR::Request
|
29
|
+
method: :get
|
30
|
+
uri: http://ecs.amazonaws.ca:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=Wfqa4o9LTJPali+LL6kRLrD8XJqmME4c5uCUudyMf0E=&Timestamp=2011-07-13T14:02:04Z&Version=2010-11-01
|
31
|
+
body:
|
32
|
+
headers:
|
33
|
+
response: !ruby/struct:VCR::Response
|
34
|
+
status: !ruby/struct:VCR::ResponseStatus
|
35
|
+
code: 200
|
36
|
+
message: OK
|
37
|
+
headers:
|
38
|
+
content-type:
|
39
|
+
- text/xml;charset=UTF-8
|
40
|
+
server:
|
41
|
+
- Server
|
42
|
+
date:
|
43
|
+
- Wed, 13 Jul 2011 14:02:05 GMT
|
44
|
+
nncoection:
|
45
|
+
- close
|
46
|
+
vary:
|
47
|
+
- Accept-Encoding,User-Agent
|
48
|
+
transfer-encoding:
|
49
|
+
- chunked
|
50
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>f89896d9-a9b4-4d6c-8d52-dc23fd4fc484</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"Wfqa4o9LTJPali+LL6kRLrD8XJqmME4c5uCUudyMf0E=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:02:04Z\"></Argument></Arguments><RequestProcessingTime>0.1005570000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.ca/Thousand-Plateaus-Schizophrenia-Gilles-Deleuze/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.ca/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.ca/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.ca/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.ca/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Creator Role=\"Contributor\">Felix Guattari</Creator><Manufacturer>Univ Of Minnesota Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
51
|
+
http_version: "1.1"
|
52
|
+
- !ruby/struct:VCR::HTTPInteraction
|
53
|
+
request: !ruby/struct:VCR::Request
|
54
|
+
method: :get
|
55
|
+
uri: http://ecs.amazonaws.co.uk:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=W6dZJKWL2UndLKx4Qrp1tAI18F3RDfs0fniTxHp73/I=&Timestamp=2011-07-13T14:02:04Z&Version=2010-11-01
|
56
|
+
body:
|
57
|
+
headers:
|
58
|
+
response: !ruby/struct:VCR::Response
|
59
|
+
status: !ruby/struct:VCR::ResponseStatus
|
60
|
+
code: 200
|
61
|
+
message: OK
|
62
|
+
headers:
|
63
|
+
content-type:
|
64
|
+
- text/xml;charset=UTF-8
|
65
|
+
server:
|
66
|
+
- Server
|
67
|
+
date:
|
68
|
+
- Wed, 13 Jul 2011 14:02:06 GMT
|
69
|
+
nncoection:
|
70
|
+
- close
|
71
|
+
vary:
|
72
|
+
- Accept-Encoding,User-Agent
|
73
|
+
transfer-encoding:
|
74
|
+
- chunked
|
75
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>5d55a73e-6805-43bc-b786-1ffd937e79c0</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"Signature\" Value=\"W6dZJKWL2UndLKx4Qrp1tAI18F3RDfs0fniTxHp73/I=\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:02:04Z\"></Argument></Arguments><RequestProcessingTime>0.0085780000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.uk/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.uk/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.uk/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.uk/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.uk/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Manufacturer>University of Minnesota Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
76
|
+
http_version: "1.1"
|
77
|
+
- !ruby/struct:VCR::HTTPInteraction
|
78
|
+
request: !ruby/struct:VCR::Request
|
79
|
+
method: :get
|
80
|
+
uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=PIMWIkJ+Lpd7i8MiT6pIH2C50UAnSTBA4Q870fYSBmc=&Timestamp=2011-07-13T14:02:04Z&Version=2010-11-01
|
81
|
+
body:
|
82
|
+
headers:
|
83
|
+
response: !ruby/struct:VCR::Response
|
84
|
+
status: !ruby/struct:VCR::ResponseStatus
|
85
|
+
code: 200
|
86
|
+
message: OK
|
87
|
+
headers:
|
88
|
+
content-type:
|
89
|
+
- text/xml;charset=UTF-8
|
90
|
+
server:
|
91
|
+
- Server
|
92
|
+
date:
|
93
|
+
- Wed, 13 Jul 2011 14:02:06 GMT
|
94
|
+
nncoection:
|
95
|
+
- close
|
96
|
+
vary:
|
97
|
+
- Accept-Encoding,User-Agent
|
98
|
+
transfer-encoding:
|
99
|
+
- chunked
|
100
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>90bf61ee-fa29-46ef-80d4-1dbcb41c8ffc</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"PIMWIkJ+Lpd7i8MiT6pIH2C50UAnSTBA4Q870fYSBmc=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:02:04Z\"></Argument></Arguments><RequestProcessingTime>0.0085950000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.fr/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Creator Role=\"Traduction\">Brian Massumi</Creator><Manufacturer>University of Minnesota Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
101
|
+
http_version: "1.1"
|
102
|
+
- !ruby/struct:VCR::HTTPInteraction
|
103
|
+
request: !ruby/struct:VCR::Request
|
104
|
+
method: :get
|
105
|
+
uri: http://ecs.amazonaws.de:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=GRZnP5+Lat/oStkmLPWzJX9rF2HprQVJWl1A3QSoR3o=&Timestamp=2011-07-13T14:02:04Z&Version=2010-11-01
|
106
|
+
body:
|
107
|
+
headers:
|
108
|
+
response: !ruby/struct:VCR::Response
|
109
|
+
status: !ruby/struct:VCR::ResponseStatus
|
110
|
+
code: 200
|
111
|
+
message: OK
|
112
|
+
headers:
|
113
|
+
content-type:
|
114
|
+
- text/xml;charset=UTF-8
|
115
|
+
server:
|
116
|
+
- Server
|
117
|
+
date:
|
118
|
+
- Wed, 13 Jul 2011 14:02:06 GMT
|
119
|
+
nncoection:
|
120
|
+
- close
|
121
|
+
vary:
|
122
|
+
- Accept-Encoding,User-Agent
|
123
|
+
transfer-encoding:
|
124
|
+
- chunked
|
125
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>42346493-cbcc-4ef1-b621-47095d536c93</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"GRZnP5+Lat/oStkmLPWzJX9rF2HprQVJWl1A3QSoR3o=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:02:04Z\"></Argument></Arguments><RequestProcessingTime>0.0098370000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.de/Thousand-Plateaus-Schizophrenia-Gilles-Deleuze/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.de/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.de/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.de/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.de/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Creator Role=\"K\xC3\xBCnstler\">Felix Guattari</Creator><Creator Role=\"\xC3\x9Cbersetzer\">Brian Massumi</Creator><Manufacturer>University of Minnesota Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
126
|
+
http_version: "1.1"
|
127
|
+
- !ruby/struct:VCR::HTTPInteraction
|
128
|
+
request: !ruby/struct:VCR::Request
|
129
|
+
method: :get
|
130
|
+
uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&Service=AWSECommerceService&Signature=w2ZbiXxB7Jb+SY8dzEttIxteOo+4zpj5ZcUf/BOsn4Y=&Timestamp=2011-07-13T14:02:04Z&Version=2010-11-01
|
131
|
+
body:
|
132
|
+
headers:
|
133
|
+
response: !ruby/struct:VCR::Response
|
134
|
+
status: !ruby/struct:VCR::ResponseStatus
|
135
|
+
code: 200
|
136
|
+
message: OK
|
137
|
+
headers:
|
138
|
+
content-type:
|
139
|
+
- text/xml;charset=UTF-8
|
140
|
+
server:
|
141
|
+
- Server
|
142
|
+
date:
|
143
|
+
- Wed, 13 Jul 2011 14:02:06 GMT
|
144
|
+
nncoection:
|
145
|
+
- close
|
146
|
+
vary:
|
147
|
+
- Accept-Encoding,User-Agent
|
148
|
+
transfer-encoding:
|
149
|
+
- chunked
|
150
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-11-01\"><OperationRequest><RequestId>c2bf581a-3438-4db1-9dd2-14f0d6f882f1</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-11-01\"></Argument><Argument Name=\"Signature\" Value=\"w2ZbiXxB7Jb+SY8dzEttIxteOo+4zpj5ZcUf/BOsn4Y=\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2011-07-13T14:02:04Z\"></Argument></Arguments><RequestProcessingTime>0.0058080000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Small</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.jp/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Manufacturer>Univ of Minnesota Pr</Manufacturer><ProductGroup>Book</ProductGroup><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
151
|
+
http_version: "1.1"
|