sucker 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/README.md +21 -29
- data/lib/sucker/request.rb +9 -5
- data/lib/sucker/response.rb +1 -1
- data/lib/sucker/version.rb +1 -1
- data/spec/integration/multiple_locales_spec.rb +1 -1
- data/spec/unit/sucker/request_spec.rb +13 -0
- metadata +3 -43
- data/spec/fixtures/cassette_library/integration/alternate_versions.yml +0 -27
- data/spec/fixtures/cassette_library/integration/errors.yml +0 -27
- data/spec/fixtures/cassette_library/integration/france.yml +0 -27
- data/spec/fixtures/cassette_library/integration/images.yml +0 -27
- data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +0 -27
- data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +0 -27
- data/spec/fixtures/cassette_library/integration/item_search.yml +0 -27
- data/spec/fixtures/cassette_library/integration/japan.yml +0 -27
- data/spec/fixtures/cassette_library/integration/keyword_search.yml +0 -27
- data/spec/fixtures/cassette_library/integration/kindle.yml +0 -27
- data/spec/fixtures/cassette_library/integration/kindle_2.yml +0 -27
- data/spec/fixtures/cassette_library/integration/multiple_locales.yml +0 -157
- data/spec/fixtures/cassette_library/integration/power_search.yml +0 -27
- data/spec/fixtures/cassette_library/integration/related_items/child.yml +0 -27
- data/spec/fixtures/cassette_library/integration/related_items/parent.yml +0 -27
- data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +0 -27
- data/spec/fixtures/cassette_library/integration/twenty_items.yml +0 -27
- data/spec/fixtures/cassette_library/unit/sucker/request.yml +0 -32
- data/spec/fixtures/cassette_library/unit/sucker/response.yml +0 -27
- data/spec/support/amazon.yml +0 -3
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -3,10 +3,10 @@ Sucker
|
|
3
3
|
|
4
4
|
Sucker is a minimal Ruby wrapper to the [Amazon Product Advertising API](https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/main.html). It runs on [curb](http://github.com/taf2/curb) and [the Nokogiri implementation of the XML Mini module](http://github.com/rails/rails/blob/master/activesupport/lib/active_support/xml_mini/nokogiri.rb) in Active Support. It's fast and supports __the entire API__.
|
5
5
|
|
6
|
-
![Electrolux](
|
6
|
+
![Electrolux](https://github.com/papercavalier/sucker/raw/master/electrolux.jpg)
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
Usage
|
9
|
+
-----
|
10
10
|
|
11
11
|
Set up a worker.
|
12
12
|
|
@@ -17,52 +17,38 @@ Set up a worker.
|
|
17
17
|
|
18
18
|
Prepare a request.
|
19
19
|
|
20
|
-
asin_batch = %w{
|
21
|
-
0816614024 0143105825 0485113600 0816616779 0942299078
|
22
|
-
0816614008 144006654X 0486400360 0486417670 087220474X }
|
23
20
|
worker << {
|
24
21
|
"Operation" => "ItemLookup",
|
25
22
|
"IdType" => "ASIN",
|
26
|
-
"ItemId" =>
|
27
|
-
"ResponseGroup" =>
|
23
|
+
"ItemId" => some_asins,
|
24
|
+
"ResponseGroup" => "ItemAttributes" }
|
28
25
|
|
29
|
-
|
26
|
+
Get a response.
|
30
27
|
|
31
28
|
response = worker.get
|
32
29
|
|
33
|
-
|
34
|
-
|
35
|
-
p response.valid?,
|
36
|
-
response.code,
|
37
|
-
response.time,
|
38
|
-
response.body,
|
39
|
-
response.xml,
|
40
|
-
response.to_hash
|
41
|
-
|
42
|
-
Iterate over items in your item lookup.
|
43
|
-
|
44
|
-
response.each("Item") { |item| ... }
|
30
|
+
Make sure nothing went [awry](http://gloss.papercavalier.com/2010/11/01/amazon-call-throttling-demystified.html).
|
45
31
|
|
46
|
-
|
32
|
+
response.valid?
|
47
33
|
|
48
|
-
|
34
|
+
Now parse it.
|
49
35
|
|
50
|
-
|
51
|
-
|
52
|
-
|
36
|
+
items = response.map("Item") do |item|
|
37
|
+
# parse item
|
38
|
+
end
|
53
39
|
|
54
40
|
Repeat ad infinitum.
|
55
41
|
|
56
|
-
Check my
|
42
|
+
[Check my integration specs](http://github.com/papercavalier/sucker/tree/master/spec/integration/) for more detailed examples. See [twenty items](http://github.com/papercavalier/sucker/tree/master/spec/integration/twenty_items_spec.rb) and [multiple locales](http://github.com/papercavalier/sucker/tree/master/spec/integration/multiple_locales_spec.rb) for relatively advanced usage.
|
57
43
|
|
58
|
-
|
44
|
+
Read the source code and dive into the [Amazon API docs](https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/main.html).
|
59
45
|
|
60
46
|
Stubbing
|
61
47
|
--------
|
62
48
|
|
63
49
|
Use [VCR](http://github.com/myronmarston/vcr) to stub your requests.
|
64
50
|
|
65
|
-
|
51
|
+
Match URIs on host only and create a new cassette for each query. [This is how my VCR setup looks like](http://github.com/papercavalier/sucker/blob/master/spec/support/vcr.rb).
|
66
52
|
|
67
53
|
Compatibility
|
68
54
|
-------------
|
@@ -71,3 +57,9 @@ Specs pass against Ruby 1.8.7 and Ruby 1.9.2.
|
|
71
57
|
|
72
58
|
Sucker works seamlessly with or without Rails.
|
73
59
|
|
60
|
+
Sucker won't work on JRuby. (We got Curl under the hood. It's worth the trade-off.)
|
61
|
+
|
62
|
+
Afterword
|
63
|
+
---------
|
64
|
+
|
65
|
+
No DSL. No object mapping. Pure Nokogiri goodness.
|
data/lib/sucker/request.rb
CHANGED
@@ -64,14 +64,14 @@ module Sucker #:nodoc:
|
|
64
64
|
# worker.associate_tag = 'foo-bar'
|
65
65
|
#
|
66
66
|
def associate_tag=(token)
|
67
|
-
@associate_tags
|
68
|
-
|
69
|
-
tags
|
70
|
-
end
|
67
|
+
@associate_tags ||= {}
|
68
|
+
@associate_tags[locale.to_sym] = token
|
71
69
|
end
|
72
70
|
|
73
71
|
# Sets associate tags for all locales
|
74
72
|
#
|
73
|
+
# You need a distinct associate tag for each locale.
|
74
|
+
#
|
75
75
|
# tags = {
|
76
76
|
# :us => 'foo-bar-10',
|
77
77
|
# :uk => 'foo-bar-20',
|
@@ -166,7 +166,11 @@ module Sucker #:nodoc:
|
|
166
166
|
|
167
167
|
# Sets distinct AWS access keys for the locales
|
168
168
|
#
|
169
|
-
#
|
169
|
+
# You can use the same key on multiple venues. Caveat: Calls against (1) the US
|
170
|
+
# and Canada and (2) the UK, France, and Germany count against the same call
|
171
|
+
# rate quota.
|
172
|
+
#
|
173
|
+
# # keys = {
|
170
174
|
# :us => 'foo',
|
171
175
|
# :uk => 'bar',
|
172
176
|
# :de => 'baz',
|
data/lib/sucker/response.rb
CHANGED
data/lib/sucker/version.rb
CHANGED
@@ -32,7 +32,7 @@ module Sucker
|
|
32
32
|
|
33
33
|
context "when using threads to search all locales simultaneously" do
|
34
34
|
|
35
|
-
#
|
35
|
+
# Use this approach to be able to throttle requests individually.
|
36
36
|
|
37
37
|
it "returns matches for all locales" do
|
38
38
|
locales = %w{us uk de ca fr jp}
|
@@ -56,6 +56,19 @@ module Sucker
|
|
56
56
|
|
57
57
|
end
|
58
58
|
|
59
|
+
describe "#associate_tag=" do
|
60
|
+
|
61
|
+
it "sets the associate tag for the current locale" do
|
62
|
+
worker.associate_tag = "foo-bar"
|
63
|
+
associate_tags = worker.instance_variable_get(:@associate_tags)
|
64
|
+
|
65
|
+
associate_tags.keys.size.should eql 1
|
66
|
+
associate_tags[:us].should eql 'foo-bar'
|
67
|
+
worker.associate_tag.should eql 'foo-bar'
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
59
72
|
describe "#associate_tags=" do
|
60
73
|
|
61
74
|
it "sets associate tags for the locales" do
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 2
|
9
|
+
version: 1.1.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Hakan Ensari
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-11-
|
18
|
+
date: 2010-11-18 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -171,25 +171,6 @@ files:
|
|
171
171
|
- README.md
|
172
172
|
- CHANGELOG.md
|
173
173
|
- spec/fixtures/asins.txt
|
174
|
-
- spec/fixtures/cassette_library/integration/alternate_versions.yml
|
175
|
-
- spec/fixtures/cassette_library/integration/errors.yml
|
176
|
-
- spec/fixtures/cassette_library/integration/france.yml
|
177
|
-
- spec/fixtures/cassette_library/integration/images.yml
|
178
|
-
- spec/fixtures/cassette_library/integration/item_lookup/multiple.yml
|
179
|
-
- spec/fixtures/cassette_library/integration/item_lookup/single.yml
|
180
|
-
- spec/fixtures/cassette_library/integration/item_search.yml
|
181
|
-
- spec/fixtures/cassette_library/integration/japan.yml
|
182
|
-
- spec/fixtures/cassette_library/integration/keyword_search.yml
|
183
|
-
- spec/fixtures/cassette_library/integration/kindle.yml
|
184
|
-
- spec/fixtures/cassette_library/integration/kindle_2.yml
|
185
|
-
- spec/fixtures/cassette_library/integration/multiple_locales.yml
|
186
|
-
- spec/fixtures/cassette_library/integration/power_search.yml
|
187
|
-
- spec/fixtures/cassette_library/integration/related_items/child.yml
|
188
|
-
- spec/fixtures/cassette_library/integration/related_items/parent.yml
|
189
|
-
- spec/fixtures/cassette_library/integration/seller_listings_search.yml
|
190
|
-
- spec/fixtures/cassette_library/integration/twenty_items.yml
|
191
|
-
- spec/fixtures/cassette_library/unit/sucker/request.yml
|
192
|
-
- spec/fixtures/cassette_library/unit/sucker/response.yml
|
193
174
|
- spec/integration/alternate_versions_spec.rb
|
194
175
|
- spec/integration/errors_spec.rb
|
195
176
|
- spec/integration/france_spec.rb
|
@@ -205,7 +186,6 @@ files:
|
|
205
186
|
- spec/integration/seller_listing_search_spec.rb
|
206
187
|
- spec/integration/twenty_items_spec.rb
|
207
188
|
- spec/spec_helper.rb
|
208
|
-
- spec/support/amazon.yml
|
209
189
|
- spec/support/amazon.yml.example
|
210
190
|
- spec/support/amazon_credentials.rb
|
211
191
|
- spec/support/asins.rb
|
@@ -247,25 +227,6 @@ specification_version: 3
|
|
247
227
|
summary: A Ruby wrapper to the Amazon Product Advertising API
|
248
228
|
test_files:
|
249
229
|
- spec/fixtures/asins.txt
|
250
|
-
- spec/fixtures/cassette_library/integration/alternate_versions.yml
|
251
|
-
- spec/fixtures/cassette_library/integration/errors.yml
|
252
|
-
- spec/fixtures/cassette_library/integration/france.yml
|
253
|
-
- spec/fixtures/cassette_library/integration/images.yml
|
254
|
-
- spec/fixtures/cassette_library/integration/item_lookup/multiple.yml
|
255
|
-
- spec/fixtures/cassette_library/integration/item_lookup/single.yml
|
256
|
-
- spec/fixtures/cassette_library/integration/item_search.yml
|
257
|
-
- spec/fixtures/cassette_library/integration/japan.yml
|
258
|
-
- spec/fixtures/cassette_library/integration/keyword_search.yml
|
259
|
-
- spec/fixtures/cassette_library/integration/kindle.yml
|
260
|
-
- spec/fixtures/cassette_library/integration/kindle_2.yml
|
261
|
-
- spec/fixtures/cassette_library/integration/multiple_locales.yml
|
262
|
-
- spec/fixtures/cassette_library/integration/power_search.yml
|
263
|
-
- spec/fixtures/cassette_library/integration/related_items/child.yml
|
264
|
-
- spec/fixtures/cassette_library/integration/related_items/parent.yml
|
265
|
-
- spec/fixtures/cassette_library/integration/seller_listings_search.yml
|
266
|
-
- spec/fixtures/cassette_library/integration/twenty_items.yml
|
267
|
-
- spec/fixtures/cassette_library/unit/sucker/request.yml
|
268
|
-
- spec/fixtures/cassette_library/unit/sucker/response.yml
|
269
230
|
- spec/integration/alternate_versions_spec.rb
|
270
231
|
- spec/integration/errors_spec.rb
|
271
232
|
- spec/integration/france_spec.rb
|
@@ -281,7 +242,6 @@ test_files:
|
|
281
242
|
- spec/integration/seller_listing_search_spec.rb
|
282
243
|
- spec/integration/twenty_items_spec.rb
|
283
244
|
- spec/spec_helper.rb
|
284
|
-
- spec/support/amazon.yml
|
285
245
|
- spec/support/amazon.yml.example
|
286
246
|
- spec/support/amazon_credentials.rb
|
287
247
|
- spec/support/asins.rb
|
@@ -1,27 +0,0 @@
|
|
1
|
-
---
|
2
|
-
- !ruby/struct:VCR::HTTPInteraction
|
3
|
-
request: !ruby/struct:VCR::Request
|
4
|
-
method: :get
|
5
|
-
uri: http://ecs.amazonaws.co.uk:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0141044012&Operation=ItemLookup&ResponseGroup=AlternateVersions&Service=AWSECommerceService&Signature=szovmokeB8hwrcL8hzYsWKJOk3sfzWPmFj1QPtdmIz0=&Timestamp=2010-11-16T08:35:16Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:16 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"?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Jakarta Commons-HttpClient/3.0.1"></Header></HTTPHeaders><RequestId>1Y7VW1NF0X0EM5X629Z6</RequestId><Arguments><Argument Name="AssociateTag"></Argument><Argument Name="ItemId" Value="0141044012"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="szovmokeB8hwrcL8hzYsWKJOk3sfzWPmFj1QPtdmIz0="></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="2010-11-16T08:35:16Z"></Argument><Argument Name="Version" Value="2010-09-01"></Argument></Arguments><RequestProcessingTime>0.0491800308227539</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>0141044012</ItemId><ResponseGroup>AlternateVersions</ResponseGroup></ItemLookupRequest></Request><Item><ASIN>0141044012</ASIN><AlternateVersions><AlternateVersion><ASIN>B003L7YCP8</ASIN><Title>The Pursuit of Love (Unabridged)</Title><Binding>Audio Download</Binding></AlternateVersion><AlternateVersion><ASIN>0307740811</ASIN><Title>The Pursuit of Love (Vintage)</Title><Binding>Paperback</Binding></AlternateVersion><AlternateVersion><ASIN>B003AYZBU2</ASIN><Title>The Pursuit of Love</Title><Binding>Kindle Edition</Binding></AlternateVersion></AlternateVersions></Item></Items></ItemLookupResponse>
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
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=&Condition=All&IdType=ASIN&ItemId=0816614024,0007218095,0007218176&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=OnamTOJ6C1x8JwN9uZswCfFHNuFg9RXVidx5/ixnLeY=&Timestamp=2010-11-16T08:35:16Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:16 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\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>b1f12392-91dd-4fca-8c55-64cdf50b3c5b</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"OnamTOJ6C1x8JwN9uZswCfFHNuFg9RXVidx5/ixnLeY=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0007218095,0007218176\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:16Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.1363530000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0007218095</ItemId><ItemId>0007218176</ItemId><ResponseGroup>ItemAttributes</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><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218176 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error></Errors></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/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-Capitalism-Schizophrenia/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><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes></Item></Items></ItemLookupResponse>"
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
1
|
-
---
|
2
|
-
- !ruby/struct:VCR::HTTPInteraction
|
3
|
-
request: !ruby/struct:VCR::Request
|
4
|
-
method: :get
|
5
|
-
uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&Condition=All&IdType=ASIN&ItemId=2070119874&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=Q9qSBMKgeCbhW3TqDtT+tmqUXaJ8EqXrTtFi7URyhxM=&Timestamp=2010-11-16T08:35:16Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:16 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\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ef53c3fb-51ac-4f07-bc6a-e98e16c6eae8</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemId\" Value=\"2070119874\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:16Z\"></Argument><Argument Name=\"Signature\" Value=\"Q9qSBMKgeCbhW3TqDtT+tmqUXaJ8EqXrTtFi7URyhxM=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.1214850000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>2070119874</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>2070119874</ASIN><DetailPageURL>http://www.amazon.fr/Larch%C3%A9ologie-du-savoir-Michel-Foucault/dp/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2070119874</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2070119874%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2070119874%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink></ItemLinks><ItemAttributes><Author>Michel Foucault</Author><Binding>Broch\xC3\xA9</Binding><EAN>9782070119875</EAN><ISBN>2070119874</ISBN><Label>Editions Gallimard</Label><Languages><Language><Name>Fran\xC3\xA7ais</Name><Type>Unknown</Type></Language><Language><Name>Fran\xC3\xA7ais</Name><Type>Original Language</Type></Language></Languages><ListPrice><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></ListPrice><Manufacturer>Editions Gallimard</Manufacturer><NumberOfPages>288</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">79</Height><Length Units=\"hundredths-inches\">748</Length><Weight Units=\"hundredths-pounds\">62</Weight><Width Units=\"hundredths-inches\">488</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-02-07</PublicationDate><Publisher>Editions Gallimard</Publisher><Studio>Editions Gallimard</Studio><Title>L'arch\xC3\xA9ologie du savoir</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></LowestUsedPrice><TotalNew>6</TotalNew><TotalUsed>1</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>7</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>A1EOXQT1GBGF1E</MerchantId><Name>chapitre_librairie</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1EOXQT1GBGF1E</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>145379</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DJLuVFQ7DoQhSFE4tlVr%2Be%2BTEou9WneOk%2BwEL0ArMk3FOdcR78JxQbWQ%2B5JiOp54u9bg6dhy678QZs%2BQfantShVKHk75eDFU0DHx0zOAE6VBI0%2Fxtkl%2Fh26w%2FQ%2BEEwxrg8eor0kVKkk%3D</OfferListingId><ExchangeId>Y14M5010332M5161003</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3G3PNXBCDB0DW</MerchantId><Name>chapitre_libraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3G3PNXBCDB0DW</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>19734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2Ff6loIyZMcJYu7%2FHjckK4kYsFWOnSv7TTvXqCZIQGkj0wx681hvzrgj0ShOBYhaUP4eY6ICpOnwhDaGMYSFU3%2FdWi4kaRj6dNxZZ5FgN407FPbXNFH2kj4PwdEm%2BIqQujXPO8tyJ3Ts%3D</OfferListingId><ExchangeId>Y13M3877299M3863973</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6FK5RDHNB96</MerchantId><Name>Amazon.fr</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6FK5RDHNB96</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>kj9J%2Bug4%2FUhdIx8WxaAU1BXH1pW2l28uzqerxkyTSxSZKDWbJ9nNjiu6l9AhzC4%2BDP32YI82lEvxVumogMyHexP27rDbtM6%2F</OfferListingId><Price><Amount>1046</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,46</FormattedPrice></Price><AmountSaved><Amount>54</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,54</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Habituellement exp\xC3\xA9di\xC3\xA9 sous 24 h</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ACXHY5958BU5U</MerchantId><Name>quartierlatinlibraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=ACXHY5958BU5U</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2578</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Quartier Latin. Libraire \xC3\xA0 Saint Etienne.... 40 000 r\xC3\xA9f\xC3\xA9rences en stock... Exp\xC3\xA9dition sous 24 \xC3\xA0 48 heures... Lettres anciennes et modernes. Histoire. D\xC3\xA9couvertes. Sciences humaines. Philosophie. Litt\xC3\xA9ratures polici\xC3\xA8res.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Qhr1WE9gWcDc%2FYRpUl%2FDit0Opx0YkA7dbhtN2A5w9Md2ZlC40PNPo5xBmmmZ7r5qVxsJ4u%2Fcfhz%2BmWW5Lnt01QpppMcZHgQVzndzTWpbEev4VvNLLFdMSdPCx6uwS7h8g8D%2B6ASYDPo%3D</OfferListingId><ExchangeId>Y19M2629467M6802798</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ERDFR0BEJ3HJ</MerchantId><Name>librairie_coiffard</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3ERDFR0BEJ3HJ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>14297</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Q4s99mDRMhIAaj3fdoYj0nhze%2Fj%2BqfgrF6ga5327uwZ%2FhtYLfGSdTM%2BHdA2V%2FniT4N0JNQ28P0oFR5DBrS2CURfHL%2BMgrrI%2Ff2mpeDOx79FqhTsrEs5FAkQSbi2jTpknsOcNrVO5obI%3D</OfferListingId><ExchangeId>Y15M4375369M8794716</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6O0DTKBQ892</MerchantId><Name>livres_en_stocks</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6O0DTKBQ892</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5736</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>1P0N0SggdZE1%2FHHyBbmkdwRLqDaySRxORry6eQh1kPeQ%2FmPXmcFPJTNqgDXTFbDlVMeEetmzFFnu1jXIqnDhZTZVoqSzHpez1Mgg8BFPE5w%2FKvL%2BVSZODlefEgwn7%2FsVFA9qRJCXrKc%3D</OfferListingId><ExchangeId>Y16M6500383M0666961</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2NQCJQALMD64M</MerchantId><Name>librairie_ventdouest</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2NQCJQALMD64M</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>8413</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>HJUAPpww7hdkhbT97k%2FWj7eS27l17RhGUMXLlOySIdmJIQn0BtuAnLKBBwU2FFQLEG1TrOzOhKeRTBdU0jxwVIUdfqn8wAYHYbE22XE5MPg4F2gv33WsBIUDLJL77LvILApfBdhN5Rw%3D</OfferListingId><ExchangeId>Y20M0526421M6342630</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
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&ResponseGroup=Images&Service=AWSECommerceService&Signature=vZKyAx4pe52A8Szf+sMiBwx9BnZootA+mAFRRYprNIc=&Timestamp=2010-11-16T08:35:17Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:17 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" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><RequestId>9ef68274-0955-4598-a4c8-9f2ba4b63125</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="vZKyAx4pe52A8Szf+sMiBwx9BnZootA+mAFRRYprNIc="></Argument><Argument Name="AssociateTag"></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="ItemId" Value="0816614024"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="0ZVSQ33MDFPQS8H2PM02"></Argument><Argument Name="Timestamp" Value="2010-11-16T08:35:17Z"></Argument><Argument Name="ResponseGroup" Value="Images"></Argument></Arguments><RequestProcessingTime>0.0082650000000000</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>Images</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">74</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage></ImageSet></ImageSets></Item></Items></ItemLookupResponse>
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
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=&Condition=All&IdType=ASIN&ItemId=0816614024,0143105825&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=nPP5SGd//QOtdRj1607wMzlsCmiw3lRAvSwsujJEB4Q=&Timestamp=2010-11-16T08:35:17Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:18 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\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>65f2604e-9221-4a0f-a489-7aece42e5f30</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"nPP5SGd//QOtdRj1607wMzlsCmiw3lRAvSwsujJEB4Q=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0143105825\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:17Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.1609450000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0143105825</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/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-Capitalism-Schizophrenia/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><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1377</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.77</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>23</TotalNew><TotalUsed>25</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>49</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A1HYNQNUU203U6</MerchantId><Name>Allgreatdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1HYNQNUU203U6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>257</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>HAS LOTS OF WEAR AND SOME WRITING</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5C%2B74qDAkr5nSsPBj%2BxSRuBTjM5%2FF7xv4Geg8d3h1NcToxxynayBrwwDSDnOIaf1i%2BBy2%2FOStYx7MSmwmNPBZeSYBkWcLdBrSSAfvnxwaj9JlKUR3ogzyX99ysVO%2FXXX89i3t5TcA4FZ636Mrg8vTw%3D%3D</OfferListingId><ExchangeId>Y18M1601461M6417403</ExchangeId><Price><Amount>1377</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.77</FormattedPrice></Price><AmountSaved><Amount>1123</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.23</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A26J6JNN8TGTL9</MerchantId><Name>internationalbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A26J6JNN8TGTL9</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>161710</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Standard used condition. Thousands of books shipped daily!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tEwww9XiHT%2FA9nlam9TsPlfGuxyZtQuEAKwy3wjv%2B0jciMtH7Ob4n9pBdS%2FAVmdwgvxwXwO8pqLWiGVfU12y2ZiQskneoYToqDMQqZ05FNjSp%2FFGL%2FtRiKbFD2dFWUWdHNEYRH%2Bo824%3D</OfferListingId><ExchangeId>Y20M5045579M0716901</ExchangeId><Price><Amount>1387</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.87</FormattedPrice></Price><AmountSaved><Amount>1113</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.13</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A24FNSZCMCD126</MerchantId><Name>Ivy_League_Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A24FNSZCMCD126</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CT</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>6244</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>In a good to very good condition. A copy that has been read, but remains in clean condition. All pages are intact, and the cover is intact (including dust cover, if applicable). The spine may show signs of wear. Pages can include limited notes and highlighting, and the copy can include \"From the library of\" labels. WE HAVE BEEN RATED AMONG THE TOP HOLIDAY SELLERS FOR 2009 BASED ON OUTSTANDING PERFORMANCE ON THE BASIS OF NET SALES WITH OUR CUSTOMER SATISFACTION METRICS RECEIVING THE HIGHEST MARKS. Shipping within 24 hours Monday-Friday. 100% Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>I9b0oW0YrW6Iaq36d9Rel5oX6Q6abDp7XhpnYR9BI4lh7J%2BL6yIqjBu0kz2%2FZmWo4LgoZfCQeoFzVCZku9DuG9R%2FGE4WPiFgn20eEE0CX3dtfF%2FktiN7OM2vORBUlwpvXOEoe%2BP2kvwIqr9A1gA1Dw%3D%3D</OfferListingId><ExchangeId>Y13M6702794M0128387</ExchangeId><Price><Amount>1421</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.21</FormattedPrice></Price><AmountSaved><Amount>1079</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.79</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AG3758TNHVZC4</MerchantId><Name>Wildwednesday</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AG3758TNHVZC4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>r90HrEF6hLiCdVR2DksM5lVpo3YLegF6x7%2FzN2rphWmi%2BYaJrP%2FtPCNxU3cUHvrP4EIGmZdMlHVA%2FACtKMjotkqh5EXQhECIeCwrspjPYjQ%2FzCqKE3ggN85%2FAKvE4uD4rhmBsKh2HjTmMwNrothEGg%3D%3D</OfferListingId><ExchangeId>Y19M4862378M4836354</ExchangeId><Price><Amount>1500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.00</FormattedPrice></Price><AmountSaved><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASWK2P83YYFWO</MerchantId><Name>textbooksnow-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASWK2P83YYFWO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>40600</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Inventory subject to prior sale. Used items have varying degrees of wear, highlighting, etc. and may not include supplements such as infotrac or other web access codes. Expedited orders cannot be sent to PO Box. Sorry, not able to ship to APO, FPO, Alaska, and Hawaii.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>kyIZsmytOlsApNCUVNVVMW8%2BysJxpjsl3%2FhuoA9CSRBRWrSmcOVO96YSuDeQc2DrCypHkuf3y7VNed%2FYsxb%2BzvVIsCrHUjuuahzlP6deg99ltAjf6i3b5Vf%2FHOGcf962THwiFjSQIQI%3D</OfferListingId><ExchangeId>Y19M0508549M2284143</ExchangeId><Price><Amount>1588</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.88</FormattedPrice></Price><AmountSaved><Amount>912</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.12</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>185890</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Shows definite wear, and perhaps considerable marking on inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pfzK%2B8ykdTqRPYcT9vRB3dU%2BpWOyrI1%2FWTaEuq%2BRzyl%2BY0JLmbl1NJC5EUD2o3qP3aRMsFM2CuQWq%2FXR0LzTh3jHW0xGbZc3Au1e1wYUsevg9F0JgfOmWjXhY0qinW7BQBoeUSfe19Y%3D</OfferListingId><ExchangeId>Y18M1583729M8817691</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AACSFD8GA6SAY</MerchantId><Name>lb7852</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AACSFD8GA6SAY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>477</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Excellent condition - Looks New. Paperback. Pages are excellent. No marks or tears.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>IxPgnoQuHrtoHJzqNhnBhhs2thQT94utFPfT3%2F5Kep3jDyQ2Igu79zTKCofq5a8dMlmON947a66k%2BBZyD1bYIKX%2FmOy%2FoVBIlT8Qhwl6%2FzMQn625P9X6lRl%2BGf627QQTrbgeK6ywkcCsJBFEgEOrtQ%3D%3D</OfferListingId><ExchangeId>Y14M5841050M5242811</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2F832NORIRVD1</MerchantId><Name>magus_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2F832NORIRVD1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>648</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>University of Minnesota Press; 1987; 1.35 x 8.99 x 6.08 Inches; Paperback; Very Good-; light shelfwear. corners bumped and bent or creased, wraps scuffed and smudged with heavy wear to edges, creasing to front, page blocks have light stains and smudging, previous owner's name in pen to half title page, wraps pulling away from inside pages, binding tight, no marks to the text or other serious flaws.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Te6aenvaLqRSSnQeXgqodVCCjuZYNiGvaRfyOZsKSRUcXEh%2F6DWWz6%2BaE3YiRYb1dPjFSaf%2FxFZ3PQc7EiqozhDjTxxift5%2FxgD2D2g419vig9Kc97BLEu4KJNH%2BryoyRGS5%2F6w%2FOGktMM7WIs1L9w%3D%3D</OfferListingId><ExchangeId>Y12M0913140M4396102</ExchangeId><Price><Amount>1700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.00</FormattedPrice></Price><AmountSaved><Amount>800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.00</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2YFMNUPBUC8MA</MerchantId><Name>Cambridge Booksellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2YFMNUPBUC8MA</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>155</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Eligible for Amazon's FREE Super Saver/Prime Shipping, 24/7 Customer Service, and package tracking. 100% Satisfaction Guarantee. Very good condition with some shelfwear. Pages and book may contain some markings.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>un5qqn4IlE5MZHsW733VIlLEj56I5N3tKYgTAbtits4P9xaEj%2FEpzff%2Fs2AV2qYuKoJGxk8MAR1ihhFqQjXtkoHqeYosOhe%2FLyLOdTw%2BtvVx%2B3%2FGaR3%2Fu72oG97Ijq%2FDFcaR2R%2FKrXQkVrC8TfBgJA%3D%3D</OfferListingId><ExchangeId>Y20M6249924M2248742</ExchangeId><Price><Amount>1799</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.99</FormattedPrice></Price><AmountSaved><Amount>701</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.01</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>4KQwDmXHC9LXUAxU1EF9FEUo%2Bdl70B%2F18ts4nQFSs0QoPZhwP%2ByZPA4BmlHUCJlLT8H2tuV6uls%2Fjy5B%2B0h8EmTmKY6eBAxP</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0143105825</ASIN><DetailPageURL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0143105825</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/tech-data/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0143105825%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Robert Hurley</Creator><Creator Role=\"Translator\">Mark Seem</Creator><Creator Role=\"Introduction\">Mark Seem</Creator><Creator Role=\"Translator\">Helen Lane</Creator><Creator Role=\"Preface\">Michel Foucault</Creator><DeweyDecimalNumber>616</DeweyDecimalNumber><EAN>9780143105824</EAN><Feature>ISBN13: 9780143105824</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0143105825</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Penguin Classics</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.00</FormattedPrice></ListPrice><Manufacturer>Penguin Classics</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>432</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">118</Height><Length Units=\"hundredths-inches\">819</Length><Weight Units=\"hundredths-pounds\">79</Weight><Width Units=\"hundredths-inches\">543</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-05-26</PublicationDate><Publisher>Penguin Classics</Publisher><Studio>Penguin Classics</Studio><Title>Anti-Oedipus: Capitalism and Schizophrenia (Penguin Classics)</Title><TradeInValue><Amount>261</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.61</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1190</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.90</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>15000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.00</FormattedPrice></LowestCollectiblePrice><TotalNew>31</TotalNew><TotalUsed>13</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>45</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A1DKTB3FGMXCS3</MerchantId><Name>TOTAL BOOKS</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1DKTB3FGMXCS3</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>1170</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New Book. Standard Delivery takes up to 14 business days. 21 Business days for HI, AK, APO addresses.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iK%2B08k%2BuOA2YuBxSAfyd34SuGzC3pkxIbjoeYHkf5fBL6j%2FAyBPuIjupWp6yc2v6F%2FG9PITRZXndk74OzK9a9m55KGhtav2p%2FgHnqbkC12BihcmBaZnVNO5Wd41PCP8041Oz0MS3wFS%2F77YUbHqMVg%3D%3D</OfferListingId><ExchangeId>Y16M3506208M7136616</ExchangeId><Price><Amount>1190</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.90</FormattedPrice></Price><AmountSaved><Amount>1010</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.10</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>35301</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New & In Stock. 100% 30-Day Money Back. Direct from our warehouse. 5+ million customers served-In business since 1997. Happy Customers is Our #1 Goal. Toll Free Support. 4 to 14 business day Delivery Time by US Post Office.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DUNfrqlnbsxmonvYuFSLc4qoCkgYbIgOJ1AX7eRUwjS1l7o%2F4%2B9E96AxFvbcxTMOWX9gQvvd8FIaSm%2BWFgZ3Ro%2BuPFPn%2Fx8idftTa%2FbbNLj2xBdpp5Ko2jOKZRiW7NlNPo6Ho4qLBIg%3D</OfferListingId><ExchangeId>Y11M1567708M8523810</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>491</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>35301</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New & In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5T%2BfDYxxXoD1Zwb4NbQA%2BpLcAKu3j7aNQy1xrEoSqSVbVDeuAig69T3flL4LS0rV6HDtTtv6WofQ8WospD8x6wt%2FMqoJyoSNp%2BBqoUFiDEqHJFbwfV9qOuY6Q1SwnxpvFtXqVnxgLVc%3D</OfferListingId><ExchangeId>Y11M3848980M3444090</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>496</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>31383</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pDhkD5cJEBLabbS3u%2Bu0Llmz056TuR9KF%2BJk5W2I0Kv67NfUjzGmE1Qx36isRQ9OtaFpG4lnicICzJ5GZdP7RV4U64ohZRCyXCD4gwgBsazIer5knMMz9GZsc1F2rOBRQkfs%2BRgW4qQ%3D</OfferListingId><ExchangeId>Y12M1181029M9303018</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>26058</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>2oZDELtFc1lSB%2FukgKoISrgArIxkm6%2BHfW3%2B5Os0lpA6S5j%2BG%2FNVKtIXw7Pon8hdzQHo3be0Y4%2BpgAwOhI5wk39KnEUpH9goK49rahCQLbZFQTbO0GhJ5lw%2FRam27SHtxu1q2CZmiHy9nZdRP0idZA%3D%3D</OfferListingId><ExchangeId>Y11M3981673M7711499</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17396</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ywkOQpKsA3Y696TABb39%2FS0hvJlGNAjLB0uIXVXOYqodGQYUeiQTajoDhuZSU8G2sB%2F8b%2FROGqQCkhxWpBKJbrYlbvP%2FnwU7%2BKnNVF06619Zc%2FP9cGtdTn4cIXz%2FFxBGq%2B3zoch7aIo%3D</OfferListingId><ExchangeId>Y11M1470360M3110989</ExchangeId><Price><Amount>1280</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.80</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HY4G4FBZK8H4</MerchantId><Name>BuriedintheSand</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HY4G4FBZK8H4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CO</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>C%2FfZvAbV78N2eSB6NGjq1%2BjblJtvNjG3Eq1QllJvLDa7XKixGxF97zvSvZWArLWPV1B2UA7rKJch7ApROLzc1QU2F8Iu1jNqK3Eb1l0o39zmlzuNE8P1pSeMse44X%2BYWSQQYIRTLws9fY6nHDH%2Fq5Q%3D%3D</OfferListingId><ExchangeId>Y19M6577051M0679616</ExchangeId><Price><Amount>1300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.00</FormattedPrice></Price><AmountSaved><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17396</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>kDY3ACxD02DBii7iyMSvrKoCJSpamohLWOnHDFn1w0LKRJEfgOXsMMfE9Cb600bwIzeZVE9311XHLiMlyz0jxdB18QQD%2Fd5fNEsuZd0MmsW%2FPhWdKFpc5ooSQIgjivMojtQ6iRYrFrM%3D</OfferListingId><ExchangeId>Y11M0209708M5718954</ExchangeId><Price><Amount>1329</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.29</FormattedPrice></Price><AmountSaved><Amount>871</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.71</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>58025</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>S6Ph6ad1JMYnZ1ejPzelWOTtIe037UP6FoWnDkix8GVE0cUyU4O1H2aQ9Ku8TDPsjcGDMDCYjL%2Fnz76ykmlfhPFfKsvS9KZsMP23F8RZnCzLMI0edXnrvtW1H4ONNR1PDPPUT9k97DjvL3eig6nHsg%3D%3D</OfferListingId><ExchangeId>Y11M4816761M6624986</ExchangeId><Price><Amount>1375</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.75</FormattedPrice></Price><AmountSaved><Amount>825</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.25</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>10</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1SSUO20DOKMFO</MerchantId><Name>BooKnackrh</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1SSUO20DOKMFO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>SC</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>23341</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>-/-INTERNATIONAL SHIPPING-\\- SHIPS from 5 locations based on your Zip Code and availability! (PA TN IN OR SC) *-* Gift Quality *-* Orders Processed Immediately! - We get your book to you Very Quickly! 53.16</ConditionNote></OfferAttributes><OfferListing><OfferListingId>FJ8orYy8b1GKi3MYG8X6FkJ52VEHnDAjtTMUseoDa6%2FAjmpuGXSRK%2BQDpyV2ZgdA282Q%2BVDQvNmF5%2BILV7HOEJowgl98R%2Ft4thuoqsnMc6gC9QzcGAFCq2kbtNry6%2BMmghnzz0tzJWU%3D</OfferListingId><ExchangeId>Y11M6412880M6527837</ExchangeId><Price><Amount>1376</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.76</FormattedPrice></Price><AmountSaved><Amount>824</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.24</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
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=&Condition=All&IdType=ASIN&ItemId=0816614024&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=hseyirW5NtSJKZPnF9aQ0UFcpiHgO3LTNwyM75J+wU0=&Timestamp=2010-11-16T08:35:17Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:17 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\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>1499b702-d99d-468d-941c-0821791fe4fe</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"hseyirW5NtSJKZPnF9aQ0UFcpiHgO3LTNwyM75J+wU0=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:17Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.1084620000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/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-Capitalism-Schizophrenia/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><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1377</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.77</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>23</TotalNew><TotalUsed>25</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>49</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A1HYNQNUU203U6</MerchantId><Name>Allgreatdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1HYNQNUU203U6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>257</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>HAS LOTS OF WEAR AND SOME WRITING</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5C%2B74qDAkr5nSsPBj%2BxSRuBTjM5%2FF7xv4Geg8d3h1NcToxxynayBrwwDSDnOIaf1i%2BBy2%2FOStYx7MSmwmNPBZeSYBkWcLdBrSSAfvnxwaj9JlKUR3ogzyX99ysVO%2FXXX89i3t5TcA4FZ636Mrg8vTw%3D%3D</OfferListingId><ExchangeId>Y18M1601461M6417403</ExchangeId><Price><Amount>1377</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.77</FormattedPrice></Price><AmountSaved><Amount>1123</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.23</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A26J6JNN8TGTL9</MerchantId><Name>internationalbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A26J6JNN8TGTL9</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>161685</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Standard used condition. Thousands of books shipped daily!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tEwww9XiHT%2FA9nlam9TsPlfGuxyZtQuEAKwy3wjv%2B0jciMtH7Ob4n9pBdS%2FAVmdwgvxwXwO8pqLWiGVfU12y2ZiQskneoYToqDMQqZ05FNjSp%2FFGL%2FtRiKbFD2dFWUWdHNEYRH%2Bo824%3D</OfferListingId><ExchangeId>Y20M5045579M0716901</ExchangeId><Price><Amount>1387</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.87</FormattedPrice></Price><AmountSaved><Amount>1113</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.13</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A24FNSZCMCD126</MerchantId><Name>Ivy_League_Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A24FNSZCMCD126</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CT</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>6243</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>In a good to very good condition. A copy that has been read, but remains in clean condition. All pages are intact, and the cover is intact (including dust cover, if applicable). The spine may show signs of wear. Pages can include limited notes and highlighting, and the copy can include \"From the library of\" labels. WE HAVE BEEN RATED AMONG THE TOP HOLIDAY SELLERS FOR 2009 BASED ON OUTSTANDING PERFORMANCE ON THE BASIS OF NET SALES WITH OUR CUSTOMER SATISFACTION METRICS RECEIVING THE HIGHEST MARKS. Shipping within 24 hours Monday-Friday. 100% Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>I9b0oW0YrW6Iaq36d9Rel5oX6Q6abDp7XhpnYR9BI4lh7J%2BL6yIqjBu0kz2%2FZmWo4LgoZfCQeoFzVCZku9DuG9R%2FGE4WPiFgn20eEE0CX3dtfF%2FktiN7OM2vORBUlwpvXOEoe%2BP2kvwIqr9A1gA1Dw%3D%3D</OfferListingId><ExchangeId>Y13M6702794M0128387</ExchangeId><Price><Amount>1421</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.21</FormattedPrice></Price><AmountSaved><Amount>1079</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.79</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AG3758TNHVZC4</MerchantId><Name>Wildwednesday</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AG3758TNHVZC4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>r90HrEF6hLiCdVR2DksM5lVpo3YLegF6x7%2FzN2rphWmi%2BYaJrP%2FtPCNxU3cUHvrP4EIGmZdMlHVA%2FACtKMjotkqh5EXQhECIeCwrspjPYjQ%2FzCqKE3ggN85%2FAKvE4uD4rhmBsKh2HjTmMwNrothEGg%3D%3D</OfferListingId><ExchangeId>Y19M4862378M4836354</ExchangeId><Price><Amount>1500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.00</FormattedPrice></Price><AmountSaved><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASWK2P83YYFWO</MerchantId><Name>textbooksnow-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASWK2P83YYFWO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>40598</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Inventory subject to prior sale. Used items have varying degrees of wear, highlighting, etc. and may not include supplements such as infotrac or other web access codes. Expedited orders cannot be sent to PO Box. Sorry, not able to ship to APO, FPO, Alaska, and Hawaii.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>kyIZsmytOlsApNCUVNVVMW8%2BysJxpjsl3%2FhuoA9CSRBRWrSmcOVO96YSuDeQc2DrCypHkuf3y7VNed%2FYsxb%2BzvVIsCrHUjuuahzlP6deg99ltAjf6i3b5Vf%2FHOGcf962THwiFjSQIQI%3D</OfferListingId><ExchangeId>Y19M0508549M2284143</ExchangeId><Price><Amount>1588</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.88</FormattedPrice></Price><AmountSaved><Amount>912</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.12</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>185854</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Shows definite wear, and perhaps considerable marking on inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pfzK%2B8ykdTqRPYcT9vRB3dU%2BpWOyrI1%2FWTaEuq%2BRzyl%2BY0JLmbl1NJC5EUD2o3qP3aRMsFM2CuQWq%2FXR0LzTh3jHW0xGbZc3Au1e1wYUsevg9F0JgfOmWjXhY0qinW7BQBoeUSfe19Y%3D</OfferListingId><ExchangeId>Y18M1583729M8817691</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AACSFD8GA6SAY</MerchantId><Name>lb7852</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AACSFD8GA6SAY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>477</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Excellent condition - Looks New. Paperback. Pages are excellent. No marks or tears.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>IxPgnoQuHrtoHJzqNhnBhhs2thQT94utFPfT3%2F5Kep3jDyQ2Igu79zTKCofq5a8dMlmON947a66k%2BBZyD1bYIKX%2FmOy%2FoVBIlT8Qhwl6%2FzMQn625P9X6lRl%2BGf627QQTrbgeK6ywkcCsJBFEgEOrtQ%3D%3D</OfferListingId><ExchangeId>Y14M5841050M5242811</ExchangeId><Price><Amount>1695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.95</FormattedPrice></Price><AmountSaved><Amount>805</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.05</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2F832NORIRVD1</MerchantId><Name>magus_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2F832NORIRVD1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>648</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>University of Minnesota Press; 1987; 1.35 x 8.99 x 6.08 Inches; Paperback; Very Good-; light shelfwear. corners bumped and bent or creased, wraps scuffed and smudged with heavy wear to edges, creasing to front, page blocks have light stains and smudging, previous owner's name in pen to half title page, wraps pulling away from inside pages, binding tight, no marks to the text or other serious flaws.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Te6aenvaLqRSSnQeXgqodVCCjuZYNiGvaRfyOZsKSRUcXEh%2F6DWWz6%2BaE3YiRYb1dPjFSaf%2FxFZ3PQc7EiqozhDjTxxift5%2FxgD2D2g419vig9Kc97BLEu4KJNH%2BryoyRGS5%2F6w%2FOGktMM7WIs1L9w%3D%3D</OfferListingId><ExchangeId>Y12M0913140M4396102</ExchangeId><Price><Amount>1700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.00</FormattedPrice></Price><AmountSaved><Amount>800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.00</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2YFMNUPBUC8MA</MerchantId><Name>Cambridge Booksellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2YFMNUPBUC8MA</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>155</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Eligible for Amazon's FREE Super Saver/Prime Shipping, 24/7 Customer Service, and package tracking. 100% Satisfaction Guarantee. Very good condition with some shelfwear. Pages and book may contain some markings.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>un5qqn4IlE5MZHsW733VIlLEj56I5N3tKYgTAbtits4P9xaEj%2FEpzff%2Fs2AV2qYuKoJGxk8MAR1ihhFqQjXtkoHqeYosOhe%2FLyLOdTw%2BtvVx%2B3%2FGaR3%2Fu72oG97Ijq%2FDFcaR2R%2FKrXQkVrC8TfBgJA%3D%3D</OfferListingId><ExchangeId>Y20M6249924M2248742</ExchangeId><Price><Amount>1799</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.99</FormattedPrice></Price><AmountSaved><Amount>701</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.01</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>4KQwDmXHC9LXUAxU1EF9FEUo%2Bdl70B%2F18ts4nQFSs0QoPZhwP%2ByZPA4BmlHUCJlLT8H2tuV6uls%2Fjy5B%2B0h8EmTmKY6eBAxP</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
-
http_version: "1.1"
|
@@ -1,27 +0,0 @@
|
|
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=&Author=Orwell&Operation=ItemSearch&SearchIndex=Books&Service=AWSECommerceService&Signature=GEmS/Q4SmuaoWaIZ8fHjvL3qW/YrrB/u14uHsKU018w=&Timestamp=2010-11-16T08:35:19Z&Version=2010-09-01
|
6
|
-
body:
|
7
|
-
headers: {}
|
8
|
-
|
9
|
-
response: !ruby/struct:VCR::Response
|
10
|
-
status: !ruby/struct:VCR::ResponseStatus
|
11
|
-
code: 200
|
12
|
-
message: OK
|
13
|
-
headers:
|
14
|
-
date:
|
15
|
-
- Tue, 16 Nov 2010 08:35:19 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\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>08c901b7-336b-4c6f-8d28-6868121bd5c0</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Author\" Value=\"Orwell\"></Argument><Argument Name=\"Signature\" Value=\"GEmS/Q4SmuaoWaIZ8fHjvL3qW/YrrB/u14uHsKU018w=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:19Z\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument></Arguments><RequestProcessingTime>0.1604110000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Author>Orwell</Author><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><MerchantId>Amazon</MerchantId><ResponseGroup>Small</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>1334</TotalResults><TotalPages>134</TotalPages><Item><ASIN>0451524934</ASIN><DetailPageURL>http://www.amazon.com/1984-Signet-Classics-George-Orwell/dp/0451524934%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0451524934</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/1984-Signet-Classics-George-Orwell/dp/tech-data/0451524934%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0451524934%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0451524934%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0451524934%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0451524934%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0451524934%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0451524934%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451524934</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Afterword\">Erich Fromm</Creator><Manufacturer>New American Library</Manufacturer><ProductGroup>Book</ProductGroup><Title>1984 (Signet Classics)</Title></ItemAttributes></Item><Item><ASIN>0451526341</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-George-Orwell/dp/0451526341%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0451526341</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-George-Orwell/dp/tech-data/0451526341%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0451526341%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0451526341%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0451526341%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0451526341%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0451526341%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0451526341%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0451526341</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Preface\">Russell Baker</Creator><Manufacturer>Signet Classics</Manufacturer><ProductGroup>Book</ProductGroup><Title>Animal Farm</Title></ItemAttributes></Item><Item><ASIN>B003ZX868W</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-and-1984-ebook/dp/B003ZX868W%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003ZX868W</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-and-1984-ebook/dp/tech-data/B003ZX868W%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003ZX868W%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003ZX868W%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003ZX868W%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003ZX868W%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003ZX868W%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003ZX868W%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003ZX868W</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Animal Farm and 1984</Title></ItemAttributes></Item><Item><ASIN>0156421178</ASIN><DetailPageURL>http://www.amazon.com/Homage-Catalonia-George-Orwell/dp/0156421178%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0156421178</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Homage-Catalonia-George-Orwell/dp/tech-data/0156421178%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0156421178%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0156421178%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0156421178%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>Homage to Catalonia</Title></ItemAttributes></Item><Item><ASIN>B003KQ2GCQ</ASIN><DetailPageURL>http://www.amazon.com/Down-Paris-London-George-Orwell/dp/B003KQ2GCQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003KQ2GCQ</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Down-Paris-London-George-Orwell/dp/tech-data/B003KQ2GCQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003KQ2GCQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003KQ2GCQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003KQ2GCQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003KQ2GCQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003KQ2GCQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003KQ2GCQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003KQ2GCQ</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Oxford City Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Down and Out in Paris and London</Title></ItemAttributes></Item><Item><ASIN>B000SEH4AW</ASIN><DetailPageURL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SEH4AW</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/tech-data/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SEH4AW%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SEH4AW%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SEH4AW</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Everyman's Library</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Nineteen Eighty-Four</Title></ItemAttributes></Item><Item><ASIN>0156186004</ASIN><DetailPageURL>http://www.amazon.com/Collection-Essays-George-Orwell/dp/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0156186004</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Collection-Essays-George-Orwell/dp/tech-data/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0156186004%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0156186004%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156186004</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>A Collection of Essays</Title></ItemAttributes></Item><Item><ASIN>0141185376</ASIN><DetailPageURL>http://www.amazon.com/Burmese-Days-Penguin-Modern-Classics/dp/0141185376%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0141185376</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Burmese-Days-Penguin-Modern-Classics/dp/tech-data/0141185376%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0141185376%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0141185376%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0141185376%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Introduction\">Emma Larkin</Creator><Manufacturer>Penguin Classics</Manufacturer><ProductGroup>Book</ProductGroup><Title>Burmese Days (Penguin Modern Classics)</Title></ItemAttributes></Item><Item><ASIN>0151013551</ASIN><DetailPageURL>http://www.amazon.com/All-Art-Propaganda-Critical-Essays/dp/0151013551%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0151013551</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/All-Art-Propaganda-Critical-Essays/dp/tech-data/0151013551%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0151013551%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0151013551%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0151013551%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0151013551%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0151013551%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0151013551%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151013551</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Author>Keith Gessen</Author><Creator Role=\"Editor\">George Packer</Creator><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>Book</ProductGroup><Title>All Art Is Propaganda: Critical Essays</Title></ItemAttributes></Item><Item><ASIN>0375415033</ASIN><DetailPageURL>http://www.amazon.com/Essays-Everymans-Library-Classics-Contemporary/dp/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0375415033</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Essays-Everymans-Library-Classics-Contemporary/dp/tech-data/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0375415033%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0375415033%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0375415033</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Everyman's Library</Manufacturer><ProductGroup>Book</ProductGroup><Title>Essays (Everyman's Library Classics & Contemporary Classics)</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
|
27
|
-
http_version: "1.1"
|