sucker 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +14 -8
- data/README.md +1 -1
- data/lib/sucker/request.rb +8 -6
- data/lib/sucker/response.rb +0 -2
- data/lib/sucker/version.rb +1 -1
- data/spec/fixtures/cassette_library/integration/alternate_versions.yml +27 -0
- data/spec/fixtures/cassette_library/integration/errors.yml +27 -0
- data/spec/fixtures/cassette_library/integration/france.yml +27 -0
- data/spec/fixtures/cassette_library/integration/images.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/japan.yml +27 -0
- data/spec/fixtures/cassette_library/integration/keyword_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/kindle.yml +27 -0
- data/spec/fixtures/cassette_library/integration/kindle_2.yml +27 -0
- data/spec/fixtures/cassette_library/integration/multiple_locales.yml +157 -0
- data/spec/fixtures/cassette_library/integration/power_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/related_items/child.yml +27 -0
- data/spec/fixtures/cassette_library/integration/related_items/parent.yml +27 -0
- data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/twenty_items.yml +27 -0
- data/spec/fixtures/cassette_library/unit/sucker/request.yml +32 -0
- data/spec/fixtures/cassette_library/unit/sucker/response.yml +27 -0
- data/spec/support/amazon.yml +3 -0
- metadata +43 -3
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
1.1.1
|
2
|
+
=====
|
3
|
+
|
4
|
+
* Added back Request#curl as a deprecated method.
|
5
|
+
|
6
|
+
1.1.0
|
7
|
+
=====
|
3
8
|
|
4
9
|
* Removed Request#get!. Bloat.
|
5
10
|
* Added Request#get_all to fetch responses from all venues
|
@@ -7,19 +12,20 @@ Version 1.1.0
|
|
7
12
|
* Added Request#associate_tags= to set associate tags for all locales.
|
8
13
|
* Added Request#keys= to set distinct keys for locales.
|
9
14
|
* Request#get validates presence of key and locale.
|
15
|
+
* Renamed Request#curl to Request#curl_opts.
|
10
16
|
|
11
|
-
|
12
|
-
|
17
|
+
1.0.0
|
18
|
+
=====
|
13
19
|
|
14
20
|
* Added #each and #map to Response. #find no longer yields.
|
15
21
|
|
16
|
-
|
17
|
-
|
22
|
+
1.0.0.beta4
|
23
|
+
===========
|
18
24
|
|
19
25
|
* Sucker::Request#get! raises an error if response is not valid.
|
20
26
|
|
21
|
-
|
22
|
-
|
27
|
+
1.0.0.beta3
|
28
|
+
===========
|
23
29
|
|
24
30
|
* Sucker::Response#find yields to a block if given one.
|
25
31
|
* Renamed #node to #find
|
data/README.md
CHANGED
@@ -62,7 +62,7 @@ Stubbing
|
|
62
62
|
|
63
63
|
Use [VCR](http://github.com/myronmarston/vcr) to stub your requests.
|
64
64
|
|
65
|
-
Caveat: Match URIs on host only and create a new cassette for each query. [This is how my VCR helper looks like
|
65
|
+
Caveat: Match URIs on host only and create a new cassette for each query. [This is how my VCR helper looks like](http://github.com/papercavalier/sucker/blob/master/spec/support/vcr.rb).
|
66
66
|
|
67
67
|
Compatibility
|
68
68
|
-------------
|
data/lib/sucker/request.rb
CHANGED
@@ -85,13 +85,18 @@ module Sucker #:nodoc:
|
|
85
85
|
@associate_tags = tokens
|
86
86
|
end
|
87
87
|
|
88
|
+
def curl
|
89
|
+
warn "[DEPRECATION] `curl` is deprecated. Use `curl_opts` instead."
|
90
|
+
curl_opts
|
91
|
+
end
|
92
|
+
|
88
93
|
# Returns options for curl and yields them if given a block
|
89
94
|
#
|
90
95
|
# worker = Sucker.new
|
91
96
|
# worker.curl { |c| c.interface = "eth1" }
|
92
97
|
#
|
93
98
|
def curl_opts
|
94
|
-
@curl_opts ||=
|
99
|
+
@curl_opts ||= OpenStruct.new
|
95
100
|
yield @curl_opts if block_given?
|
96
101
|
|
97
102
|
@curl_opts.marshal_dump
|
@@ -113,8 +118,8 @@ module Sucker #:nodoc:
|
|
113
118
|
Response.new(curl)
|
114
119
|
end
|
115
120
|
|
116
|
-
# Performs a request for all locales, returns an array of responses, and
|
117
|
-
#
|
121
|
+
# Performs a request for all locales, returns an array of responses, and yields
|
122
|
+
# them if given a block
|
118
123
|
#
|
119
124
|
# worker = Sucker.new
|
120
125
|
#
|
@@ -231,7 +236,4 @@ module Sucker #:nodoc:
|
|
231
236
|
{ "Timestamp" => Time.now.utc.strftime('%Y-%m-%dT%H:%M:%SZ') }
|
232
237
|
end
|
233
238
|
end
|
234
|
-
|
235
|
-
# Curl options
|
236
|
-
class CurlOptions < OpenStruct; end
|
237
239
|
end
|
data/lib/sucker/response.rb
CHANGED
data/lib/sucker/version.rb
CHANGED
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
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"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=482224816X&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=UsWrngP+jqmmPxrXgDzJSds0jXFr9umiQOP5nEW5mLI=&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:20 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>e27dbe1e-c953-43fb-9bb2-4f3ad3b8a2d4</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"UsWrngP+jqmmPxrXgDzJSds0jXFr9umiQOP5nEW5mLI=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"482224816X\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:19Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0151660000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>482224816X</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>482224816X</ASIN><DetailPageURL>http://www.amazon.co.jp/%E3%82%B9%E3%83%86%E3%82%A3%E3%83%BC%E3%83%96%E3%83%BB%E3%82%B8%E3%83%A7%E3%83%96%E3%82%BA-%E9%A9%9A%E7%95%B0%E3%81%AE%E3%83%97%E3%83%AC%E3%82%BC%E3%83%B3%E2%80%95%E4%BA%BA%E3%80%85%E3%82%92%E6%83%B9%E3%81%8D%E3%81%A4%E3%81%91%E3%82%8B18%E3%81%AE%E6%B3%95%E5%89%87-%E3%82%AB%E3%83%BC%E3%83%9E%E3%82%A4%E3%83%B3%E3%83%BB%E3%82%AC%E3%83%AD/dp/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D482224816X</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D482224816X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/482224816X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink></ItemLinks><ItemAttributes><Author>\xE3\x82\xAB\xE3\x83\xBC\xE3\x83\x9E\xE3\x82\xA4\xE3\x83\xB3\xE3\x83\xBB\xE3\x82\xAC\xE3\x83\xAD</Author><Binding>\xE5\x8D\x98\xE8\xA1\x8C\xE6\x9C\xAC\xEF\xBC\x88\xE3\x82\xBD\xE3\x83\x95\xE3\x83\x88\xE3\x82\xAB\xE3\x83\x90\xE3\x83\xBC\xEF\xBC\x89</Binding><Creator Role=\"\xE3\x81\x9D\xE3\x81\xAE\xE4\xBB\x96\">\xE5\xA4\x96\xE6\x9D\x91\xE4\xBB\x81 \xE8\xA7\xA3\xE8\xAA\xAC</Creator><Creator Role=\"\xE7\xBF\xBB\xE8\xA8\xB3\">\xE4\xBA\x95\xE5\x8F\xA3\xE8\x80\x95\xE4\xBA\x8C</Creator><EAN>9784822248161</EAN><IsAdultProduct>0</IsAdultProduct><ISBN>482224816X</ISBN><Label>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Label><Languages><Language><Name>\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E</Name><Type>Unknown</Type></Language></Languages><ListPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></ListPrice><Manufacturer>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Manufacturer><NumberOfPages>408</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">110</Height><Length Units=\"hundredths-inches\">740</Length><Weight Units=\"hundredths-pounds\">84</Weight><Width Units=\"hundredths-inches\">512</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-07-15</PublicationDate><Publisher>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Publisher><Studio>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Studio><Title>\xE3\x82\xB9\xE3\x83\x86\xE3\x82\xA3\xE3\x83\xBC\xE3\x83\x96\xE3\x83\xBB\xE3\x82\xB8\xE3\x83\xA7\xE3\x83\x96\xE3\x82\xBA \xE9\xA9\x9A\xE7\x95\xB0\xE3\x81\xAE\xE3\x83\x97\xE3\x83\xAC\xE3\x82\xBC\xE3\x83\xB3\xE2\x80\x95\xE4\xBA\xBA\xE3\x80\x85\xE3\x82\x92\xE6\x83\xB9\xE3\x81\x8D\xE3\x81\xA4\xE3\x81\x91\xE3\x82\x8B18\xE3\x81\xAE\xE6\xB3\x95\xE5\x89\x87</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1630</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,630</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>2000</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 2,000</FormattedPrice></LowestCollectiblePrice><TotalNew>3</TotalNew><TotalUsed>9</TotalUsed><TotalCollectible>3</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>AN1VRQENFRJN5</MerchantId><Name>Amazon.co.jp</Name><GlancePage>http://www.amazon.co.jp/gp/help/seller/home.html?seller=AN1VRQENFRJN5</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>XQ2IdkvUOOEkKrDtl5MdAQe5PfIJehh1BUO9QaQ%2BRIPazUExDzjw%2FhwKjgPr7rePcK%2BC3EMceOqVZeT0Z9ON37C8aMHgLc2O</OfferListingId><Price><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></Price><Availability>\xE5\x9C\xA8\xE5\xBA\xAB\xE3\x81\x82\xE3\x82\x8A\xE3\x80\x82</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing><LoyaltyPoints><Points>189</Points><TypicalRedemptionValue><Amount>189</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 189</FormattedPrice></TypicalRedemptionValue></LoyaltyPoints></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
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=&Keywords=zizek%20lacan&Operation=ItemSearch&SearchIndex=Books&Service=AWSECommerceService&Signature=2Qm9GwWdmbUPOE0RPouE6FgfHyo/dsMkKOwUQY2u7YM=&Sort=relevancerank&Timestamp=2010-11-16T08:35:20Z&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:20 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>6c05bb91-b692-40a0-a7c3-a7ef3954ff90</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"2Qm9GwWdmbUPOE0RPouE6FgfHyo/dsMkKOwUQY2u7YM=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Keywords\" Value=\"zizek lacan\"></Argument><Argument Name=\"Sort\" Value=\"relevancerank\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:20Z\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument></Arguments><RequestProcessingTime>0.3688110000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><Keywords>zizek lacan</Keywords><MerchantId>Amazon</MerchantId><ResponseGroup>Small</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex><Sort>relevancerank</Sort></ItemSearchRequest></Request><TotalResults>71</TotalResults><TotalPages>8</TotalPages><Item><ASIN>0393329550</ASIN><DetailPageURL>http://www.amazon.com/How-Read-Lacan/dp/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0393329550</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/How-Read-Lacan/dp/tech-data/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0393329550%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0393329550%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0393329550</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Creator Role=\"Series Editor\">Simon Critchley</Creator><Manufacturer>W. W. Norton & Company</Manufacturer><ProductGroup>Book</ProductGroup><Title>How to Read Lacan (How to Read)</Title></ItemAttributes></Item><Item><ASIN>026274015X</ASIN><DetailPageURL>http://www.amazon.com/Looking-Awry-Introduction-Jacques-through/dp/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D026274015X</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Looking-Awry-Introduction-Jacques-through/dp/tech-data/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D026274015X%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/026274015X%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D026274015X</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>The MIT Press</Manufacturer><ProductGroup>Book</ProductGroup><Title>Looking Awry: An Introduction to Jacques Lacan through Popular Culture (October Books)</Title></ItemAttributes></Item><Item><ASIN>0415772591</ASIN><DetailPageURL>http://www.amazon.com/Enjoy-Your-Symptom-Hollywood-Routledge/dp/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0415772591</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Enjoy-Your-Symptom-Hollywood-Routledge/dp/tech-data/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0415772591%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0415772591%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415772591</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>Routledge</Manufacturer><ProductGroup>Book</ProductGroup><Title>Enjoy Your Symptom!: Jacques Lacan in Hollywood and Out (Routledge Classics)</Title></ItemAttributes></Item><Item><ASIN>0860915921</ASIN><DetailPageURL>http://www.amazon.com/Everything-Always-Wanted-about-Lacan/dp/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0860915921</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Everything-Always-Wanted-about-Lacan/dp/tech-data/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0860915921%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0860915921%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0860915921</URL></ItemLink></ItemLinks><ItemAttributes><Creator Role=\"Editor\">Slavoj Zizek</Creator><Manufacturer>Verso</Manufacturer><ProductGroup>Book</ProductGroup><Title>Everything You Always Wanted to Know about Lacan: But Were Afraid to Ask Hitchcock</Title></ItemAttributes></Item><Item><ASIN>3851320379</ASIN><DetailPageURL>http://www.amazon.com/Mehr-Geniessen-Lacan-Popularkultur-war-German/dp/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D3851320379</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Mehr-Geniessen-Lacan-Popularkultur-war-German/dp/tech-data/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D3851320379%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/3851320379%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D3851320379</URL></ItemLink></ItemLinks><ItemAttributes><Author>Slavoj Zizek</Author><Manufacturer>Turia & Kant</Manufacturer><ProductGroup>Book</ProductGroup><Title>Mehr-Geniessen: Lacan in der Popularkultur (Wo es war) (German Edition)</Title></ItemAttributes></Item><Item><ASIN>0415278627</ASIN><DetailPageURL>http://www.amazon.com/Jacques-Lacan-Critical-Evaluations-Cultural/dp/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0415278627</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Jacques-Lacan-Critical-Evaluations-Cultural/dp/tech-data/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0415278627%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0415278627%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0415278627</URL></ItemLink></ItemLinks><ItemAttributes><Author>Jerry Aline Flieger</Author><Creator Role=\"Editor\">Slavoj Zizek</Creator><Manufacturer>Routledge</Manufacturer><ProductGroup>Book</ProductGroup><Title>Jacques Lacan: Critical Evaluations in Cultural Theory</Title></ItemAttributes></Item><Item><ASIN>0230603300</ASIN><DetailPageURL>http://www.amazon.com/Joyce-through-Lacan-Zizek-Explorations/dp/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0230603300</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Joyce-through-Lacan-Zizek-Explorations/dp/tech-data/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0230603300%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0230603300%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0230603300</URL></ItemLink></ItemLinks><ItemAttributes><Author>Shelly Brivic</Author><Manufacturer>Palgrave Macmillan</Manufacturer><ProductGroup>Book</ProductGroup><Title>Joyce through Lacan and Zizek: Explorations (New Directions in Irish and Irish American Literature)</Title></ItemAttributes></Item><Item><ASIN>B000F2CCUY</ASIN><DetailPageURL>http://www.amazon.com/inverse-side-structure-Deleuze-Criticism/dp/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000F2CCUY</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/inverse-side-structure-Deleuze-Criticism/dp/tech-data/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000F2CCUY%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000F2CCUY%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000F2CCUY</URL></ItemLink></ItemLinks><ItemAttributes><Author>Daniel W. Smith</Author><Manufacturer>Thomson Gale</Manufacturer><ProductGroup>Book</ProductGroup><Title>The inverse side of the structure: Zizek on Deleuze on Lacan.(Slavoj Zizek)(Gilles Deleuze)(Jacques Lacan): An article from: Criticism</Title></ItemAttributes></Item><Item><ASIN>1159126976</ASIN><DetailPageURL>http://www.amazon.com/Lacanismus-Psychoanalytische-%C3%96dipuskonflikt-Spiegelstadium-Interpassivit%C3%A4t/dp/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1159126976</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Lacanismus-Psychoanalytische-%C3%96dipuskonflikt-Spiegelstadium-Interpassivit%C3%A4t/dp/tech-data/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1159126976%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1159126976%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1159126976</URL></ItemLink></ItemLinks><ItemAttributes><Creator Role=\"Editor\">B\xC3\xBCcher Gruppe</Creator><Manufacturer>Books LLC</Manufacturer><ProductGroup>Book</ProductGroup><Title>Lacanismus: Slavoj Zizek, Jacques Lacan, Psychoanalytische Filmtheorie, Objekt Klein A, \xC3\x96dipuskonflikt, Spiegelstadium, Interpassivit\xC3\xA4t (German Edition)</Title></ItemAttributes></Item><Item><ASIN>B003QEZTMQ</ASIN><DetailPageURL>http://www.amazon.com/Joyce-Through-Lacan-Zizek-Finnegans/dp/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003QEZTMQ</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Joyce-Through-Lacan-Zizek-Finnegans/dp/tech-data/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003QEZTMQ%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003QEZTMQ%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003QEZTMQ</URL></ItemLink></ItemLinks><ItemAttributes><Author>Shelly Brivic</Author><Manufacturer>Unknown</Manufacturer><ProductGroup>Book</ProductGroup><Title>Joyce Through Lacan and Zizek: From A Portrait of the Artist to Finnegans Wake</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
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=&Operation=ItemSearch&Power=deleuze%20binding:kindle&ResponseGroup=ItemAttributes&SearchIndex=Books&Service=AWSECommerceService&Signature=BsT00Zx0rzAz855j/hSBbAl4PqsnjKTMrh/QSg9Ni9Q=&Timestamp=2010-11-16T08:35:21Z&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:21 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>e0180dd4-f1cd-46a2-acd1-96c7c9da2798</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"BsT00Zx0rzAz855j/hSBbAl4PqsnjKTMrh/QSg9Ni9Q=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Power\" Value=\"deleuze binding:kindle\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:21Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument></Arguments><RequestProcessingTime>0.6475500000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><MerchantId>Amazon</MerchantId><Power>deleuze binding:kindle</Power><ResponseGroup>ItemAttributes</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>23</TotalResults><TotalPages>3</TotalPages><Item><ASIN>B002MAPRNG</ASIN><DetailPageURL>http://www.amazon.com/Creative-Evolution-ebook/dp/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPRNG</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Creative-Evolution-ebook/dp/tech-data/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Creative Evolution</Title></ItemAttributes></Item><Item><ASIN>B000FA5YU6</ASIN><DetailPageURL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5YU6</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/tech-data/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203029923</EISBN><Format>Kindle eBook</Format><Label>Taylor & Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.95</FormattedPrice></ListPrice><Manufacturer>Taylor & Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>200</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor & Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor & Francis</Studio><Title>Gilles Deleuze</Title></ItemAttributes></Item><Item><ASIN>B002MAPROU</ASIN><DetailPageURL>http://www.amazon.com/Laughter-Essay-Meaning-Comic-ebook/dp/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPROU</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Laughter-Essay-Meaning-Comic-ebook/dp/tech-data/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPROU%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPROU%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPROU</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Laughter : an Essay on the Meaning of the Comic</Title></ItemAttributes></Item><Item><ASIN>B003PDN9Z2</ASIN><DetailPageURL>http://www.amazon.com/Chaos-Territory-Art-Deleuze-ebook/dp/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003PDN9Z2</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Chaos-Territory-Art-Deleuze-ebook/dp/tech-data/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003PDN9Z2%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003PDN9Z2%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003PDN9Z2</URL></ItemLink></ItemLinks><ItemAttributes><Author>Elizabeth Grosz</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>700.1</DeweyDecimalNumber><EISBN>9780231517874</EISBN><Format>Kindle eBook</Format><Label>Columbia University Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2250</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.50</FormattedPrice></ListPrice><Manufacturer>Columbia University Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>136</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-05-07</PublicationDate><Publisher>Columbia University Press</Publisher><ReleaseDate>2008-05-07</ReleaseDate><Studio>Columbia University Press</Studio><Title>Chaos, Territory, Art: Deleuze and the Framing of the Earth</Title></ItemAttributes></Item><Item><ASIN>B0042XAME0</ASIN><DetailPageURL>http://www.amazon.com/Skin-Film-Intercultural-Embodiment-ebook/dp/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0042XAME0</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Skin-Film-Intercultural-Embodiment-ebook/dp/tech-data/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB0042XAME0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B0042XAME0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB0042XAME0</URL></ItemLink></ItemLinks><ItemAttributes><Author>Laura U. Marks</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>791.43091724</DeweyDecimalNumber><EISBN>9780822381372</EISBN><Format>Kindle Book</Format><Label>Duke University Press Books</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.95</FormattedPrice></ListPrice><Manufacturer>Duke University Press Books</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>320</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>1999-01-01</PublicationDate><Publisher>Duke University Press Books</Publisher><ReleaseDate>1999-01-01</ReleaseDate><Studio>Duke University Press Books</Studio><Title>The Skin of the Film: Intercultural Cinema, Embodiment, and the Senses</Title></ItemAttributes></Item><Item><ASIN>B004445HMO</ASIN><DetailPageURL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004445HMO</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/tech-data/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink></ItemLinks><ItemAttributes><Binding>Kindle Edition</Binding><Creator Role=\"Editor\">D. N. Rodowick</Creator><DeweyDecimalNumber>791.4301</DeweyDecimalNumber><EISBN>9781452930473</EISBN><Format>Kindle Book</Format><Label>Univ Of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.50</FormattedPrice></ListPrice><Manufacturer>Univ Of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>416</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2010-12-21</PublicationDate><Publisher>Univ Of Minnesota Press</Publisher><ReleaseDate>2010-12-21</ReleaseDate><Studio>Univ Of Minnesota Press</Studio><Title>Afterimages of Gilles Deleuze's Film Philosophy</Title></ItemAttributes></Item><Item><ASIN>B000SIYHXA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SIYHXA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/tech-data/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Andrew Ballantyne</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203934203</EISBN><Format>Kindle eBook</Format><Label>T & F Books UK</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2798</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.98</FormattedPrice></ListPrice><Manufacturer>T & F Books UK</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>124</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-01-23</PublicationDate><Publisher>T & F Books UK</Publisher><ReleaseDate>2009-01-23</ReleaseDate><Studio>T & F Books UK</Studio><Title>Deleuze and Guattari: For Architects</Title></ItemAttributes></Item><Item><ASIN>B004BSFNO0</ASIN><DetailPageURL>http://www.amazon.com/Philosophy-Turbulent-Times-Canguilhem-ebook/dp/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004BSFNO0</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Philosophy-Turbulent-Times-Canguilhem-ebook/dp/tech-data/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004BSFNO0%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004BSFNO0%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004BSFNO0</URL></ItemLink></ItemLinks><ItemAttributes><Author>Elisabeth Roudinesco</Author><Binding>Kindle Edition</Binding><Creator Role=\"Translator\">William McCuaig</Creator><DeweyDecimalNumber>149</DeweyDecimalNumber><Format>Kindle Book</Format><Label>Columbia University Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.99</FormattedPrice></ListPrice><Manufacturer>Columbia University Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>208</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-09-30</PublicationDate><Publisher>Columbia University Press</Publisher><ReleaseDate>2010-05-01</ReleaseDate><Studio>Columbia University Press</Studio><Title>Philosophy in Turbulent Times: Canguilhem, Sartre, Foucault, Althusser, Deleuze, Derrida</Title></ItemAttributes></Item><Item><ASIN>B002KKCVCI</ASIN><DetailPageURL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002KKCVCI</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/tech-data/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9781741150018</EISBN><Format>Kindle Book</Format><Label>Allen & Unwin</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></ListPrice><Manufacturer>Allen & Unwin</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>240</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2003-04-01</PublicationDate><Publisher>Allen & Unwin</Publisher><ReleaseDate>2002-01-08</ReleaseDate><Studio>Allen & Unwin</Studio><Title>Understanding Deleuze</Title></ItemAttributes></Item><Item><ASIN>B003E2UPR4</ASIN><DetailPageURL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003E2UPR4</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/tech-data/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink></ItemLinks><ItemAttributes><Author>Steven Shaviro</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>192</DeweyDecimalNumber><EISBN>9780262261159</EISBN><Format>Kindle eBook</Format><Label>The MIT Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.00</FormattedPrice></ListPrice><Manufacturer>The MIT Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>192</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-05-29</PublicationDate><Publisher>The MIT Press</Publisher><ReleaseDate>2009-05-29</ReleaseDate><Studio>The MIT Press</Studio><Title>Without Criteria: Kant, Whitehead, Deleuze, and Aesthetics</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
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=&Keywords=deleuze&Operation=ItemSearch&ResponseGroup=ItemAttributes&SearchIndex=KindleStore&Service=AWSECommerceService&Signature=1wlsHfglGcKIakKtzHQOMfZr6rv0pfgNvGYnOFVEjPE=&Timestamp=2010-11-16T08:35:22Z&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:22 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>2af693fa-9c6e-4241-a79b-cd0daca6887e</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"1wlsHfglGcKIakKtzHQOMfZr6rv0pfgNvGYnOFVEjPE=\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Keywords\" Value=\"deleuze\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"0ZVSQ33MDFPQS8H2PM02\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-11-16T08:35:22Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"SearchIndex\" Value=\"KindleStore\"></Argument></Arguments><RequestProcessingTime>0.5946910000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><Keywords>deleuze</Keywords><MerchantId>Amazon</MerchantId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>KindleStore</SearchIndex></ItemSearchRequest></Request><TotalResults>23</TotalResults><TotalPages>3</TotalPages><Item><ASIN>B000FA5YU6</ASIN><DetailPageURL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5YU6</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Gilles-Deleuze-ebook/dp/tech-data/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5YU6%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5YU6%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5YU6</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203029923</EISBN><Format>Kindle eBook</Format><Label>Taylor & Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.95</FormattedPrice></ListPrice><Manufacturer>Taylor & Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>200</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor & Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor & Francis</Studio><Title>Gilles Deleuze</Title></ItemAttributes></Item><Item><ASIN>B000FA5WSA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000FA5WSA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-and-Guattaris-Anti-Oedipus-ebook/dp/tech-data/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000FA5WSA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000FA5WSA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000FA5WSA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Eugene W. Holland</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203007426</EISBN><Format>Kindle eBook</Format><Label>Taylor & Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$41.95</FormattedPrice></ListPrice><Manufacturer>Taylor & Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>176</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2002-12-07</PublicationDate><Publisher>Taylor & Francis</Publisher><ReleaseDate>2002-12-07</ReleaseDate><Studio>Taylor & Francis</Studio><Title>Deleuze and Guattari's Anti-Oedipus</Title></ItemAttributes></Item><Item><ASIN>B002KKCVCI</ASIN><DetailPageURL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002KKCVCI</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Understanding-Deleuze-ebook/dp/tech-data/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002KKCVCI%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002KKCVCI%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002KKCVCI</URL></ItemLink></ItemLinks><ItemAttributes><Author>Claire Colebrook</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9781741150018</EISBN><Format>Kindle Book</Format><Label>Allen & Unwin</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></ListPrice><Manufacturer>Allen & Unwin</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>240</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2003-04-01</PublicationDate><Publisher>Allen & Unwin</Publisher><ReleaseDate>2002-01-08</ReleaseDate><Studio>Allen & Unwin</Studio><Title>Understanding Deleuze</Title></ItemAttributes></Item><Item><ASIN>B003E2UPR4</ASIN><DetailPageURL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003E2UPR4</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Without-Criteria-Whitehead-Aesthetics-ebook/dp/tech-data/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003E2UPR4%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003E2UPR4%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003E2UPR4</URL></ItemLink></ItemLinks><ItemAttributes><Author>Steven Shaviro</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>192</DeweyDecimalNumber><EISBN>9780262261159</EISBN><Format>Kindle eBook</Format><Label>The MIT Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.00</FormattedPrice></ListPrice><Manufacturer>The MIT Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>192</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-05-29</PublicationDate><Publisher>The MIT Press</Publisher><ReleaseDate>2009-05-29</ReleaseDate><Studio>The MIT Press</Studio><Title>Without Criteria: Kant, Whitehead, Deleuze, and Aesthetics</Title></ItemAttributes></Item><Item><ASIN>B000SIYHXA</ASIN><DetailPageURL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000SIYHXA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Deleuze-Guattari-Architects-ebook/dp/tech-data/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000SIYHXA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000SIYHXA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000SIYHXA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Andrew Ballantyne</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780203934203</EISBN><Format>Kindle eBook</Format><Label>T & F Books UK</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2798</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.98</FormattedPrice></ListPrice><Manufacturer>T & F Books UK</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>124</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-01-23</PublicationDate><Publisher>T & F Books UK</Publisher><ReleaseDate>2009-01-23</ReleaseDate><Studio>T & F Books UK</Studio><Title>Deleuze and Guattari: For Architects</Title></ItemAttributes></Item><Item><ASIN>B003U6Z2JA</ASIN><DetailPageURL>http://www.amazon.com/Bergson-Deleuze-Encounters-Transcendental-Experience-ebook/dp/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003U6Z2JA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Bergson-Deleuze-Encounters-Transcendental-Experience-ebook/dp/tech-data/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003U6Z2JA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003U6Z2JA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003U6Z2JA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Valentine Moulard-leonard</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EISBN>9780791477953</EISBN><Format>Kindle Book</Format><Label>State University of New York Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.95</FormattedPrice></ListPrice><Manufacturer>State University of New York Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>197</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-08-07</PublicationDate><Publisher>State University of New York Press</Publisher><ReleaseDate>2008-08-07</ReleaseDate><Studio>State University of New York Press</Studio><Title>Bergson-Deleuze Encounters: Transcendental Experience and the Thought of the Virtual</Title></ItemAttributes></Item><Item><ASIN>B004445HMO</ASIN><DetailPageURL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004445HMO</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Afterimages-Gilles-Deleuzes-Philosophy-ebook/dp/tech-data/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004445HMO%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004445HMO%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004445HMO</URL></ItemLink></ItemLinks><ItemAttributes><Binding>Kindle Edition</Binding><Creator Role=\"Editor\">D. N. Rodowick</Creator><DeweyDecimalNumber>791.4301</DeweyDecimalNumber><EISBN>9781452930473</EISBN><Format>Kindle Book</Format><Label>Univ Of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.50</FormattedPrice></ListPrice><Manufacturer>Univ Of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>416</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2010-12-21</PublicationDate><Publisher>Univ Of Minnesota Press</Publisher><ReleaseDate>2010-12-21</ReleaseDate><Studio>Univ Of Minnesota Press</Studio><Title>Afterimages of Gilles Deleuze's Film Philosophy</Title></ItemAttributes></Item><Item><ASIN>B000OI17AA</ASIN><DetailPageURL>http://www.amazon.com/A-Shock-to-Thought-ebook/dp/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000OI17AA</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/A-Shock-to-Thought-ebook/dp/tech-data/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB000OI17AA%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B000OI17AA%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB000OI17AA</URL></ItemLink></ItemLinks><ItemAttributes><Author>Brian Massumi</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>801.93</DeweyDecimalNumber><EISBN>9780203994368</EISBN><Format>Kindle eBook</Format><Label>Taylor & Francis</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4195</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$41.95</FormattedPrice></ListPrice><Manufacturer>Taylor & Francis</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>296</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2007-03-16</PublicationDate><Publisher>Taylor & Francis</Publisher><ReleaseDate>2007-03-16</ReleaseDate><Studio>Taylor & Francis</Studio><Title>A Shock to Thought</Title></ItemAttributes></Item><Item><ASIN>B003HIXT6Y</ASIN><DetailPageURL>http://www.amazon.com/Onto-Ethologies-Environments-Heidegger-Merleau-Ponty-ebook/dp/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003HIXT6Y</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Onto-Ethologies-Environments-Heidegger-Merleau-Ponty-ebook/dp/tech-data/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003HIXT6Y%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003HIXT6Y%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003HIXT6Y</URL></ItemLink></ItemLinks><ItemAttributes><Author>Brett Buchanan</Author><Binding>Kindle Edition</Binding><DeweyDecimalNumber>113.8</DeweyDecimalNumber><EISBN>9780791477465</EISBN><Format>Kindle Book</Format><Label>State University of New York Press</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2495</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$24.95</FormattedPrice></ListPrice><Manufacturer>State University of New York Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>223</NumberOfPages><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2008-11-06</PublicationDate><Publisher>State University of New York Press</Publisher><ReleaseDate>2008-11-06</ReleaseDate><Studio>State University of New York Press</Studio><Title>Onto-Ethologies: The Animal Environments of Uexkull, Heidegger, Merleau-Ponty, and Deleuze</Title></ItemAttributes></Item><Item><ASIN>B002MAPRNG</ASIN><DetailPageURL>http://www.amazon.com/Creative-Evolution-ebook/dp/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002MAPRNG</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Creative-Evolution-ebook/dp/tech-data/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002MAPRNG%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002MAPRNG%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002MAPRNG</URL></ItemLink></ItemLinks><ItemAttributes><Author>Henri Bergson</Author><Binding>Kindle Edition</Binding><Format>Kindle eBook</Format><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></ListPrice><ProductGroup>eBooks</ProductGroup><ProductTypeName>ABIS_EBOOKS</ProductTypeName><PublicationDate>2009-08-19</PublicationDate><Title>Creative Evolution</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,157 @@
|
|
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=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=SY2Z6l6tizW+4ST3eRgbAeST5vhCOS72v2V/r7yEUq4=&Timestamp=2010-11-16T08:35:24Z&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:24 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>9091a4fe-2421-4bf0-bb28-8bfae6400409</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></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:24Z\"></Argument><Argument Name=\"Signature\" Value=\"SY2Z6l6tizW+4ST3eRgbAeST5vhCOS72v2V/r7yEUq4=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.0069580000000000</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>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.uk/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.uk/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.uk/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.uk/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.uk/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12734%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><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>1400</Amount><CurrencyCode>GBP</CurrencyCode><FormattedPrice>\xC2\xA314.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-01</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|
28
|
+
- !ruby/struct:VCR::HTTPInteraction
|
29
|
+
request: !ruby/struct:VCR::Request
|
30
|
+
method: :get
|
31
|
+
uri: http://ecs.amazonaws.de:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=ATw0sZVWfFmti3YnMpNme+aB1QTA28bnJ3t+T3oncfQ=&Timestamp=2010-11-16T08:35:24Z&Version=2010-09-01
|
32
|
+
body:
|
33
|
+
headers: {}
|
34
|
+
|
35
|
+
response: !ruby/struct:VCR::Response
|
36
|
+
status: !ruby/struct:VCR::ResponseStatus
|
37
|
+
code: 200
|
38
|
+
message: OK
|
39
|
+
headers:
|
40
|
+
date:
|
41
|
+
- Tue, 16 Nov 2010 08:35:24 GMT
|
42
|
+
server:
|
43
|
+
- Server
|
44
|
+
content-type:
|
45
|
+
- text/xml;charset=UTF-8
|
46
|
+
vary:
|
47
|
+
- Accept-Encoding,User-Agent
|
48
|
+
nncoection:
|
49
|
+
- close
|
50
|
+
transfer-encoding:
|
51
|
+
- chunked
|
52
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>54b23f8e-022a-4548-af0c-472f036cfe31</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></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:24Z\"></Argument><Argument Name=\"Signature\" Value=\"ATw0sZVWfFmti3YnMpNme+aB1QTA28bnJ3t+T3oncfQ=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.0078940000000000</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>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.de/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.de/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.de/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.de/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.de/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12738%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Binding>Taschenbuch</Binding><Creator Role=\"K\xC3\xBCnstler\">Felix Guattari</Creator><Creator Role=\"\xC3\x9Cbersetzer\">Brian Massumi</Creator><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>Englisch</Name><Type>Unknown</Type></Language><Language><Name>Englisch</Name><Type>Original Language</Type></Language><Language><Name>Englisch</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1934</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 19,34</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><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></ItemAttributes></Item></Items></ItemLookupResponse>"
|
53
|
+
http_version: "1.1"
|
54
|
+
- !ruby/struct:VCR::HTTPInteraction
|
55
|
+
request: !ruby/struct:VCR::Request
|
56
|
+
method: :get
|
57
|
+
uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=s8QT1c7LmT6P+qyG+k+M4r09K0S3OW2zCSMghnQVC1c=&Timestamp=2010-11-16T08:35:24Z&Version=2010-09-01
|
58
|
+
body:
|
59
|
+
headers: {}
|
60
|
+
|
61
|
+
response: !ruby/struct:VCR::Response
|
62
|
+
status: !ruby/struct:VCR::ResponseStatus
|
63
|
+
code: 200
|
64
|
+
message: OK
|
65
|
+
headers:
|
66
|
+
date:
|
67
|
+
- Tue, 16 Nov 2010 08:35:24 GMT
|
68
|
+
server:
|
69
|
+
- Server
|
70
|
+
content-type:
|
71
|
+
- text/xml;charset=UTF-8
|
72
|
+
vary:
|
73
|
+
- Accept-Encoding,User-Agent
|
74
|
+
nncoection:
|
75
|
+
- close
|
76
|
+
transfer-encoding:
|
77
|
+
- chunked
|
78
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>b81fa06b-8f94-42ad-a6b7-5e1b6876f522</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></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:24Z\"></Argument><Argument Name=\"Signature\" Value=\"s8QT1c7LmT6P+qyG+k+M4r09K0S3OW2zCSMghnQVC1c=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument><Argument Name=\"AssociateTag\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.0087680000000000</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>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.fr/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Broch\xC3\xA9</Binding><Creator Role=\"Traduction\">Brian Massumi</Creator><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>University of Minnesota Press</Label><Languages><Language><Name>Anglais</Name><Type>Unknown</Type></Language><Language><Name>Anglais</Name><Type>Original Language</Type></Language><Language><Name>Anglais</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>1907</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 19,07</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><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-01</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
79
|
+
http_version: "1.1"
|
80
|
+
- !ruby/struct:VCR::HTTPInteraction
|
81
|
+
request: !ruby/struct:VCR::Request
|
82
|
+
method: :get
|
83
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=sBCyOw2u1Ny5RRWM/So2Uw7FnYe46FuCUSGGywftjyw=&Timestamp=2010-11-16T08:35:24Z&Version=2010-09-01
|
84
|
+
body:
|
85
|
+
headers: {}
|
86
|
+
|
87
|
+
response: !ruby/struct:VCR::Response
|
88
|
+
status: !ruby/struct:VCR::ResponseStatus
|
89
|
+
code: 200
|
90
|
+
message: OK
|
91
|
+
headers:
|
92
|
+
date:
|
93
|
+
- Tue, 16 Nov 2010 08:35:24 GMT
|
94
|
+
server:
|
95
|
+
- Server
|
96
|
+
content-type:
|
97
|
+
- text/xml;charset=UTF-8
|
98
|
+
vary:
|
99
|
+
- Accept-Encoding,User-Agent
|
100
|
+
nncoection:
|
101
|
+
- close
|
102
|
+
transfer-encoding:
|
103
|
+
- chunked
|
104
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>0aa4e8b7-4958-4614-bf8a-81473391bda3</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"sBCyOw2u1Ny5RRWM/So2Uw7FnYe46FuCUSGGywftjyw=\"></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:24Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0473360000000000</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>ItemAttributes</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></Item></Items></ItemLookupResponse>"
|
105
|
+
http_version: "1.1"
|
106
|
+
- !ruby/struct:VCR::HTTPInteraction
|
107
|
+
request: !ruby/struct:VCR::Request
|
108
|
+
method: :get
|
109
|
+
uri: http://ecs.amazonaws.ca:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=dzxmywbPDSIBfLHHM1PG5vjETNx078IatjXAwV54UCY=&Timestamp=2010-11-16T08:35:24Z&Version=2010-09-01
|
110
|
+
body:
|
111
|
+
headers: {}
|
112
|
+
|
113
|
+
response: !ruby/struct:VCR::Response
|
114
|
+
status: !ruby/struct:VCR::ResponseStatus
|
115
|
+
code: 200
|
116
|
+
message: OK
|
117
|
+
headers:
|
118
|
+
date:
|
119
|
+
- Tue, 16 Nov 2010 08:35:24 GMT
|
120
|
+
server:
|
121
|
+
- Server
|
122
|
+
content-type:
|
123
|
+
- text/xml;charset=UTF-8
|
124
|
+
vary:
|
125
|
+
- Accept-Encoding,User-Agent
|
126
|
+
nncoection:
|
127
|
+
- close
|
128
|
+
transfer-encoding:
|
129
|
+
- chunked
|
130
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>aa1c9875-f58d-4e16-bfce-cc216ca416dc</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"dzxmywbPDSIBfLHHM1PG5vjETNx078IatjXAwV54UCY=\"></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:24Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0097980000000000</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>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.ca/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.ca/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.ca/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.ca/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.ca/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386005%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Brian Massumi</Creator><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><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>2521</Amount><CurrencyCode>CAD</CurrencyCode><FormattedPrice>CDN$ 25.21</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><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-11</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
131
|
+
http_version: "1.1"
|
132
|
+
- !ruby/struct:VCR::HTTPInteraction
|
133
|
+
request: !ruby/struct:VCR::Request
|
134
|
+
method: :get
|
135
|
+
uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=0ZVSQ33MDFPQS8H2PM02&AssociateTag=&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=TndfcHExC/ymoHhdExGTIniZeRvLzA4k/12srtP3BtY=&Timestamp=2010-11-16T08:35:24Z&Version=2010-09-01
|
136
|
+
body:
|
137
|
+
headers: {}
|
138
|
+
|
139
|
+
response: !ruby/struct:VCR::Response
|
140
|
+
status: !ruby/struct:VCR::ResponseStatus
|
141
|
+
code: 200
|
142
|
+
message: OK
|
143
|
+
headers:
|
144
|
+
date:
|
145
|
+
- Tue, 16 Nov 2010 08:35:24 GMT
|
146
|
+
server:
|
147
|
+
- Server
|
148
|
+
content-type:
|
149
|
+
- text/xml;charset=UTF-8
|
150
|
+
vary:
|
151
|
+
- Accept-Encoding,User-Agent
|
152
|
+
nncoection:
|
153
|
+
- close
|
154
|
+
transfer-encoding:
|
155
|
+
- chunked
|
156
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>9655612e-204a-42a5-9dfb-84f4c4446945</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"TndfcHExC/ymoHhdExGTIniZeRvLzA4k/12srtP3BtY=\"></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:24Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.0061800000000000</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>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.co.jp/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/0816614024%3FSubscriptionId%3D0ZVSQ33MDFPQS8H2PM02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>\xE3\x83\x9A\xE3\x83\xBC\xE3\x83\x91\xE3\x83\xBC\xE3\x83\x90\xE3\x83\x83\xE3\x82\xAF</Binding><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><Label>Univ of Minnesota Pr</Label><Languages><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Unknown</Type></Language><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Original Language</Type></Language><Language><Name>\xE8\x8B\xB1\xE8\xAA\x9E</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2147</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 2,147</FormattedPrice></ListPrice><Manufacturer>Univ of Minnesota Pr</Manufacturer><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>Univ of Minnesota Pr</Publisher><Studio>Univ of Minnesota Pr</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title></ItemAttributes></Item></Items></ItemLookupResponse>"
|
157
|
+
http_version: "1.1"
|