powells 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -3
- data/lib/powells/request.rb +9 -21
- data/lib/powells/response.rb +2 -1
- data/lib/powells/version.rb +1 -1
- data/test/helper.rb +1 -0
- data/test/test_powells.rb +9 -5
- data/test/vcr_cassettes/powells.yml +505 -1852
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c4e37faeeab8a9f47a2f429e0796b4620b59893
|
|
4
|
+
data.tar.gz: dfef40df79038036b20637df4cd8804539d08c86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae0be39ce64679ec43facaaee3336e2519c5e3169546e94b840fe4d472ca7b055c2a8bb991a19b5776ab305c9006d85c38cd28ec736c8805d7cc9de1180d5e6a
|
|
7
|
+
data.tar.gz: d14f5e5bd3430e401893bdabbea5645691eea743c9d83e39edb442a8ab651bef6f21740c4efc094b56d9b259139d96e818ff3a717b41e271be2ad2805775e714
|
data/README.md
CHANGED
data/lib/powells/request.rb
CHANGED
|
@@ -4,14 +4,13 @@ require 'powells/response'
|
|
|
4
4
|
module Powells
|
|
5
5
|
class Request
|
|
6
6
|
# Create a new request
|
|
7
|
-
def initialize(api_key: ENV['POWELLS_API_KEY']
|
|
7
|
+
def initialize(api_key: ENV['POWELLS_API_KEY'])
|
|
8
8
|
@api_key = api_key
|
|
9
|
-
@api_version = api_version
|
|
10
9
|
end
|
|
11
10
|
|
|
12
11
|
# Retrieve inventory data for a particular ISBN or SKU
|
|
13
12
|
def inventory(isbn_or_sku)
|
|
14
|
-
get('
|
|
13
|
+
get('Inventory', isbn_or_sku)
|
|
15
14
|
end
|
|
16
15
|
|
|
17
16
|
# Retrieve product data for a particular ISBN or SKU
|
|
@@ -33,7 +32,8 @@ module Powells
|
|
|
33
32
|
|
|
34
33
|
# Retrieve product information by way of keywords
|
|
35
34
|
def search(keywords, options = {})
|
|
36
|
-
|
|
35
|
+
encoded_keywords = URI.encode(keywords) + '/'
|
|
36
|
+
get('search', encoded_keywords, options: options)
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
# Retrieve product information for related products
|
|
@@ -47,18 +47,6 @@ module Powells
|
|
|
47
47
|
get('pdxbestsellers', options: options)
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
-
# This feed is what Powell's will use to communicate any known issues with
|
|
51
|
-
# particular API calls or the API in general
|
|
52
|
-
def apistatus
|
|
53
|
-
get('apistatus')
|
|
54
|
-
end
|
|
55
|
-
|
|
56
|
-
# Switch to development environment
|
|
57
|
-
def sandbox
|
|
58
|
-
@api_key = 'testing'
|
|
59
|
-
self
|
|
60
|
-
end
|
|
61
|
-
|
|
62
50
|
# Debug requests
|
|
63
51
|
def debug
|
|
64
52
|
@debug = true
|
|
@@ -68,7 +56,7 @@ module Powells
|
|
|
68
56
|
private
|
|
69
57
|
|
|
70
58
|
def get(*query, options: {})
|
|
71
|
-
path = build_path(query)
|
|
59
|
+
path = build_path(*query)
|
|
72
60
|
options.update(debug: 1) if @debug
|
|
73
61
|
res = http.get(path: path, query: options)
|
|
74
62
|
|
|
@@ -76,15 +64,15 @@ module Powells
|
|
|
76
64
|
end
|
|
77
65
|
|
|
78
66
|
def http
|
|
79
|
-
Excon.new('http://api.powells.com', expects: 200)
|
|
67
|
+
Excon.new('http://api.powells.com:8081', expects: 200)
|
|
80
68
|
end
|
|
81
69
|
|
|
82
|
-
def build_path(
|
|
83
|
-
[
|
|
70
|
+
def build_path(action, id = nil)
|
|
71
|
+
['PowellsApi.svc', action, api_key, id].compact.join('/')
|
|
84
72
|
end
|
|
85
73
|
|
|
86
74
|
def api_key
|
|
87
|
-
@api_key or
|
|
75
|
+
@api_key or fail ArgumentError, 'Missing API key'
|
|
88
76
|
end
|
|
89
77
|
end
|
|
90
78
|
end
|
data/lib/powells/response.rb
CHANGED
data/lib/powells/version.rb
CHANGED
data/test/helper.rb
CHANGED
data/test/test_powells.rb
CHANGED
|
@@ -3,7 +3,7 @@ require_relative 'helper'
|
|
|
3
3
|
class TestPowells < Minitest::Unit::TestCase
|
|
4
4
|
def setup
|
|
5
5
|
VCR.insert_cassette('powells')
|
|
6
|
-
@powells = Powells.new
|
|
6
|
+
@powells = Powells.new
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
def teardown
|
|
@@ -11,21 +11,23 @@ class TestPowells < Minitest::Unit::TestCase
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def test_inventory_isbn
|
|
14
|
-
res = @powells.inventory('
|
|
14
|
+
res = @powells.inventory('9781501107832')
|
|
15
15
|
refute_empty res.to_h
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def test_inventory_sku
|
|
19
|
+
skip('No longer implemented?')
|
|
19
20
|
res = @powells.inventory('17-9780590353427-80')
|
|
20
21
|
refute_empty res.to_h
|
|
21
22
|
end
|
|
22
23
|
|
|
23
24
|
def test_product_isbn
|
|
24
|
-
res = @powells.product('
|
|
25
|
+
res = @powells.product('9781501107832')
|
|
25
26
|
refute_empty res.to_h
|
|
26
27
|
end
|
|
27
28
|
|
|
28
29
|
def test_product_sku
|
|
30
|
+
skip('No longer implemented?')
|
|
29
31
|
res = @powells.product('17-9780590353427-80')
|
|
30
32
|
refute_empty res.to_h
|
|
31
33
|
end
|
|
@@ -36,6 +38,7 @@ class TestPowells < Minitest::Unit::TestCase
|
|
|
36
38
|
end
|
|
37
39
|
|
|
38
40
|
def test_content_sku
|
|
41
|
+
skip('No longer implemented?')
|
|
39
42
|
res = @powells.content('17-9780590353427-80')
|
|
40
43
|
refute_empty res.to_h
|
|
41
44
|
end
|
|
@@ -66,13 +69,14 @@ class TestPowells < Minitest::Unit::TestCase
|
|
|
66
69
|
end
|
|
67
70
|
|
|
68
71
|
def test_apistatus
|
|
69
|
-
skip('
|
|
72
|
+
skip('No longer implemented?')
|
|
70
73
|
res = @powells.apistatus
|
|
71
74
|
refute_empty res.to_h
|
|
72
75
|
end
|
|
73
76
|
|
|
74
77
|
def test_accepts_options
|
|
75
78
|
res = @powells.search('harry potter', per_page: 20)
|
|
79
|
+
skip('No longer implemented?')
|
|
76
80
|
assert_equal 20, res.to_h['results'].count
|
|
77
81
|
end
|
|
78
82
|
|
|
@@ -83,7 +87,7 @@ class TestPowells < Minitest::Unit::TestCase
|
|
|
83
87
|
|
|
84
88
|
def test_api_key_guard
|
|
85
89
|
assert_raises(ArgumentError) do
|
|
86
|
-
Powells.new.search('foo')
|
|
90
|
+
Powells.new(api_key: nil).search('foo')
|
|
87
91
|
end
|
|
88
92
|
end
|
|
89
93
|
end
|
|
@@ -2,2046 +2,699 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: http://api.powells.com/
|
|
5
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/pdxbestsellers/<API_KEY>
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- excon/0.
|
|
11
|
+
- excon/0.45.4
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
15
15
|
message:
|
|
16
16
|
headers:
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
P3P:
|
|
22
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
23
|
-
X-Cacheable:
|
|
24
|
-
- 'YES'
|
|
17
|
+
Cache-Control:
|
|
18
|
+
- no-cache, no-store
|
|
19
|
+
Pragma:
|
|
20
|
+
- no-cache
|
|
25
21
|
Content-Length:
|
|
26
|
-
- '
|
|
27
|
-
Date:
|
|
28
|
-
- Thu, 19 Jun 2014 10:00:01 GMT
|
|
29
|
-
X-Varnish:
|
|
30
|
-
- '1472862715'
|
|
31
|
-
Age:
|
|
32
|
-
- '0'
|
|
33
|
-
Via:
|
|
34
|
-
- 1.1 varnish
|
|
35
|
-
Connection:
|
|
36
|
-
- close
|
|
37
|
-
X-Cache:
|
|
38
|
-
- MISS
|
|
39
|
-
body:
|
|
40
|
-
encoding: UTF-8
|
|
41
|
-
string: '{"msg":[],"input":{"extension":null,"page":"1","per_page":"10","api":"inventory","apikey":"testing"},"status":"success","meta":{"utm_source":"powellsapi","page":"0","last_page":"0","per_page":"10","cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780590353427","120":"http://content-7.powells.com/bookcovers/120/9780590353427"},"author":{"alpha":"Rowling,
|
|
42
|
-
J. K. ","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780590353427?utm_source=powellsapi","page_results":"1","title":"Harry
|
|
43
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","internal":1},"results":{"9780590353427":{"locations":{"powells-books-at-pdx":{"8-9780590353427-7":{"received_date":"20140617","binding":"Trade
|
|
44
|
-
Paper","section":{"minor":"General","major":"Children''s Young Adult"},"author":{"alpha":"Rowling,
|
|
45
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=8-9780590353427-7&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/8-9780590353427-7?utm_source=powellsapi"},"title":"Harry
|
|
46
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"4.95","publisher":"Arthur
|
|
47
|
-
A. Levine Books"}},"powells-books-on-hawthorne":{"7-9780590353427-0":{"received_date":"20140530","shelf_location":"415
|
|
48
|
-
wall","binding":"Trade Paper","section":{"minor":"General","major":"Children''s
|
|
49
|
-
Middle Readers"},"author":{"alpha":"Rowling, J. K. ","proper":"J. K. Rowling"},"qty":"2","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=7-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/7-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
50
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
51
|
-
A. Levine Books"},"7-9780590353427-9":{"received_date":"20140530","shelf_location":"415
|
|
52
|
-
wall","binding":"Trade Paper","section":{"minor":"General","major":"Children''s
|
|
53
|
-
Middle Readers"},"author":{"alpha":"Rowling, J. K. ","proper":"J. K. Rowling"},"qty":"3","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=7-9780590353427-9&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/7-9780590353427-9?utm_source=powellsapi"},"title":"Harry
|
|
54
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"7.50","publisher":"Arthur
|
|
55
|
-
A. Levine Books"},"7-9780590353427-16":{"received_date":"20140613","shelf_location":"415
|
|
56
|
-
wall","binding":"Trade Paper","section":{"minor":"General","major":"Children''s
|
|
57
|
-
Middle Readers"},"author":{"alpha":"Rowling, J. K. ","proper":"J. K. Rowling"},"qty":"2","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=7-9780590353427-16&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/7-9780590353427-16?utm_source=powellsapi"},"title":"Harry
|
|
58
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"6.95","publisher":"Arthur
|
|
59
|
-
A. Levine Books"},"7-9780590353427-8":{"received_date":"20140617","shelf_location":"415
|
|
60
|
-
wall","binding":"Trade Paper","section":{"minor":"General","major":"Children''s
|
|
61
|
-
Middle Readers"},"author":{"alpha":"Rowling, J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=7-9780590353427-8&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/7-9780590353427-8?utm_source=powellsapi"},"title":"Harry
|
|
62
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"5.95","publisher":"Arthur
|
|
63
|
-
A. Levine Books"}},"powells-city-of-books":{"1-9780590353427-0":{"received_date":"20140417","shelf_location":"602-607","binding":"Trade
|
|
64
|
-
Paper","section":{"minor":"General","major":"Children''s Middle Readers"},"author":{"alpha":"Rowling,
|
|
65
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"8","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=1-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/1-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
66
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
67
|
-
A. Levine Books","room_color":"Rose"},"1-9780590353427-66":{"received_date":"20140607","shelf_location":"634","binding":"Trade
|
|
68
|
-
Paper","section":{"minor":"634/TABLE2634","major":"ROSE"},"author":{"alpha":"Rowling,
|
|
69
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"5","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=1-9780590353427-66&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/1-9780590353427-66?utm_source=powellsapi"},"title":"Harry
|
|
70
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
71
|
-
A. Levine Books","room_color":"Rose"},"1-9780590353427-23":{"received_date":"20140614","shelf_location":"602-607","binding":"Trade
|
|
72
|
-
Paper","section":{"minor":"General","major":"Children''s Middle Readers"},"author":{"alpha":"Rowling,
|
|
73
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"7","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=1-9780590353427-23&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/1-9780590353427-23?utm_source=powellsapi"},"title":"Harry
|
|
74
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"6.95","publisher":"Arthur
|
|
75
|
-
A. Levine Books","room_color":"Rose"},"1-9780590353427-57":{"received_date":"20140616","shelf_location":"602-607","binding":"Trade
|
|
76
|
-
Paper","section":{"minor":"General","major":"Children''s Middle Readers"},"author":{"alpha":"Rowling,
|
|
77
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=1-9780590353427-57&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/1-9780590353427-57?utm_source=powellsapi"},"title":"Harry
|
|
78
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"4.95","publisher":"Arthur
|
|
79
|
-
A. Levine Books","room_color":"Rose"},"1-9780590353427-67":{"received_date":"20140615","shelf_location":"602-607","binding":"Trade
|
|
80
|
-
Paper","section":{"minor":"General","major":"Children''s Middle Readers"},"author":{"alpha":"Rowling,
|
|
81
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=1-9780590353427-67&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/1-9780590353427-67?utm_source=powellsapi"},"title":"Harry
|
|
82
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"5.95","publisher":"Arthur
|
|
83
|
-
A. Levine Books","room_color":"Rose"}},"remote-warehouse-ingram-tn":{"61-9780590353427-0":{"received_date":"0","binding":"Trade
|
|
84
|
-
Paper","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
85
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"791","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=61-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/61-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
86
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
87
|
-
A. Levine Books"}},"partner-warehouse-mbs":{"65-9780590353427-2":{"received_date":"0","binding":"Trade
|
|
88
|
-
Paper","section":{"minor":"General","major":"General"},"author":{"alpha":"Rowling,
|
|
89
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"25","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=65-9780590353427-2&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/65-9780590353427-2?utm_source=powellsapi"},"title":"Harry
|
|
90
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"7.00","publisher":"Arthur
|
|
91
|
-
A. Levine Books"}},"powells-books-at-cedar-hills-crossing":{"2-9780590353427-15":{"received_date":"20140609","shelf_location":"207-209","binding":"Trade
|
|
92
|
-
Paper","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
93
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"7","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=2-9780590353427-15&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/2-9780590353427-15?utm_source=powellsapi"},"title":"Harry
|
|
94
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"6.95","publisher":"Arthur
|
|
95
|
-
A. Levine Books"},"2-9780590353427-3":{"received_date":"20140615","shelf_location":"207-209","binding":"Trade
|
|
96
|
-
Paper","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
97
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","product_page":"http://www.powells.com/biblio/2-9780590353427-3?utm_source=powellsapi","title":"Harry
|
|
98
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"4.95","publisher":"Arthur
|
|
99
|
-
A. Levine Books"},"2-9780590353427-0":{"received_date":"20140524","shelf_location":"207-209","binding":"Trade
|
|
100
|
-
Paper","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
101
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=2-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/2-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
102
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
103
|
-
A. Levine Books"}},"local-warehouse-industrial":{"17-9780590353427-312":{"received_date":"20140428","binding":"Trade
|
|
104
|
-
Paper","section":{"minor":"General","major":"Children''s Middle Readers"},"author":{"alpha":"Rowling,
|
|
105
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"1","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=17-9780590353427-312&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/17-9780590353427-312?utm_source=powellsapi"},"title":"Harry
|
|
106
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"Used","price":"7.50","publisher":"Arthur
|
|
107
|
-
A. Levine Books"}},"remote-warehouse-bt-nv":{"73-9780590353427-0":{"received_date":"0","binding":"Mass
|
|
108
|
-
Market","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
109
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"68","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=73-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/73-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
110
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
111
|
-
A. Levine Books"}},"local-warehouse-ingram-or":{"62-9780590353427-0":{"received_date":"0","binding":"Trade
|
|
112
|
-
Paper","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
113
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"239","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=62-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/62-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
114
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
115
|
-
A. Levine Books"}},"remote-warehouse-bt-nj":{"74-9780590353427-0":{"received_date":"0","binding":"Mass
|
|
116
|
-
Market","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
117
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"181","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=74-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/74-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
118
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
119
|
-
A. Levine Books"}},"remote-warehouse-bt-ga":{"71-9780590353427-0":{"received_date":"0","binding":"Mass
|
|
120
|
-
Market","section":{"minor":"Science Fiction and Fantasy","major":"Children''s"},"author":{"alpha":"Rowling,
|
|
121
|
-
J. K. ","proper":"J. K. Rowling"},"qty":"33","site_links":{"add_to_cart":"http://www.powells.com/cgi-bin/Shopping_cart?add=71-9780590353427-0&utm_source=powellsapi","product_page":"http://www.powells.com/biblio/71-9780590353427-0?utm_source=powellsapi"},"title":"Harry
|
|
122
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","isbn":"9780590353427","class":"New","price":"10.99","publisher":"Arthur
|
|
123
|
-
A. Levine Books"}}}}}}'
|
|
124
|
-
http_version:
|
|
125
|
-
recorded_at: Thu, 19 Jun 2014 10:00:04 GMT
|
|
126
|
-
- request:
|
|
127
|
-
method: get
|
|
128
|
-
uri: http://api.powells.com/v0c/testing/recommendation/9780590353427
|
|
129
|
-
body:
|
|
130
|
-
encoding: US-ASCII
|
|
131
|
-
string: ''
|
|
132
|
-
headers:
|
|
133
|
-
User-Agent:
|
|
134
|
-
- excon/0.37.0
|
|
135
|
-
response:
|
|
136
|
-
status:
|
|
137
|
-
code: 200
|
|
138
|
-
message:
|
|
139
|
-
headers:
|
|
140
|
-
Server:
|
|
141
|
-
- Apache
|
|
22
|
+
- '17827'
|
|
142
23
|
Content-Type:
|
|
143
|
-
- application/json; charset=
|
|
144
|
-
|
|
145
|
-
-
|
|
146
|
-
X-Cacheable:
|
|
147
|
-
- 'YES'
|
|
148
|
-
Content-Length:
|
|
149
|
-
- '4455'
|
|
150
|
-
Date:
|
|
151
|
-
- Thu, 19 Jun 2014 10:00:03 GMT
|
|
152
|
-
X-Varnish:
|
|
153
|
-
- '1472862753'
|
|
154
|
-
Age:
|
|
155
|
-
- '0'
|
|
156
|
-
Via:
|
|
157
|
-
- 1.1 varnish
|
|
158
|
-
Connection:
|
|
159
|
-
- close
|
|
160
|
-
X-Cache:
|
|
161
|
-
- MISS
|
|
162
|
-
body:
|
|
163
|
-
encoding: UTF-8
|
|
164
|
-
string: '{"msg":[],"input":{"extension":null,"page":"1","per_page":"10","api":"recommendation","apikey":"testing"},"status":"success","meta":{"utm_source":"powellsapi","internal":1},"results":{"9780767908474":{"product_page":"http://www.powells.com/biblio/9780767908474?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780767908474","120":"http://content-4.powells.com/bookcovers/120/9780767908474"},"author":{"alpha":"Allan
|
|
165
|
-
Zola Kronzek and Elizabeth Kronzek","proper":"Allan Zola Kronzek and Elizabeth
|
|
166
|
-
Kronzek"},"title":"The Sorcerer''s Companion: A Guide to the Magical World
|
|
167
|
-
of Harry Potter"},"9780439314558":{"product_page":"http://www.powells.com/biblio/9780439314558?utm_source=powellsapi","cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9780439314558","120":"http://content-8.powells.com/bookcovers/120/9780439314558"},"author":{"alpha":"Fraser,
|
|
168
|
-
Lindsey","proper":"Lindsey Fraser"},"title":"Conversations with J.K. Rowling"},"9780064407663":{"product_page":"http://www.powells.com/biblio/9780064407663?utm_source=powellsapi","cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9780064407663","120":"http://content-3.powells.com/bookcovers/120/9780064407663"},"author":{"alpha":"Snicket,
|
|
169
|
-
Lemony","proper":"Lemony Snicket"},"title":"A Series of Unfortunate Events
|
|
170
|
-
#1: The Bad Beginning"},"9780440498056":{"product_page":"http://www.powells.com/biblio/9780440498056?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780440498056","120":"http://content-6.powells.com/bookcovers/120/9780440498056"},"author":{"alpha":"L''Engle,
|
|
171
|
-
Madeleine ","proper":"Madeleine L''Engle"},"title":"A Wrinkle in Time "},"9780064400558":{"product_page":"http://www.powells.com/biblio/9780064400558?utm_source=powellsapi","cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9780064400558","120":"http://content-8.powells.com/bookcovers/120/9780064400558"},"author":{"alpha":"White,
|
|
172
|
-
E B","proper":"E B White"},"title":"Charlotte''s Web (Trophy Newbery)"},"9780439139601":{"product_page":"http://www.powells.com/biblio/9780439139601?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780439139601","120":"http://content-1.powells.com/bookcovers/120/9780439139601"},"author":{"alpha":"Rowling,
|
|
173
|
-
J. K.","proper":"J. K. Rowling"},"title":"Harry Potter and the Goblet of Fire
|
|
174
|
-
(Harry Potter #4)"},"9780374332655":{"product_page":"http://www.powells.com/biblio/9780374332655?utm_source=powellsapi","cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9780374332655","120":"http://content-5.powells.com/bookcovers/120/9780374332655"},"author":{"alpha":"Sachar,
|
|
175
|
-
Louis","proper":"Louis Sachar"},"title":"Holes"},"9780786808557":{"product_page":"http://www.powells.com/biblio/9780786808557?utm_source=powellsapi","cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780786808557","120":"http://content-7.powells.com/bookcovers/120/9780786808557"},"author":{"alpha":"Colfer,
|
|
176
|
-
Eoin","proper":"Eoin Colfer"},"title":"Artemis Fowl: The Arctic Incident"},"9780060930530":{"product_page":"http://www.powells.com/biblio/9780060930530?utm_source=powellsapi","cover_images":{"60":"http://www.powells.com/bookcovers/60/9780060930530","120":"http://www.powells.com/bookcovers/120/9780060930530"},"author":{"alpha":"Kingsolver,
|
|
177
|
-
Barbara","proper":"Barbara Kingsolver"},"title":"The Poisonwood Bible"},"9780380709564":{"product_page":"http://www.powells.com/biblio/9780380709564?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780380709564","120":"http://content-4.powells.com/bookcovers/120/9780380709564"},"author":{"alpha":"Cleary,
|
|
178
|
-
Beverly","proper":"Beverly Cleary"},"title":"Ramona Quimby, Age 8 (Avon Camelot
|
|
179
|
-
Books)"},"9780141326191":{"product_page":"http://www.powells.com/biblio/9780141326191?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/images/noimage60.gif","120":"http://content-1.powells.com/images/noimage120.gif"},"author":{"alpha":"Dahl,
|
|
180
|
-
Roald","proper":"Roald Dahl"},"title":"Charlie & the Chocolate Factory"},"9780786816156":{"product_page":"http://www.powells.com/biblio/9780786816156?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780786816156","120":"http://content-6.powells.com/bookcovers/120/9780786816156"},"author":{"alpha":"Chabon,
|
|
181
|
-
Michael","proper":"Michael Chabon"},"title":"Summerland"}}}'
|
|
182
|
-
http_version:
|
|
183
|
-
recorded_at: Thu, 19 Jun 2014 10:00:05 GMT
|
|
184
|
-
- request:
|
|
185
|
-
method: get
|
|
186
|
-
uri: http://api.powells.com/v0c/testing/inventory/17-9780590353427-80
|
|
187
|
-
body:
|
|
188
|
-
encoding: US-ASCII
|
|
189
|
-
string: ''
|
|
190
|
-
headers:
|
|
191
|
-
User-Agent:
|
|
192
|
-
- excon/0.37.0
|
|
193
|
-
response:
|
|
194
|
-
status:
|
|
195
|
-
code: 200
|
|
196
|
-
message:
|
|
197
|
-
headers:
|
|
24
|
+
- application/json; charset=utf-8
|
|
25
|
+
Expires:
|
|
26
|
+
- "-1"
|
|
198
27
|
Server:
|
|
199
|
-
-
|
|
200
|
-
|
|
201
|
-
-
|
|
202
|
-
|
|
203
|
-
-
|
|
204
|
-
X-
|
|
205
|
-
-
|
|
206
|
-
|
|
207
|
-
-
|
|
28
|
+
- Microsoft-IIS/7.5
|
|
29
|
+
Access-Control-Allow-Origin:
|
|
30
|
+
- "*"
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- ASP.NET_SessionId=abwgzbgbver0gwybbmvatff2; path=/; HttpOnly
|
|
33
|
+
X-AspNet-Version:
|
|
34
|
+
- 4.0.30319
|
|
35
|
+
X-Powered-By:
|
|
36
|
+
- ASP.NET
|
|
208
37
|
Date:
|
|
209
|
-
-
|
|
210
|
-
X-Varnish:
|
|
211
|
-
- '1472862775'
|
|
212
|
-
Age:
|
|
213
|
-
- '0'
|
|
214
|
-
Via:
|
|
215
|
-
- 1.1 varnish
|
|
216
|
-
Connection:
|
|
217
|
-
- close
|
|
218
|
-
X-Cache:
|
|
219
|
-
- MISS
|
|
38
|
+
- Sat, 05 Dec 2015 11:30:54 GMT
|
|
220
39
|
body:
|
|
221
40
|
encoding: UTF-8
|
|
222
|
-
string: '{"msg":[],"input":{"extension":
|
|
41
|
+
string: '{"$VAR1":[{"msg":"[]","input":[{"extension":"data","page":"1","per_page":"10","api":"pdxbestsellers","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","partner_id":"37023","Internal":1}],"results":[{"product_page":"http://www.powells.com/book/Harry-Potter-Coloring-Book-1-9781338029994?partnerid=37023&p_wgt","title":"Harry
|
|
42
|
+
Potter: Coloring Book #1","isbn":"9781338029994","author":"Scholastic Inc.","publisher":"SCHOLASTIC
|
|
43
|
+
INC.","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781338029994.jpg","listing_price":"15.99"},{"product_page":"http://www.powells.com/book/Mindfulness-Coloring-Book-Volume-2-Anti-Stress-Art-Therapy-for-Busy-People-9781615193028?partnerid=37023&p_wgt","title":"Mindfulness
|
|
44
|
+
Coloring Book, Volume 2: Anti Stress Art Therapy for Busy People","isbn":"9781615193028","author":"Emma
|
|
45
|
+
Farrarons","publisher":"Experiment","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781615193028.jpg","listing_price":"9.95"},{"product_page":"http://www.powells.com/book/Portlandness-A-Cultural-Atlas-of-Portland-9781632170002?partnerid=37023&p_wgt","title":"Portlandness:
|
|
46
|
+
A Cultural Atlas of Portland","isbn":"9781632170002","author":"David Banis
|
|
47
|
+
and Hunter Shobe","publisher":"Sasquatch Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781632170002.jpg","listing_price":"24.95"},{"product_page":"http://www.powells.com/book/S.-P.-Q.-R.-A-History-of-Ancient-Rome-9780871404237?partnerid=37023&p_wgt","title":"S.
|
|
48
|
+
P. Q. R.: A History of Ancient Rome","isbn":"9780871404237","author":"Mary
|
|
49
|
+
Beard","publisher":"Liveright Publishing Corporation","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780871404237.jpg","listing_price":"35"},{"product_page":"http://www.powells.com/book/Between-the-World-and-Me-9780812993547?partnerid=37023&p_wgt","title":"Between
|
|
50
|
+
the World and Me","isbn":"9780812993547","author":"Ta-Nehisi Coates","publisher":"SPIEGEL
|
|
51
|
+
& GRAU","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780812993547.jpg","listing_price":"24"},{"product_page":"http://www.powells.com/book/How-to-Be-Both-9780307275257?partnerid=37023&p_wgt","title":"How
|
|
52
|
+
to Be Both","isbn":"9780307275257","author":"Ali Smith","publisher":"Anchor
|
|
53
|
+
Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780307275257.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/The-Martian-9780553418026?partnerid=37023&p_wgt","title":"The
|
|
54
|
+
Martian","isbn":"9780553418026","author":"Andy Weir","publisher":"Broadway
|
|
55
|
+
Books","cover_images":"http://covers.powells.com/9780553418026.jpg","listing_price":"15"},{"product_page":"http://www.powells.com/book/Notorious-RBG-The-Life-and-Times-of-Ruth-Bader-Ginsburg-9780062415837?partnerid=37023&p_wgt","title":"Notorious
|
|
56
|
+
RBG: The Life and Times of Ruth Bader Ginsburg","isbn":"9780062415837","author":"Irin
|
|
57
|
+
Carmon and Shana Knizhnik","publisher":"HARPERCOLLINS PUBLISHERS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780062415837.jpg","listing_price":"19.99"},{"product_page":"http://www.powells.com/book/Lost-Ocean-An-Underwater-Adventure-and-Coloring-Book-9780143108993?partnerid=37023&p_wgt","title":"Lost
|
|
58
|
+
Ocean: An Underwater Adventure and Coloring Book","isbn":"9780143108993","author":"Johanna
|
|
59
|
+
Basford","publisher":"Penguin Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780143108993.jpg","listing_price":"16.95"},{"product_page":"http://www.powells.com/book/Good-and-Cheap-Eat-Well-on-$4-per-Day-9780761184997?partnerid=37023&p_wgt","title":"Good
|
|
60
|
+
and Cheap: Eat Well on $4 per Day","isbn":"9780761184997","author":"Leanne
|
|
61
|
+
Brown","publisher":"WORKMAN PUBLISHING CO INC","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780761184997.jpg","listing_price":"16.95"},{"product_page":"http://www.powells.com/book/The-Moors-Account-9780804170628?partnerid=37023&p_wgt","title":"The
|
|
62
|
+
Moors Account","isbn":"9780804170628","author":"Laila Lalami","publisher":"VINTAGE
|
|
63
|
+
BOOKS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780804170628.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Posh-Adult-Coloring-Book-Soothing-Designs-for-Fun-and-Relaxation-9781449472009?partnerid=37023&p_wgt","title":"Posh
|
|
64
|
+
Adult Coloring Book: Soothing Designs for Fun and Relaxation","isbn":"9781449472009","author":"Michael
|
|
65
|
+
O''Mara Books, Ltd","publisher":"ANDREWS MCMEEL PUBLISHING","cover_images":"http://covers.powells.com/9781449472009.jpg","listing_price":"12.99"},{"product_page":"http://www.powells.com/book/Calming-Therapy-An-Anti-Stress-Coloring-Book-9780762459605?partnerid=37023&p_wgt","title":"Calming
|
|
66
|
+
Therapy: An Anti-Stress Coloring Book","isbn":"9780762459605","author":"Running
|
|
67
|
+
Press","publisher":"RUNNING PRESS","cover_images":"http://covers.powells.com/9780762459605.jpg","listing_price":"15"},{"product_page":"http://www.powells.com/book/3D-Coloring-Animals-9781626864580?partnerid=37023&p_wgt","title":"3D
|
|
68
|
+
Coloring Animals","isbn":"9781626864580","author":"Hannah Davies","publisher":"THUNDER
|
|
69
|
+
BAY PRESS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781626864580.jpg","listing_price":"14.95"},{"product_page":"http://www.powells.com/book/Outside-the-Lines-Too-An-Inspired-and-Inventive-Coloring-Book-by-Contemporary-Artists-9780399172052?partnerid=37023&p_wgt","title":"Outside
|
|
70
|
+
the Lines, Too: An Inspired and Inventive Coloring Book by Contemporary Artists","isbn":"9780399172052","author":"Souris
|
|
71
|
+
Hong","publisher":"Perigee Books","cover_images":"http://covers.powells.com/9780399172052.jpg","listing_price":"18"},{"product_page":"http://www.powells.com/book/Color-the-Natural-World-A-Timber-Press-Coloring-Book-9781604697186?partnerid=37023&p_wgt","title":"Color
|
|
72
|
+
the Natural World: A Timber Press Coloring Book","isbn":"9781604697186","author":"Zoe
|
|
73
|
+
Keller","publisher":"TIMBER PRESS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781604697186.jpg","listing_price":"12.95"},{"product_page":"http://www.powells.com/book/Enchanted-Forest-An-Inky-Quest-and-Coloring-Book-9781780674889?partnerid=37023&p_wgt","title":"Enchanted
|
|
74
|
+
Forest: An Inky Quest and Coloring Book","isbn":"9781780674889","author":"Johanna
|
|
75
|
+
Basford","publisher":"Chronicle Books","cover_images":"http://covers.powells.com/9781780674889.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Some-Luck-9780307744807?partnerid=37023&p_wgt","title":"Some
|
|
76
|
+
Luck","isbn":"9780307744807","author":"Jane Smiley","publisher":"PENGUIN RANDOM
|
|
77
|
+
HOUSE","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780307744807.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Fantastic-Cities-9781452149578?partnerid=37023&p_wgt","title":"Fantastic
|
|
78
|
+
Cities","isbn":"9781452149578","author":"Steve McDonald","publisher":"Chronicle
|
|
79
|
+
Books (CA)","cover_images":"http://covers.powells.com/9781452149578.jpg","listing_price":"14.95"},{"product_page":"http://www.powells.com/book/My-Brilliant-Friend-9781609450786?partnerid=37023&p_wgt","title":"My
|
|
80
|
+
Brilliant Friend","isbn":"9781609450786","author":"Elena Ferrante","publisher":"EUROPA
|
|
81
|
+
EDITIONS","cover_images":"http://covers.powells.com/9781609450786.jpg","listing_price":"17"},{"product_page":"http://www.powells.com/book/Just-Mercy-A-Story-of-Justice-and-Redemption-9780812984965?partnerid=37023&p_wgt","title":"Just
|
|
82
|
+
Mercy: A Story of Justice and Redemption","isbn":"9780812984965","author":"Bryan
|
|
83
|
+
Stevenson","publisher":"SPIEGRA","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780812984965.jpg","listing_price":"16"},{"product_page":"http://www.powells.com/book/All-the-Light-We-Cannot-See-9781476746586?partnerid=37023&p_wgt","title":"All
|
|
84
|
+
the Light We Cannot See","isbn":"9781476746586","author":"Anthony Doerr","publisher":"SIMON
|
|
85
|
+
& SCHUSTER TRADE","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781476746586.jpg","listing_price":"29.7"},{"product_page":"http://www.powells.com/book/garden-Coloring-Book-9784768305911?partnerid=37023&p_wgt","title":"garden
|
|
86
|
+
Coloring Book","isbn":"9784768305911","author":"garden","publisher":"Genkosha","cover_images":"http://powells-covers-2.s3.amazonaws.com/9784768305911.jpg","listing_price":"12.95"},{"product_page":"http://www.powells.com/book/Fields-of-Blood-Religion-and-the-History-of-Violence-9780307946966?partnerid=37023&p_wgt","title":"Fields
|
|
87
|
+
of Blood: Religion and the History of Violence","isbn":"9780307946966","author":"Karen
|
|
88
|
+
Armstrong","publisher":"Anchor Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780307946966.jpg","listing_price":"16.95"},{"product_page":"http://www.powells.com/book/Hidden-Nature-A-Coloring-Book-for-Grown-Ups-9788415967729?partnerid=37023&p_wgt","title":"Hidden
|
|
89
|
+
Nature: A Coloring Book for Grown Ups","isbn":"9788415967729","author":"Toc
|
|
90
|
+
de Groc","publisher":"Promopress","cover_images":"http://covers.powells.com/9788415967729.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Still-Life-with-Bread-Crumbs-9780812976892?partnerid=37023&p_wgt","title":"Still
|
|
91
|
+
Life with Bread Crumbs","isbn":"9780812976892","author":"Anna Quindlen","publisher":"Random
|
|
92
|
+
House Trade","cover_images":"http://covers.powells.com/9780812976892.jpg","listing_price":"16"},{"product_page":"http://www.powells.com/book/The-Bone-Clocks-9780812976823?partnerid=37023&p_wgt","title":"The
|
|
93
|
+
Bone Clocks","isbn":"9780812976823","author":"David Mitchell","publisher":"PENGUIN
|
|
94
|
+
RANDOM HOUSE","cover_images":"http://covers.powells.com/9780812976823.jpg","listing_price":"18"},{"product_page":"http://www.powells.com/book/The-Sleeper-and-the-Spindle-9780062398246?partnerid=37023&p_wgt","title":"The
|
|
95
|
+
Sleeper and the Spindle","isbn":"9780062398246","author":"Neil Gaiman and
|
|
96
|
+
Chris Riddell","publisher":"HarperCollins Publishers","cover_images":"http://covers.powells.com/9780062398246.jpg","listing_price":"19.99"},{"product_page":"http://www.powells.com/book/Atlas-of-Cursed-Places-A-Guide-to-Where-You-Dont-Want-to-Go-9781631910005?partnerid=37023&p_wgt","title":"Atlas
|
|
97
|
+
of Cursed Places: A Guide to Where You Dont Want to Go","isbn":"9781631910005","author":"Olivier
|
|
98
|
+
Le Carrer","publisher":"BLACK DOG & LEVENTHAL","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781631910005.jpg","listing_price":"24.99"},{"product_page":"http://www.powells.com/book/Joan-of-Arc-A-Life-Transfigured-9780767932493?partnerid=37023&p_wgt","title":"Joan
|
|
99
|
+
of Arc: A Life Transfigured","isbn":"9780767932493","author":"Kathryn Harrison","publisher":"Anchor
|
|
100
|
+
Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780767932493.jpg","listing_price":"16.95"},{"product_page":"http://www.powells.com/book/The-Official-A-Game-of-Thrones-Coloring-Book-9781101965764?partnerid=37023&p_wgt","title":"The
|
|
101
|
+
Official A Game of Thrones Coloring Book","isbn":"9781101965764","author":"George
|
|
102
|
+
R.R. Martin","publisher":"Bantam Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781101965764.jpg","listing_price":"16.95"},{"product_page":"http://www.powells.com/book/The-Life-Changing-Magic-of-Tidying-Up-9781607747307?partnerid=37023&p_wgt","title":"The
|
|
103
|
+
Life-Changing Magic of Tidying Up","isbn":"9781607747307","author":"Marie
|
|
104
|
+
Kondo","publisher":"Ten Speed Press","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781607747307.jpg","listing_price":"16.99"},{"product_page":"http://www.powells.com/book/Welcome-to-Night-Vale-9780062351425?partnerid=37023&p_wgt","title":"Welcome
|
|
105
|
+
to Night Vale","isbn":"9780062351425","author":"Joseph Fink and Jeffrey Cranor","publisher":"Harper
|
|
106
|
+
Perennial","cover_images":"http://covers.powells.com/9780062351425.jpg","listing_price":"19.99"},{"product_page":"http://www.powells.com/book/My-Life-on-the-Road-9780679456209?partnerid=37023&p_wgt","title":"My
|
|
107
|
+
Life on the Road","isbn":"9780679456209","author":"Gloria Steinem","publisher":"PENGUIN
|
|
108
|
+
RANDOM HOUSE","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780679456209.jpg","listing_price":"28"},{"product_page":"http://www.powells.com/book/The-Best-Places-to-Pee-A-Guide-to-the-Funky-and-Fabulous-Bathrooms-of-Portland-9780985189303?partnerid=37023&p_wgt","title":"The
|
|
109
|
+
Best Places to Pee: A Guide to the Funky and Fabulous Bathrooms of Portland","isbn":"9780985189303","author":"Kelly
|
|
110
|
+
Melillo","publisher":"Silent 7 Publishing","cover_images":"http://covers.powells.com/9780985189303.jpg","listing_price":""},{"product_page":"http://www.powells.com/book/What-If-Serious-Scientific-Answers-to-Absurd-Hypothetical-Questions-9780544272996?partnerid=37023&p_wgt","title":"What
|
|
111
|
+
If Serious Scientific Answers to Absurd Hypothetical Questions","isbn":"9780544272996","author":"Randall
|
|
112
|
+
Munroe","publisher":"HOUGHTON MIFFLIN HARCOURT","cover_images":"http://covers.powells.com/9780544272996.jpg","listing_price":"24"},{"product_page":"http://www.powells.com/book/Furiously-Happy-A-Funny-Book-About-Horrible-Things-9781250077004?partnerid=37023&p_wgt","title":"Furiously
|
|
113
|
+
Happy: A Funny Book About Horrible Things","isbn":"9781250077004","author":"Jenny
|
|
114
|
+
Lawson","publisher":"Flatiron Books","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781250077004.jpg","listing_price":"26.99"},{"product_page":"http://www.powells.com/book/Wildwood-Chronicles-01-Wildwood-9780062024701?partnerid=37023&p_wgt","title":"Wildwood
|
|
115
|
+
Chronicles 01 Wildwood","isbn":"9780062024701","author":"Colin Meloy, Carson
|
|
116
|
+
Ellis","publisher":"HARPERCOLLINS PUBLISHERS","cover_images":"http://testing-uat-covers.s3.amazonaws.com/9780062024701.jpg","listing_price":"8.99"},{"product_page":"http://www.powells.com/book/Alexander-Hamilton-9780143034759?partnerid=37023&p_wgt","title":"Alexander
|
|
117
|
+
Hamilton","isbn":"9780143034759","author":"Ron Chernow","publisher":"PENGUIN
|
|
118
|
+
PUTNAM TRADE","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780143034759.jpg","listing_price":"20"},{"product_page":"http://www.powells.com/book/Invention-of-Nature-Alexander-von-Humboldts-New-World-9780385350662?partnerid=37023&p_wgt","title":"Invention
|
|
119
|
+
of Nature Alexander von Humboldts New World","isbn":"9780385350662","author":"Andrea
|
|
120
|
+
Wulf","publisher":"Knopf Publishing Group","cover_images":"http://www.powells.com/PORTALS/0/IMAGES/NOIMAGEAVAILABLE.GIF","listing_price":"30"},{"product_page":"http://www.powells.com/book/Hausfrau-9780812987294?partnerid=37023&p_wgt","title":"Hausfrau","isbn":"9780812987294","author":"Jill
|
|
121
|
+
Alexander Essbaum","publisher":"Random House Trade","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780812987294.jpg","listing_price":"16"},{"product_page":"http://www.powells.com/book/Thing-Explainer-Complicated-Stuff-in-Simple-Words-9780544668256?partnerid=37023&p_wgt","title":"Thing
|
|
122
|
+
Explainer: Complicated Stuff in Simple Words","isbn":"9780544668256","author":"Randall
|
|
123
|
+
Munroe","publisher":"Houghton Mifflin","cover_images":"http://powells-covers-2.s3.amazonaws.com/9780544668256.jpg","listing_price":"24.95"},{"product_page":"http://www.powells.com/book/Vorrh-9781101873786?partnerid=37023&p_wgt","title":"Vorrh","isbn":"9781101873786","author":"Brian
|
|
124
|
+
Catling","publisher":"VINTAGE BOOKS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781101873786.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Vorrh-9781101873786?partnerid=37023&p_wgt","title":"Vorrh","isbn":"9781101873786","author":"Brian
|
|
125
|
+
Catling","publisher":"VINTAGE BOOKS","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781101873786.jpg","listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Lucky-Us-A-Novel-9780812978940?partnerid=37023&p_wgt","title":"Lucky
|
|
126
|
+
Us: A Novel","isbn":"9780812978940","author":"Amy Bloom","publisher":"PENGUIN
|
|
127
|
+
RANDOM HOUSE","cover_images":"http://covers.powells.com/9780812978940.jpg","listing_price":"16"},{"product_page":"http://www.powells.com/book/The-Book-of-Strange-New-Things-9780553418866?partnerid=37023&p_wgt","title":"The
|
|
128
|
+
Book of Strange New Things","isbn":"9780553418866","author":"Michel Faber","publisher":"HOGARTH
|
|
129
|
+
PRESS (ENGLAND)","cover_images":"http://covers.powells.com/9780553418866.jpg","listing_price":"17"},{"product_page":"http://www.powells.com/book/How-about-Never-Is-Never-Good-for-You-A-Life-in-Cartoons-9780805095906?partnerid=37023&p_wgt","title":"How
|
|
130
|
+
about Never Is Never Good for You A Life in Cartoons","isbn":"9780805095906","author":"Bob
|
|
131
|
+
Mankoff","publisher":"Henry Holt & Company","cover_images":"http://covers.powells.com/9780805095906.jpg","listing_price":"32.5"},{"product_page":"http://www.powells.com/book/Beyond-Words-What-Animals-Think-&-Feel-9780805098884?partnerid=37023&p_wgt","title":"Beyond
|
|
132
|
+
Words What Animals Think & Feel","isbn":"9780805098884","author":"Carl Safina","publisher":"HENRY
|
|
133
|
+
HOLT & CO","cover_images":"http://covers.powells.com/9780805098884.jpg","listing_price":"32"},{"product_page":"http://www.powells.com/book/Naughty-Mabel-9781481430227?partnerid=37023&p_wgt","title":"Naughty
|
|
134
|
+
Mabel","isbn":"9781481430227","author":"Nathan Lane, Devlin Elliott, Dan Krall","publisher":"Simon
|
|
135
|
+
& Schuster Books for Young Readers","cover_images":"http://covers.powells.com/9781481430227.jpg","listing_price":"17.99"},{"product_page":"http://www.powells.com/book/Hunger-Makes-Me-a-Modern-Girl-A-Memoir-9781594486630?partnerid=37023&p_wgt","title":"Hunger
|
|
136
|
+
Makes Me a Modern Girl: A Memoir","isbn":"9781594486630","author":"Carrie
|
|
137
|
+
Brownstein","publisher":"Riverhead Books","cover_images":"http://covers.powells.com/9781594486630.jpg","listing_price":"27.95"},{"product_page":"http://www.powells.com/book/Tangled-Treasures-Coloring-Book-50-Intricate-Tangle-Drawings-to-Color-with-Pens-Markers-or-Pencils-9781589238954?partnerid=37023&p_wgt","title":"Tangled
|
|
138
|
+
Treasures Coloring Book: 50 Intricate Tangle Drawings to Color with Pens,
|
|
139
|
+
Markers, or Pencils","isbn":"9781589238954","author":"Jane Monk","publisher":"CREATIVE
|
|
140
|
+
PUBLISHING INTERNATIONAL","cover_images":"http://powells-covers-2.s3.amazonaws.com/9781589238954.jpg","listing_price":"19.99"}]}]}'
|
|
223
141
|
http_version:
|
|
224
|
-
recorded_at:
|
|
142
|
+
recorded_at: Sat, 05 Dec 2015 11:30:55 GMT
|
|
225
143
|
- request:
|
|
226
144
|
method: get
|
|
227
|
-
uri: http://api.powells.com/
|
|
145
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/Inventory/<API_KEY>/9781501107832
|
|
228
146
|
body:
|
|
229
147
|
encoding: US-ASCII
|
|
230
148
|
string: ''
|
|
231
149
|
headers:
|
|
232
150
|
User-Agent:
|
|
233
|
-
- excon/0.
|
|
151
|
+
- excon/0.45.4
|
|
234
152
|
response:
|
|
235
153
|
status:
|
|
236
154
|
code: 200
|
|
237
155
|
message:
|
|
238
156
|
headers:
|
|
239
|
-
|
|
240
|
-
-
|
|
241
|
-
|
|
242
|
-
-
|
|
243
|
-
P3P:
|
|
244
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
245
|
-
X-Cacheable:
|
|
246
|
-
- 'YES'
|
|
157
|
+
Cache-Control:
|
|
158
|
+
- no-cache, no-store
|
|
159
|
+
Pragma:
|
|
160
|
+
- no-cache
|
|
247
161
|
Content-Length:
|
|
248
|
-
- '
|
|
249
|
-
Date:
|
|
250
|
-
- Thu, 19 Jun 2014 10:00:06 GMT
|
|
251
|
-
X-Varnish:
|
|
252
|
-
- '1472862783'
|
|
253
|
-
Age:
|
|
254
|
-
- '0'
|
|
255
|
-
Via:
|
|
256
|
-
- 1.1 varnish
|
|
257
|
-
Connection:
|
|
258
|
-
- close
|
|
259
|
-
X-Cache:
|
|
260
|
-
- MISS
|
|
261
|
-
body:
|
|
262
|
-
encoding: UTF-8
|
|
263
|
-
string: '{"msg":[],"input":{"extension":null,"page":"1","per_page":"10","api":"search","apikey":"testing"},"status":"success","meta":{"utm_source":"powellsapi","page":1,"last_page":64,"per_page":10,"page_results":"639","internal":1},"results":[{"cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9780545615402","120":"http://content-2.powells.com/bookcovers/120/9780545615402"},"related_isbns":["9780545615402"],"author":{"alpha":"Hermione
|
|
264
|
-
Granger (trn)","proper":"Hermione Granger (trn)"},"product_page":"http://www.powells.com/biblio/9780545615402?utm_source=powellsapi","isbn":"9780545615402","title":"The
|
|
265
|
-
Hogwarts Library (Harry Potter)","publisher":"Scholastic","list_prices":{"29.99":1}},{"cover_images":{"60":"http://content-0.powells.com/bookcovers/60/9781608870080","120":"http://content-0.powells.com/bookcovers/120/9781608870080"},"related_isbns":["9781608870080"],"author":{"alpha":"Jk
|
|
266
|
-
Rowling","proper":"Jk Rowling"},"product_page":"http://www.powells.com/biblio/9781608870080?utm_source=powellsapi","isbn":"9781608870080","title":"Harry
|
|
267
|
-
Potter: A Pop-Up Book: Based on the Film Phenomenon","publisher":"Insight
|
|
268
|
-
Editions","list_prices":{"0.00":1}},{"cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780590353427","120":"http://content-7.powells.com/bookcovers/120/9780590353427"},"related_isbns":["9780590353427","9780439203524","9780439211161","9780439332972","9780439362139","9780439366731","9780439554930","9780553668384","9780590353403","9780606170970","9780606172332","9780606216067","9780613206334","9780613959926","9780736690003","9780545069670"],"author":{"alpha":"J.
|
|
269
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780590353427?utm_source=powellsapi","isbn":"9780590353427","title":"Harry
|
|
270
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","publisher":"Arthur A.
|
|
271
|
-
Levine Books","list_prices":{"10.99":1}},{"cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9780439064873","120":"http://content-3.powells.com/bookcovers/120/9780439064873"},"related_isbns":["9780439064873","9780195798760","9780439064866","9780439107341","9780439138079","9780439203531","9780439211147","9780439221306","9780439221313","9780439420105","9780439438773","9780439438780","9780439451932","9780439554893","9780553668704"],"author":{"alpha":"J.
|
|
272
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439064873?utm_source=powellsapi","isbn":"9780439064873","title":"Harry
|
|
273
|
-
Potter and the Chamber of Secrets (2)","publisher":"Scholastic","list_prices":{"10.99":1}},{"cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9780439136365","120":"http://content-5.powells.com/bookcovers/120/9780439136365"},"related_isbns":["9780439136365","9780439144155","9780439211154","9780439321471","9780439321488","9780439554923","9780439655484","9780439661966","9780606215848","9780613371063","9780736691314","9780786222742","9780807282311","9780807282328","9780439136358"],"author":{"alpha":"J.
|
|
274
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439136365?utm_source=powellsapi","isbn":"9780439136365","title":"Harry
|
|
275
|
-
Potter and the Prisoner of Azkaban (Harry Potter #3)","publisher":"Scholastic","list_prices":{"10.99":1}},{"cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780439139601","120":"http://content-1.powells.com/bookcovers/120/9780439139601"},"related_isbns":["9780439139601","9780439139595","9780439231947","9780439554909","9780606212274","9780606250337","9780613359573","9780613496742","9780736655194","9780786229277","9780807282588","9780807282595","9780807286036","9780807287934","9781594130038"],"author":{"alpha":"J.
|
|
276
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439139601?utm_source=powellsapi","isbn":"9780439139601","title":"Harry
|
|
277
|
-
Potter and the Goblet of Fire (Harry Potter #4)","publisher":"Scholastic Paperbacks","list_prices":{"12.99":1}},{"cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780439358071","120":"http://content-1.powells.com/bookcovers/120/9780439358071"},"related_isbns":["9780439358071","9780439358064","9780439567619","9780439567626","9780439686518","9780439686525","9780439686532","9780439701952","9780439715119","9780439719858","9780606298889","9780606305761","9780613996785","9780613999168","9780786257782"],"author":{"alpha":"J.
|
|
278
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439358071?utm_source=powellsapi","isbn":"9780439358071","title":"Harry
|
|
279
|
-
Potter and the Order of the Phoenix (Harry Potter #05)","publisher":"Scholastic
|
|
280
|
-
Paperbacks","list_prices":{"12.99":1}},{"cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780545010221","120":"http://content-1.powells.com/bookcovers/120/9780545010221"},"related_isbns":["9780545010221","9780545029360","9780545029377","9785557850902","9785557850919","9780739360385","9780739360392","9780786296651","9785557758994","9785557759007","9788498381450","9788498381467","9780545139700","9781594133558","9784915512636"],"author":{"alpha":"J.
|
|
281
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780545010221?utm_source=powellsapi","isbn":"9780545010221","title":"Harry
|
|
282
|
-
Potter and the Deathly Hallows (Harry Potter #07)","publisher":"Arthur A.
|
|
283
|
-
Levine Books","list_prices":{"34.99":1}},{"cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780439358064","120":"http://content-4.powells.com/bookcovers/120/9780439358064"},"related_isbns":["9780439358064","9780439358071","9780439567619","9780439567626","9780439686518","9780439686525","9780439686532","9780439701952","9780439715119","9780439719858","9780606298889","9780606305761","9780613996785","9780613999168","9780786257782","9780606323499"],"author":{"alpha":"J
|
|
284
|
-
K Rowling","proper":"J K Rowling"},"product_page":"http://www.powells.com/biblio/9780439358064?utm_source=powellsapi","isbn":"9780439358064","title":"Harry
|
|
285
|
-
Potter #5: Harry Potter and the Order of the Phoenix","publisher":"Arthur
|
|
286
|
-
A. Levine Books","list_prices":{"29.99":1}},{"cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9780439784542","120":"http://content-2.powells.com/bookcovers/120/9780439784542"},"related_isbns":["9780439784542","9780307283641","9780307283658","9780307283665","9780307283672","9780439785969","9780439786775","9780439791328","9780786277452","9781417729876","9781417751396","9785556255692","9788478889921","9788478889938","9781594132216"],"author":{"alpha":"J.
|
|
287
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439784542?utm_source=powellsapi","isbn":"9780439784542","title":"Harry
|
|
288
|
-
Potter and the Half-Blood Prince (Harry Potter #06)","publisher":"Scholastic","list_prices":{"29.99":1}}]}'
|
|
289
|
-
http_version:
|
|
290
|
-
recorded_at: Thu, 19 Jun 2014 10:00:08 GMT
|
|
291
|
-
- request:
|
|
292
|
-
method: get
|
|
293
|
-
uri: http://api.powells.com/v0c/testing/product/9780590353427
|
|
294
|
-
body:
|
|
295
|
-
encoding: US-ASCII
|
|
296
|
-
string: ''
|
|
297
|
-
headers:
|
|
298
|
-
User-Agent:
|
|
299
|
-
- excon/0.37.0
|
|
300
|
-
response:
|
|
301
|
-
status:
|
|
302
|
-
code: 200
|
|
303
|
-
message:
|
|
304
|
-
headers:
|
|
305
|
-
Server:
|
|
306
|
-
- Apache
|
|
162
|
+
- '1198'
|
|
307
163
|
Content-Type:
|
|
308
|
-
- application/json; charset=
|
|
309
|
-
|
|
310
|
-
-
|
|
311
|
-
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
-
|
|
164
|
+
- application/json; charset=utf-8
|
|
165
|
+
Expires:
|
|
166
|
+
- "-1"
|
|
167
|
+
Server:
|
|
168
|
+
- Microsoft-IIS/7.5
|
|
169
|
+
Access-Control-Allow-Origin:
|
|
170
|
+
- "*"
|
|
171
|
+
Set-Cookie:
|
|
172
|
+
- ASP.NET_SessionId=hcqotydemwhqaydtb1u1zku1; path=/; HttpOnly
|
|
173
|
+
X-AspNet-Version:
|
|
174
|
+
- 4.0.30319
|
|
175
|
+
X-Powered-By:
|
|
176
|
+
- ASP.NET
|
|
315
177
|
Date:
|
|
316
|
-
-
|
|
317
|
-
X-Varnish:
|
|
318
|
-
- '1472862827'
|
|
319
|
-
Age:
|
|
320
|
-
- '0'
|
|
321
|
-
Via:
|
|
322
|
-
- 1.1 varnish
|
|
323
|
-
Connection:
|
|
324
|
-
- close
|
|
325
|
-
X-Cache:
|
|
326
|
-
- MISS
|
|
178
|
+
- Sat, 05 Dec 2015 11:30:55 GMT
|
|
327
179
|
body:
|
|
328
180
|
encoding: UTF-8
|
|
329
|
-
string: '{"msg":
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
181
|
+
string: '{"msg":"()","input":{"extension":"","page":"1","per_page":"10","api":"inventory","apiKey":"<API_KEY>"},"status":"success","meta":{"utm_source":"powellsapi","page":0,"last_page":0,"per_page":"10","cover_images":{"60":"http://powells-covers-2.s3.amazonaws.com/9781501107832.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781501107832.jpg"},"author":{"alpha":"Parker
|
|
182
|
+
Mary Louise","proper":"Mary Louise Parker"},"product_page":"http://www.powells.com/book/dear-mr-you-9781501107832?partnerid=37023","partner_id":"37023","page_results":1,"title":"Dear
|
|
183
|
+
Mr. You","Internal":1},"results":{"9781501107832":{"locations":{"Local Warehouse":{"18-9781501107832-0":
|
|
184
|
+
{ "received_date":"11/10/2015 8:00:00 AM","shelf_location":"","binding":"Hardcover","section":{"minor":"~Biograph","major":"~Biograph"},"author":{"alpha":"Parker
|
|
185
|
+
Mary Louise","proper":"Mary Louise Parker"},"qty":"20","site_links":{"add_to_cart":"http://www.powells.com/ShoppingCart.aspx?ProductItemID=56415939","product_page":"http://www.powells.com/book/dear-mr-you-9781501107832?partnerid=37023"},"title":"Dear
|
|
186
|
+
Mr. You","isbn":"9781501107832","class":"New","price":"17.50","publisher":"Scribner
|
|
187
|
+
Book Company"}}}}}}'
|
|
333
188
|
http_version:
|
|
334
|
-
recorded_at:
|
|
189
|
+
recorded_at: Sat, 05 Dec 2015 11:30:56 GMT
|
|
335
190
|
- request:
|
|
336
191
|
method: get
|
|
337
|
-
uri: http://api.powells.com/
|
|
192
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/content/<API_KEY>/9780590353427
|
|
338
193
|
body:
|
|
339
194
|
encoding: US-ASCII
|
|
340
195
|
string: ''
|
|
341
196
|
headers:
|
|
342
197
|
User-Agent:
|
|
343
|
-
- excon/0.
|
|
198
|
+
- excon/0.45.4
|
|
344
199
|
response:
|
|
345
200
|
status:
|
|
346
201
|
code: 200
|
|
347
202
|
message:
|
|
348
203
|
headers:
|
|
349
|
-
|
|
350
|
-
-
|
|
351
|
-
|
|
352
|
-
-
|
|
353
|
-
P3P:
|
|
354
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
355
|
-
X-Cacheable:
|
|
356
|
-
- 'YES'
|
|
204
|
+
Cache-Control:
|
|
205
|
+
- no-cache, no-store
|
|
206
|
+
Pragma:
|
|
207
|
+
- no-cache
|
|
357
208
|
Content-Length:
|
|
358
|
-
- '
|
|
209
|
+
- '5223'
|
|
210
|
+
Content-Type:
|
|
211
|
+
- application/json; charset=utf-8
|
|
212
|
+
Expires:
|
|
213
|
+
- "-1"
|
|
214
|
+
Server:
|
|
215
|
+
- Microsoft-IIS/7.5
|
|
216
|
+
Access-Control-Allow-Origin:
|
|
217
|
+
- "*"
|
|
218
|
+
Set-Cookie:
|
|
219
|
+
- ASP.NET_SessionId=4k53vel5igck0qqzbswc5aio; path=/; HttpOnly
|
|
220
|
+
X-AspNet-Version:
|
|
221
|
+
- 4.0.30319
|
|
222
|
+
X-Powered-By:
|
|
223
|
+
- ASP.NET
|
|
359
224
|
Date:
|
|
360
|
-
-
|
|
361
|
-
X-Varnish:
|
|
362
|
-
- '1472862872'
|
|
363
|
-
Age:
|
|
364
|
-
- '0'
|
|
365
|
-
Via:
|
|
366
|
-
- 1.1 varnish
|
|
367
|
-
Connection:
|
|
368
|
-
- close
|
|
369
|
-
X-Cache:
|
|
370
|
-
- MISS
|
|
225
|
+
- Sat, 05 Dec 2015 11:30:56 GMT
|
|
371
226
|
body:
|
|
372
227
|
encoding: UTF-8
|
|
373
|
-
string: '{"msg":[],"input":{"extension":
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
but Privet Drive had hardly changed at all. The sun rose on the same tidy
|
|
377
|
-
front gardens and lit up the brass number four on the Dursleys'' front door;
|
|
378
|
-
it crept into their living room, which was almost exactly the same as it had
|
|
379
|
-
been on the night when Mr. Dursley had seen that fateful news report about
|
|
380
|
-
the owls. Only the photographs on the mantelpiece really showed how much time
|
|
381
|
-
had passed. Ten years ago, there had been lots of pictures of what looked
|
|
382
|
-
like a large pink beach ball wearing different-colored bonnets ? but Dudley
|
|
383
|
-
Dursley was no longer a baby, and now the photographs showed a large blond
|
|
384
|
-
boy riding his first bicycle, on a carousel at the fair, playing a computer
|
|
385
|
-
game with his father, being hugged and kissed by his mother. The room held
|
|
386
|
-
no sign at all that another boy lived in the house, too. Yet Harry Potter
|
|
387
|
-
was still there, asleep at the moment, but not for long. His Aunt Petunia
|
|
388
|
-
was awake and it was her shrill voice that made the first noise of the day.
|
|
389
|
-
<P> "Up! Get up! Now!" <P> Harry woke with a start.
|
|
390
|
-
His aunt rapped on the door again. <P> "Up!" she screeched.
|
|
391
|
-
Harry heard her walking toward the kitchen and then the sound of the frying
|
|
392
|
-
pan being put on the stove. He rolled onto his back and tried to remember
|
|
393
|
-
the dream he had been having. It had been a good one. There had been a flying
|
|
394
|
-
motorcycle in it. He had a funny feeling he''d had the same dream before.
|
|
395
|
-
<P> His aunt was back outside the door. <P> "Are you up yet?"
|
|
396
|
-
she demanded. <P> "Nearly," said Harry. <P> "Well,
|
|
397
|
-
get a move on, I want you to look after the bacon. And don''t you dare let
|
|
398
|
-
it burn, I want everything perfect on Duddy''s birthday." <P> Harry
|
|
399
|
-
groaned. <P> "What did you say?" his aunt snapped through
|
|
400
|
-
the door. <P> "Nothing, nothing . . ." <P> Dudley''s
|
|
401
|
-
birthday ? how could he have forgotten? Harry got slowly out of bed and started
|
|
402
|
-
looking for socks. He found a pair under his bed and, after pulling a spider
|
|
403
|
-
off one of them, put them on. Harry was used to spiders, because the cupboard
|
|
404
|
-
under the stairs was full of them, and that was where he slept. <P>
|
|
405
|
-
When he was dressed he went down the hall into the kitchen. The table was
|
|
406
|
-
almost hidden beneath all Dudley''s birthday presents. It looked as though
|
|
407
|
-
Dudley had gotten the new computer he wanted, not to mention the second television
|
|
408
|
-
and the racing bike. Exactly why Dudley wanted a racing bike was a mystery
|
|
409
|
-
to Harry, as Dudley was very fat and hated exercise ? unless of course it
|
|
410
|
-
involved punching somebody. Dudley''s favorite punching bag was Harry, but
|
|
411
|
-
he couldn''t often catch him. Harry didn''t look it, but he was very fast.
|
|
412
|
-
<P> Perhaps it had something to do with living in a dark cupboard, but
|
|
413
|
-
Harry had always been small and skinny for his age. He looked even smaller
|
|
414
|
-
and skinnier than he really was because all he had to wear were old clothes
|
|
415
|
-
of Dudley''s, and Dudley was about four times bigger than he was. Harry had
|
|
416
|
-
a thin face, knobbly knees, black hair, and bright green eyes. He wore round
|
|
417
|
-
glasses held together with a lot of Scotch tape because of all the times Dudley
|
|
418
|
-
had punched him on the nose. The only thing Harry liked about his own appearance
|
|
419
|
-
was a very thin scar on his forehead that was shaped like a bolt of lightning.
|
|
420
|
-
He had had it as long as he could remember, and the first question he could
|
|
421
|
-
ever remember asking his Aunt Petunia was how he had gotten it. <P>
|
|
422
|
-
"In the car crash when your parents died," she had said. "And
|
|
423
|
-
don''t ask questions." <P> Don''t ask questions ? that was the
|
|
424
|
-
first rule for a quiet life with the Dursleys. <P> Uncle Vernon entered
|
|
425
|
-
the kitchen as Harry was turning over the bacon. <P> "Comb your
|
|
426
|
-
hair!" he barked, by way of a morning greeting. <P> About once
|
|
427
|
-
a week, Uncle Vernon looked over the top of his newspaper and shouted that
|
|
428
|
-
Harry needed a haircut. Harry must have had more haircuts than the rest of
|
|
429
|
-
the boys in his class put together, but it made no difference, his hair simply
|
|
430
|
-
grew that way ? all over the place. <P> Harry was frying eggs by the
|
|
431
|
-
time Dudley arrived in the kitchen with his mother. Dudley looked a lot like
|
|
432
|
-
Uncle Vernon. He had a large pink face, not much neck, small, watery blue
|
|
433
|
-
eyes, and thick blond hair that lay smoothly on his thick, fat head. Aunt
|
|
434
|
-
Petunia often said that Dudley looked like a baby angel ? Harry often said
|
|
435
|
-
that Dudley looked like a pig in a wig. <P> Harry put the plates of
|
|
436
|
-
egg and bacon on the table, which was difficult as there wasn''t much room.
|
|
437
|
-
Dudley, meanwhile, was counting his presents. His face fell. <P> "Thirty-six,"
|
|
438
|
-
he said, looking up at his mother and father. "That''s two less than
|
|
439
|
-
last year." <P> "Darling, you haven''t counted Auntie Marge''s
|
|
440
|
-
present, see, it''s here under this big one from Mommy and Daddy." <P>
|
|
441
|
-
"All right, thirty-seven then," said Dudley, going red in the face.
|
|
442
|
-
Harry, who could see a huge Dudley tantrum coming on, began wolfing down his
|
|
443
|
-
bacon as fast as possible in case Dudley turned the table over. <P>
|
|
444
|
-
Aunt Petunia obviously scented danger, too, because she said quickly, "And
|
|
445
|
-
we''ll buy you another two presents while we''re out today. How''s that, popkin?
|
|
446
|
-
Two more presents. Is that all right?" <P> Dudley thought for a
|
|
447
|
-
moment. It looked like hard work. Finally he said slowly, "So I''ll have
|
|
448
|
-
thirty . . . thirty . . ." <P> "Thirty-nine, sweetums,"
|
|
449
|
-
said Aunt Petunia. <P> "Oh." Dudley sat down heavily and grabbed
|
|
450
|
-
the nearest parcel. "All right then." <P> Uncle Vernon chuckled.
|
|
451
|
-
<P> "Little tyke wants his money''s worth, just like his father.
|
|
452
|
-
''Atta boy, Dudley!" He ruffled Dudley''s hair. <P> At that moment
|
|
453
|
-
the telephone rang and Aunt Petunia went to answer it while Harry and Uncle
|
|
454
|
-
Vernon watched Dudley unwrap the racing bike, a video camera, a remote control
|
|
455
|
-
airplane, sixteen new computer games, and a VCR. He was ripping the paper
|
|
456
|
-
off a gold wristwatch when Aunt Petunia came back from the telephone looking
|
|
457
|
-
both angry and worried. <P> "Bad news, Vernon," she said.
|
|
458
|
-
"Mrs. Figg''s broken her leg. She can''t take him." She jerked her
|
|
459
|
-
head in Harry''s direction. <P> Dudley''s mouth fell open in horror,
|
|
460
|
-
but Harry''s heart gave a leap. Every year on Dudley''s birthday, his parents
|
|
461
|
-
took him and a friend out for the day, to adventure parks, hamburger restaurants,
|
|
462
|
-
or the movies. Every year, Harry was left behind with Mrs. Figg, a mad old
|
|
463
|
-
lady who lived two streets away. Harry hated it there. The whole house smelled
|
|
464
|
-
of cabbage and Mrs. Figg made him look at photographs of all the cats she''d
|
|
465
|
-
ever owned. <P> "Now what?" said Aunt Petunia, looking furiously
|
|
466
|
-
at Harry as though he''d planned this. Harry knew he ought to feel sorry that
|
|
467
|
-
Mrs. Figg had broken her leg, but it wasn''t easy when he reminded himself
|
|
468
|
-
it would be a whole year before he had to look at Tibbles, Snowy, Mr. Paws,
|
|
469
|
-
and Tufty again. <P> "We could phone Marge," Uncle Vernon
|
|
470
|
-
suggested. <P> "Don''t be silly, Vernon, she hates the boy."
|
|
471
|
-
<P> The Dursleys often spoke about Harry like this, as though he wasn''t
|
|
472
|
-
there ? or rather, as though he was something very nasty that couldn''t understand
|
|
473
|
-
them, like a slug. <P> "What about what''s-her-name, your friend
|
|
474
|
-
? Yvonne?" <P> "On vacation in Majorca," snapped Aunt
|
|
475
|
-
Petunia. <P> "You could just leave me here," Harry put in
|
|
476
|
-
hopefully (he''d be able to watch what he wanted on television for a change
|
|
477
|
-
and maybe even have a go on Dudley''s computer). <P> Aunt Petunia looked
|
|
478
|
-
as though she''d just swallowed a lemon. <P> "And come back and
|
|
479
|
-
find the house in ruins?" she snarled. <P> "I won''t blow
|
|
480
|
-
up the house," said Harry, but they weren''t listening. <P> "I
|
|
481
|
-
suppose we could take him to the zoo," said Aunt Petunia slowly, ".
|
|
482
|
-
. . and leave him in the car. . . ." <P> "That car''s new,
|
|
483
|
-
he''s not sitting in it alone. . . ." <P> Dudley began to cry loudly.
|
|
484
|
-
In fact, he wasn''t really crying ? it had been years since he''d really cried
|
|
485
|
-
? but he knew that if he screwed up his face and wailed, his mother would
|
|
486
|
-
give him anything he wanted. <P> "Dinky Duddydums, don''t cry,
|
|
487
|
-
Mummy won''t let him spoil your special day!" she cried, flinging her
|
|
488
|
-
arms around him. <P> "I . . . don''t . . . want . . . him . . .
|
|
489
|
-
t-t-to come!" Dudley yelled between huge, pretend sobs. "He always
|
|
490
|
-
sp-spoils everything!" He shot Harry a nasty grin through the gap in
|
|
491
|
-
his mother''s arms. <P> Just then, the doorbell rang ? "Oh, good
|
|
492
|
-
Lord, they''re here!" said Aunt Petunia frantically ? and a moment later,
|
|
493
|
-
Dudley''s best friend, Piers Polkiss, walked in with his mother. Piers was
|
|
494
|
-
a scrawny boy with a face like a rat. He was usually the one who held people''s
|
|
495
|
-
arms behind their backs while Dudley hit them. Dudley stopped pretending to
|
|
496
|
-
cry at once. <P> Half an hour later, Harry, who couldn''t believe his
|
|
497
|
-
luck, was sitting in the back of the Dursleys'' car with Piers and Dudley,
|
|
498
|
-
on the way to the zoo for the first time in his life. His aunt and uncle hadn''t
|
|
499
|
-
been able to think of anything else to do with him, but before they''d left,
|
|
500
|
-
Uncle Vernon had taken Harry aside. <P> "I''m warning you,"
|
|
501
|
-
he had said, putting his large purple face right up close to Harry''s, "I''m
|
|
502
|
-
warning you now, boy ? any funny business, anything at all ? and you''ll be
|
|
503
|
-
in that cupboard from now until Christmas." <P> "I''m not
|
|
504
|
-
going to do anything," said Harry, "honestly . . ." <P>
|
|
505
|
-
But Uncle Vernon didn''t believe him. No one ever did. <P> The problem
|
|
506
|
-
was, strange things often happened around Harry and it was just no good telling
|
|
507
|
-
the Dursleys he didn''t make them happen. <P> Once, Aunt Petunia, tired
|
|
508
|
-
of Harry coming back from the barbers looking as though he hadn''t been at
|
|
509
|
-
all, had taken a pair of kitchen scissors and cut his hair so short he was
|
|
510
|
-
almost bald except for his bangs, which she left "to hide that horrible
|
|
511
|
-
scar." Dudley had laughed himself silly at Harry, who spent a sleepless
|
|
512
|
-
night imagining school the next day, where he was already laughed at for his
|
|
513
|
-
baggy clothes and taped glasses. Next morning, however, he had gotten up to
|
|
514
|
-
find his hair exactly as it had been before Aunt Petunia had sheared it off.
|
|
515
|
-
He had been given a week in his cupboard for this, even though he had tried
|
|
516
|
-
to explain that he couldn''t explain how it had grown back so quickly. <P>
|
|
517
|
-
Another time, Aunt Petunia had been trying to force him into a revolting old
|
|
518
|
-
sweater of Dudley''s (brown with orange puff balls). The harder she tried
|
|
519
|
-
to pull it over his head, the smaller it seemed to become, until finally it
|
|
520
|
-
might have fitted a hand puppet, but certainly wouldn''t fit Harry. Aunt Petunia
|
|
521
|
-
had decided it must have shrunk in the wash and, to his great relief, Harry
|
|
522
|
-
wasn''t punished. <P> On the other hand, he''d gotten into terrible
|
|
523
|
-
trouble for being found on the roof of the school kitchens. Dudley''s gang
|
|
524
|
-
had been chasing him as usual when, as much to Harry''s surprise as anyone
|
|
525
|
-
else''s, there he was sitting on the chimney. The Dursleys had received a
|
|
526
|
-
very angry letter from Harry''s headmistress telling them Harry had been climbing
|
|
527
|
-
school buildings. But all he''d tried to do (as he shouted at Uncle Vernon
|
|
528
|
-
through the locked door of his cupboard) was jump behind the big trash cans
|
|
529
|
-
outside the kitchen doors. Harry supposed that the wind must have caught him
|
|
530
|
-
in mid-jump. <P> But today, nothing was going to go wrong. It was even
|
|
531
|
-
worth being with Dudley and Piers to be spending the day somewhere that wasn''t
|
|
532
|
-
school, his cupboard, or Mrs. Figg''s cabbage-smelling living room. <P>
|
|
533
|
-
While he drove, Uncle Vernon complained to Aunt Petunia. He liked to complain
|
|
534
|
-
about things: people at work, Harry, the council, Harry, the bank, and Harry
|
|
535
|
-
were just a few of his favorite subjects. This morning, it was motorcycles.
|
|
536
|
-
<P> ". . . roaring along like maniacs, the young hoodlums,"
|
|
537
|
-
he said, as a motorcycle overtook them. <P> "I had a dream about
|
|
538
|
-
a motorcycle," said Harry, remembering suddenly. "It was flying."
|
|
539
|
-
<P> Uncle Vernon nearly crashed into the car in front. He turned right
|
|
540
|
-
around in his seat and yelled at Harry, his face like a gigantic beet with
|
|
541
|
-
a mustache: "MOTORCYCLES DON''T FLY!" <P> Dudley and Piers
|
|
542
|
-
sniggered. <P> "I know they don''t," said Harry. "It
|
|
543
|
-
was only a dream." <P> But he wished he hadn''t said anything.
|
|
544
|
-
If there was one thing the Dursleys hated even more than his asking questions,
|
|
545
|
-
it was his talking about anything acting in a way it shouldn''t, no matter
|
|
546
|
-
if it was in a dream or even a cartoon ? they seemed to think he might get
|
|
547
|
-
dangerous ideas. <P> It was a very sunny Saturday and the zoo was crowded
|
|
548
|
-
with families. The Dursleys bought Dudley and Piers large chocolate ice creams
|
|
549
|
-
at the entrance and then, because the smiling lady in the van had asked Harry
|
|
550
|
-
what he wanted before they could hurry him away, they bought him a cheap lemon
|
|
551
|
-
ice pop. It wasn''t bad, either, Harry thought, licking it as they watched
|
|
552
|
-
a gorilla scratching its head who looked remarkably like Dudley, except that
|
|
553
|
-
it wasn''t blond. <P> Harry had the best morning he''d had in a long
|
|
554
|
-
time. He was careful to walk a little way apart from the Dursleys so that
|
|
555
|
-
Dudley and Piers, who were starting to get bored with the animals by lunchtime,
|
|
556
|
-
wouldn''t fall back on their favorite hobby of hitting him. They ate in the
|
|
557
|
-
zoo restaurant, and when Dudley had a tantrum because his knickerbocker glory
|
|
558
|
-
didn''t have enough ice cream on top, Uncle Vernon bought him another one
|
|
559
|
-
and Harry was allowed to finish the first. <P> Harry felt, afterward,
|
|
560
|
-
that he should have known it was all too good to last. <P> After lunch
|
|
561
|
-
they went to the reptile house. It was cool and dark in there, with lit windows
|
|
562
|
-
all along the walls. Behind the glass, all sorts of lizards and snakes were
|
|
563
|
-
crawling and slithering over bits of wood and stone. Dudley and Piers wanted
|
|
564
|
-
to see huge, poisonous cobras and thick, man-crushing pythons. Dudley quickly
|
|
565
|
-
found the largest snake in the place. It could have wrapped its body twice
|
|
566
|
-
around Uncle Vernon''s car and crushed it into a trash can ? but at the moment
|
|
567
|
-
it didn''t look in the mood. In fact, it was fast asleep. <P> Dudley
|
|
568
|
-
stood with his nose pressed against the glass, staring at the glistening brown
|
|
569
|
-
coils. <P> "Make it move," he whined at his father. Uncle
|
|
570
|
-
Vernon tapped on the glass, but the snake didn''t budge. <P> "Do
|
|
571
|
-
it again," Dudley ordered. Uncle Vernon rapped the glass smartly with
|
|
572
|
-
his knuckles, but the snake just snoozed on. <P> "This is boring,"
|
|
573
|
-
Dudley moaned. He shuffled away. <P> Harry moved in front of the tank
|
|
574
|
-
and looked intently at the snake. He wouldn''t have been surprised if it had
|
|
575
|
-
died of boredom itself ? no company except stupid people drumming their fingers
|
|
576
|
-
on the glass trying to disturb it all day long. It was worse than having a
|
|
577
|
-
cupboard as a bedroom, where the only visitor was Aunt Petunia hammering on
|
|
578
|
-
the door to wake you up; at least he got to visit the rest of the house. <P>
|
|
579
|
-
The snake suddenly opened its beady eyes. Slowly, very slowly, it raised its
|
|
580
|
-
head until its eyes were on a level with Harry''s. <P> It winked. <P>
|
|
581
|
-
Harry stared. Then he looked quickly around to see if anyone was watching.
|
|
582
|
-
They weren''t. He looked back at the snake and winked, too. <P> The
|
|
583
|
-
snake jerked its head toward Uncle Vernon and Dudley, then raised its eyes
|
|
584
|
-
to the ceiling. It gave Harry a look that said quite plainly: <P> "I
|
|
585
|
-
get that all the time." <P> "I know," Harry murmured
|
|
586
|
-
through the glass, though he wasn''t sure the snake could hear him. "It
|
|
587
|
-
must be really annoying." <P> The snake nodded vigorously. <P>
|
|
588
|
-
"Where do you come from, anyway?" Harry asked. <P> The snake
|
|
589
|
-
jabbed its tail at a little sign next to the glass. Harry peered at it. <P>
|
|
590
|
-
Boa Constrictor, Brazil. <P> "Was it nice there?" <P>
|
|
591
|
-
The boa constrictor jabbed its tail at the sign again and Harry read on: This
|
|
592
|
-
specimen was bred in the zoo. "Oh, I see ? so you''ve never been to Brazil?"
|
|
593
|
-
<P> As the snake shook its head, a deafening shout behind Harry made
|
|
594
|
-
both of them jump. "DUDLEY! MR. DURSLEY! COME AND LOOK AT THIS SNAKE!
|
|
595
|
-
YOU WON''T BELIEVE WHAT IT''S DOING!" <P> Dudley came waddling
|
|
596
|
-
toward them as fast as he could. <P> "Out of the way, you,"
|
|
597
|
-
he said, punching Harry in the ribs. Caught by surprise, Harry fell hard on
|
|
598
|
-
the concrete floor. What came next happened so fast no one saw how it happened
|
|
599
|
-
? one second, Piers and Dudley were leaning right up close to the glass, the
|
|
600
|
-
next, they had leapt back with howls of horror. <P> Harry sat up and
|
|
601
|
-
gasped; the glass front of the boa constrictor''s tank had vanished. The great
|
|
602
|
-
snake was uncoiling itself rapidly, slithering out onto the floor. People
|
|
603
|
-
throughout the reptile house screamed and started running for the exits. <P>
|
|
604
|
-
As the snake slid swiftly past him, Harry could have sworn a low, hissing
|
|
605
|
-
voice said, "Brazil, here I come. . . . Thanksss, amigo." <P>
|
|
606
|
-
The keeper of the reptile house was in shock. <P> "But the glass,"
|
|
607
|
-
he kept saying, "where did the glass go?" <P> The zoo director
|
|
608
|
-
himself made Aunt Petunia a cup of strong, sweet tea while he apologized over
|
|
609
|
-
and over again. Piers and Dudley could only gibber. As far as Harry had seen,
|
|
610
|
-
the snake hadn''t done anything except snap playfully at their heels as it
|
|
611
|
-
passed, but by the time they were all back in Uncle Vernon''s car, Dudley
|
|
612
|
-
was telling them how it had nearly bitten off his leg, while Piers was swearing
|
|
613
|
-
it had tried to squeeze him to death. But worst of all, for Harry at least,
|
|
614
|
-
was Piers calming down enough to say, "Harry was talking to it, weren''t
|
|
615
|
-
you, Harry?" <P> Uncle Vernon waited until Piers was safely out
|
|
616
|
-
of the house before starting on Harry. He was so angry he could hardly speak.
|
|
617
|
-
He managed to say, "Go ? cupboard ? stay ? no meals," before he
|
|
618
|
-
collapsed into a chair, and Aunt Petunia had to run and get him a large brandy.
|
|
619
|
-
Harry lay in his dark cupboard much later, wishing he had a watch. He didn''t
|
|
620
|
-
know what time it was and he couldn''t be sure the Dursleys were asleep yet.
|
|
621
|
-
Until they were, he couldn''t risk sneaking to the kitchen for some food.
|
|
622
|
-
<P> He''d lived with the Dursleys almost ten years, ten miserable years,
|
|
623
|
-
as long as he could remember, ever since he''d been a baby and his parents
|
|
624
|
-
had died in that car crash. He couldn''t remember being in the car when his
|
|
625
|
-
parents had died. Sometimes, when he strained his memory during long hours
|
|
626
|
-
in his cupboard, he came up with a strange vision: a blinding flash of green
|
|
627
|
-
light and a burning pain on his forehead. This, he supposed, was the crash,
|
|
628
|
-
though he couldn''t imagine where all the green light came from. He couldn''t
|
|
629
|
-
remember his parents at all. His aunt and uncle never spoke about them, and
|
|
630
|
-
of course he was forbidden to ask questions. There were no photographs of
|
|
631
|
-
them in the house. <P> When he had been younger, Harry had dreamed and
|
|
632
|
-
dreamed of some unknown relation coming to take him away, but it had never
|
|
633
|
-
happened; the Dursleys were his only family. Yet sometimes he thought (or
|
|
634
|
-
maybe hoped) that strangers in the street seemed to know him. Very strange
|
|
635
|
-
strangers they were, too. A tiny man in a violet top hat had bowed to him
|
|
636
|
-
once while out shopping with Aunt Petunia and Dudley. After asking Harry furiously
|
|
637
|
-
if he knew the man, Aunt Petunia had rushed them out of the shop without buying
|
|
638
|
-
anything. A wild-looking old woman dressed all in green had waved merrily
|
|
639
|
-
at him once on a bus. A bald man in a very long purple coat had actually shaken
|
|
640
|
-
his hand in the street the other day and then walked away without a word.
|
|
641
|
-
The weirdest thing about all these people was the way they seemed to vanish
|
|
642
|
-
the second Harry tried to get a closer look. <P> At school, Harry had
|
|
643
|
-
no one. Everybody knew that Dudley''s gang hated that odd Harry Potter in
|
|
644
|
-
his baggy old clothes and broken glasses, and nobody liked to disagree with
|
|
645
|
-
Dudley''s gang.","type":"Excerpt"}],"synopsis":[{"text":"Rescued from the
|
|
646
|
-
outrageous neglect of his aunt and uncle, a young boy with a great destiny
|
|
647
|
-
proves his worth while attending Hogwarts School for Wizards and Witches.","type":"Synopsis"}],"review":[{"text":""[T]he
|
|
228
|
+
string: '{"$VAR1":[{"msg":"[]","input":[{"extension":"data","page":"1","per_page":"10","api":"content","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"last_page":0,"per_page":10,"page_results":1,"Internal":1,"partner_id":"37023"}],"results":[{"synopsis":[{"text":"Rescued
|
|
229
|
+
from the outrageous neglect of his aunt and uncle, a young boy with a great
|
|
230
|
+
destiny proves his worth while attending Hogwarts School for Wizards and Witches.","type":"Synopsis"}],"review":[{"text":"\"[T]he
|
|
648
231
|
rapturous reception of the Harry Potter books is heartening, because J.K.
|
|
649
232
|
Rowling is a literary artist, and these three books possess more imaginative
|
|
650
233
|
life than the majority of novels that are published in this country in any
|
|
651
234
|
given year. They are full of marvelous invention and humor and fun, but they
|
|
652
|
-
have more than that
|
|
653
|
-
|
|
654
|
-
entire New Republic review here</a>)","type":"Review"},{"text":""A
|
|
235
|
+
have more than that.\" <i>Lee Siegel, The New Republic</i> (<a href=\"http://www.powells.com/review/2001_07_12\">read
|
|
236
|
+
the entire New Republic review here</a>)\r\n","type":"Review"},{"text":"\"A
|
|
655
237
|
wonderful first novel....Harry is destined for greatness....Much like Roald
|
|
656
238
|
Dahl, J.K. Rowling has a gift for keeping the emotions, fears, and triumphs
|
|
657
239
|
of her characters on a human scale, even while the supernatural is popping
|
|
658
|
-
out all over
|
|
240
|
+
out all over.\" <i>Michael Winerip, The New York Times Book Review</i>","type":"Review"},{"text":"\"Readers
|
|
659
241
|
are in for a delightful romp with this debut from a British author who dances
|
|
660
|
-
in the footsteps of P.L. Travers and Roald Dahl
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
Dirda, The Washington Post Book World</i>","type":"Review"},{"text":""This
|
|
242
|
+
in the footsteps of P.L. Travers and Roald Dahl.\" <i>Publishers Weekly (starred
|
|
243
|
+
review)</i>","type":"Review"},{"text":"\"Obviously, <i>Harry Potter and the
|
|
244
|
+
Sorcerer''s Stone</i> should make any modern 11-year-old a very happy reader.
|
|
245
|
+
The novel moves quickly, packs in everything from a boa constrictor that winks
|
|
246
|
+
to a melancholy Zen-spouting centaur to an owl postal system, and ends with
|
|
247
|
+
a scary surprise.\" <i>Michael Dirda, The Washington Post Book World</i>","type":"Review"},{"text":"\"This
|
|
667
248
|
hugely enjoyable fantasy is filled with imaginative details, from oddly flavored
|
|
668
249
|
jelly beans to dragons'' eggs hatched on the hearth. It''s slanted toward
|
|
669
250
|
action-oriented readers, who will find that Briticisms meld with all the other
|
|
670
|
-
wonders of magic school
|
|
671
|
-
charming, imaginative, magical confection of a novel
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
story." <i>Booklist, starred review</i>","type":"Review"},{"text":""Harry
|
|
251
|
+
wonders of magic school.\" <i>Kirkus Reviews</i>","type":"Review"},{"text":"\"A
|
|
252
|
+
charming, imaginative, magical confection of a novel.\" <i>The Boston Globe</i>","type":"Review"},{"text":"\"Rowling''s
|
|
253
|
+
wonderful ability to put a fantastic spin on sports, student rivalry, and
|
|
254
|
+
eccentric faculty contributes to the humor, charm, and, well, delight of her
|
|
255
|
+
utterly captivating story.\" <i>Booklist, starred review</i>","type":"Review"},{"text":"\"Harry
|
|
676
256
|
himself is the perfect confused and unassuming hero, whom trouble follows
|
|
677
257
|
like a wizard''s familiar. After reading this entrancing fantasy, readers
|
|
678
258
|
will be convinced that they, too, could take the train to Hogwarts School,
|
|
679
259
|
if only they could find Platform Nine and Three Quarters at the King''s Cross
|
|
680
|
-
Station
|
|
681
|
-
|
|
682
|
-
a British author who dances in the footsteps of P.L. Travers and Roald Dahl
|
|
683
|
-
Weekly, starred review
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
starred review
|
|
260
|
+
Station.\" <i>School Library Journal, starred review</i>","type":"Review"},{"text":"<div>*
|
|
261
|
+
\"Readers are in for a delightful romp with this award-winning debut from
|
|
262
|
+
a British author who dances in the footsteps of P.L. Travers and Roald Dahl.\"<p>*Publishers
|
|
263
|
+
Weekly, starred review<p>* \"Rowling''s wonderful ability to put a fantastic
|
|
264
|
+
spin on sports, student rivalry, and eccentric faculty contributes to the
|
|
265
|
+
humor, charm, and, well, delight of her utterly captivating story.\"<p>*Booklist,
|
|
266
|
+
starred review<p>* \"Harry himself is the perfect confused and unassuming
|
|
687
267
|
hero, whom trouble follows like a wizard''s familiar. After reading this entrancing
|
|
688
268
|
fantasy, readers will be convinced that they, too, could take the train to
|
|
689
269
|
Hogwarts School, if only they could find Platform Nine and Three Quarters
|
|
690
|
-
at the King''s Cross Station
|
|
691
|
-
review<p></div>","type":"Review"}],"publisher-comments":[{"text":"Harry
|
|
270
|
+
at the King''s Cross Station.\"<p>*School Library Journal, starred review<p></div>","type":"Review"}],"publisher_comments":[{"text":"Harry
|
|
692
271
|
Potter has never been the star of a Quidditch team, scoring points while riding
|
|
693
272
|
a broom far above the ground. He knows no spells, has never helped to hatch
|
|
694
|
-
a dragon, and has never worn a cloak of invisibility
|
|
273
|
+
a dragon, and has never worn a cloak of invisibility.\r\n\r\n<P>All he knows
|
|
695
274
|
is a miserable life with the Dursleys, his horrible aunt and uncle, and their
|
|
696
|
-
abominable son, Dudley
|
|
697
|
-
|
|
698
|
-
|
|
275
|
+
abominable son, Dudley — a great big swollen spoiled bully. Harry''s room
|
|
276
|
+
is a closet at the foot of the stairs, and he hasn''t had a birthday party
|
|
277
|
+
in eleven years. \r\n\r\n<P>But all that is about to change when a mysterious
|
|
699
278
|
letter arrives by owl messenger: a letter with an invitation to an incredible
|
|
700
|
-
place that Harry
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
the
|
|
709
|
-
Booksellers Award) in 1999.","type":"About the Author"}]}]}'
|
|
279
|
+
place that Harry — and anyone who reads about him — will find unforgettable.
|
|
280
|
+
\r\n\r\n<P>For it''s there that he finds not only friends, aerial sports,
|
|
281
|
+
and magic in everything from classes to meals, but a great destiny that''s
|
|
282
|
+
been waiting for him...if Harry can survive the encounter.","type":"Review"}],"pw_review":[],"about_the_author":[{"text":"J.K.
|
|
283
|
+
Rowling was a struggling single mother when she wrote the beginnings of <i>Harry
|
|
284
|
+
Potter and the Sorcerer''s Stone</i> on scraps of paper at a local cafe. But
|
|
285
|
+
her efforts were soon rewarded with an award from the Scottish Arts Council
|
|
286
|
+
enabling her to finish the novel. She has since won numerous awards including
|
|
287
|
+
the ABBY Award (American Booksellers Award) in 1999.","type":"Author The Author"}]}]}]}'
|
|
710
288
|
http_version:
|
|
711
|
-
recorded_at:
|
|
289
|
+
recorded_at: Sat, 05 Dec 2015 11:30:57 GMT
|
|
712
290
|
- request:
|
|
713
291
|
method: get
|
|
714
|
-
uri: http://api.powells.com/
|
|
292
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/locations/<API_KEY>
|
|
715
293
|
body:
|
|
716
294
|
encoding: US-ASCII
|
|
717
295
|
string: ''
|
|
718
296
|
headers:
|
|
719
297
|
User-Agent:
|
|
720
|
-
- excon/0.
|
|
298
|
+
- excon/0.45.4
|
|
721
299
|
response:
|
|
722
300
|
status:
|
|
723
301
|
code: 200
|
|
724
302
|
message:
|
|
725
303
|
headers:
|
|
726
|
-
|
|
727
|
-
-
|
|
728
|
-
|
|
729
|
-
-
|
|
730
|
-
P3P:
|
|
731
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
732
|
-
X-Cacheable:
|
|
733
|
-
- 'YES'
|
|
304
|
+
Cache-Control:
|
|
305
|
+
- no-cache, no-store
|
|
306
|
+
Pragma:
|
|
307
|
+
- no-cache
|
|
734
308
|
Content-Length:
|
|
735
|
-
- '
|
|
309
|
+
- '2698'
|
|
310
|
+
Content-Type:
|
|
311
|
+
- application/json; charset=utf-8
|
|
312
|
+
Expires:
|
|
313
|
+
- "-1"
|
|
314
|
+
Server:
|
|
315
|
+
- Microsoft-IIS/7.5
|
|
316
|
+
Access-Control-Allow-Origin:
|
|
317
|
+
- "*"
|
|
318
|
+
Set-Cookie:
|
|
319
|
+
- ASP.NET_SessionId=mgqdmdpiu0iqoueit1qnqc3a; path=/; HttpOnly
|
|
320
|
+
X-AspNet-Version:
|
|
321
|
+
- 4.0.30319
|
|
322
|
+
X-Powered-By:
|
|
323
|
+
- ASP.NET
|
|
736
324
|
Date:
|
|
737
|
-
-
|
|
738
|
-
X-Varnish:
|
|
739
|
-
- '1472862923'
|
|
740
|
-
Age:
|
|
741
|
-
- '0'
|
|
742
|
-
Via:
|
|
743
|
-
- 1.1 varnish
|
|
744
|
-
Connection:
|
|
745
|
-
- close
|
|
746
|
-
X-Cache:
|
|
747
|
-
- MISS
|
|
325
|
+
- Sat, 05 Dec 2015 11:30:57 GMT
|
|
748
326
|
body:
|
|
749
327
|
encoding: UTF-8
|
|
750
|
-
string: '{"msg":[],"input":{"extension":
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
#1)","isbn":"9780062024039","publisher":"Katherine Tegen Books","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9780670020584?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780670020584","120":"http://content-4.powells.com/bookcovers/120/9780670020584"},"author":{"alpha":"Keillor,
|
|
765
|
-
Garrison","proper":"Garrison Keillor"},"title":"The Keillor Reader","isbn":"9780670020584","publisher":"Viking
|
|
766
|
-
Adult","list_prices":{"27.95":1}},{"product_page":"http://www.powells.com/biblio/9780143125471?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780143125471","120":"http://content-1.powells.com/bookcovers/120/9780143125471"},"author":{"alpha":"Brown,
|
|
767
|
-
Daniel James","proper":"Daniel James Brown"},"title":"The Boys in the Boat:
|
|
768
|
-
Nine Americans and Their Epic Quest for Gold at the 1936 Berlin Olympics","isbn":"9780143125471","publisher":"Penguin
|
|
769
|
-
Books","list_prices":{"17.00":1}},{"product_page":"http://www.powells.com/biblio/9781476751443?utm_source=powellsapi","cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9781476751443","120":"http://content-3.powells.com/bookcovers/120/9781476751443"},"author":{"alpha":"Clinton,
|
|
770
|
-
Hillary Rodham","proper":"Hillary Rodham Clinton"},"title":"Hard Choices","isbn":"9781476751443","publisher":"Simon
|
|
771
|
-
& Schuster","list_prices":{"35.00":1}},{"product_page":"http://www.powells.com/biblio/9780062024701?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780062024701","120":"http://content-1.powells.com/bookcovers/120/9780062024701"},"author":{"alpha":"Colin
|
|
772
|
-
Meloy and Carson Ellis","proper":"Colin Meloy and Carson Ellis"},"title":"Wildwood
|
|
773
|
-
(The Wildwood Chronicles #1)","isbn":"9780062024701","publisher":"Balzer &
|
|
774
|
-
Bray/Harperteen","list_prices":{"8.99":1}},{"product_page":"http://www.powells.com/biblio/9780385344432?utm_source=powellsapi","cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9780385344432","120":"http://content-2.powells.com/bookcovers/120/9780385344432"},"author":{"alpha":"Gabaldon,
|
|
775
|
-
Diana","proper":"Diana Gabaldon"},"title":"Written in My Own Heart''s Blood
|
|
776
|
-
(Outlander)","isbn":"9780385344432","publisher":"Delacorte Press","list_prices":{"35.00":1}},{"product_page":"http://www.powells.com/biblio/9780142414934?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780142414934","120":"http://content-4.powells.com/bookcovers/120/9780142414934"},"author":{"alpha":"Green,
|
|
777
|
-
John","proper":"John Green"},"title":"Paper Towns","isbn":"9780142414934","publisher":"Speak","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9780545669931?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780545669931","120":"http://content-1.powells.com/bookcovers/120/9780545669931"},"author":{"alpha":"Scholastic,
|
|
778
|
-
Scholastic","proper":"Scholastic Scholastic"},"title":"Minecraft: Essential
|
|
779
|
-
Handbook","isbn":"9780545669931","publisher":"Scholastic Inc.","list_prices":{"7.99":1}},{"product_page":"http://www.powells.com/biblio/9780545685153?utm_source=powellsapi","cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9780545685153","120":"http://content-3.powells.com/bookcovers/120/9780545685153"},"author":{"alpha":"Scholastic
|
|
780
|
-
Inc","proper":"Scholastic Inc"},"title":"Minecraft: Redstone Handbook: An
|
|
781
|
-
Official Mojang Book","isbn":"9780545685153","publisher":"Scholastic Inc.","list_prices":{"7.99":1}},{"product_page":"http://www.powells.com/biblio/9780062218292?utm_source=powellsapi","cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9780062218292","120":"http://content-2.powells.com/bookcovers/120/9780062218292"},"author":{"alpha":"Stark,
|
|
782
|
-
Peter","proper":"Peter Stark"},"title":"Astoria: John Jacob Astor and Thomas
|
|
783
|
-
Jefferson''s Lost Pacific Empire: A Story of Wealth, Ambition, and Survival","isbn":"9780062218292","publisher":"Ecco","list_prices":{"27.99":1}},{"product_page":"http://www.powells.com/biblio/9780553582017?utm_source=powellsapi","cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780553582017","120":"http://content-7.powells.com/bookcovers/120/9780553582017"},"author":{"alpha":"Martin,
|
|
784
|
-
George R. R.","proper":"George R. R. Martin"},"title":"A Dance with Dragons
|
|
785
|
-
(A Song of Ice and Fire #5)","isbn":"9780553582017","publisher":"Bantam","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9780142410707?utm_source=powellsapi","cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780142410707","120":"http://content-7.powells.com/bookcovers/120/9780142410707"},"author":{"alpha":"Green,
|
|
786
|
-
John","proper":"John Green"},"title":"An Abundance of Katherines","isbn":"9780142410707","publisher":"Puffin
|
|
787
|
-
Books","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9781476754451?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9781476754451","120":"http://content-1.powells.com/bookcovers/120/9781476754451"},"author":{"alpha":"King,
|
|
788
|
-
Stephen","proper":"Stephen King"},"title":"Mr. Mercedes","isbn":"9781476754451","publisher":"Scribner
|
|
789
|
-
Book Company","list_prices":{"30.00":1}},{"product_page":"http://www.powells.com/biblio/9780679805274?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780679805274","120":"http://content-4.powells.com/bookcovers/120/9780679805274"},"author":{"alpha":"Seuss,
|
|
790
|
-
Dr.","proper":"Dr. Seuss"},"title":"Oh, the Places You''ll Go!","isbn":"9780679805274","publisher":"Random
|
|
791
|
-
House Children''s Books","list_prices":{"17.99":1}},{"product_page":"http://www.powells.com/biblio/9780307476074?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780307476074","120":"http://content-4.powells.com/bookcovers/120/9780307476074"},"author":{"alpha":"Strayed,
|
|
792
|
-
Cheryl","proper":"Cheryl Strayed"},"title":"Wild: From Lost to Found on the
|
|
793
|
-
Pacific Crest Trail (Vintage)","isbn":"9780307476074","publisher":"Vintage
|
|
794
|
-
Books","list_prices":{"15.95":1}},{"product_page":"http://www.powells.com/biblio/9780307588371?utm_source=powellsapi","cover_images":{"60":"http://content-1.powells.com/bookcovers/60/9780307588371","120":"http://content-1.powells.com/bookcovers/120/9780307588371"},"author":{"alpha":"Flynn,
|
|
795
|
-
Gillian","proper":"Gillian Flynn"},"title":"Gone Girl","isbn":"9780307588371","publisher":"Broadway
|
|
796
|
-
Books","list_prices":{"15.00":1}},{"product_page":"http://www.powells.com/biblio/9780375842207?utm_source=powellsapi","cover_images":{"60":"http://content-7.powells.com/bookcovers/60/9780375842207","120":"http://content-7.powells.com/bookcovers/120/9780375842207"},"author":{"alpha":"Zusak,
|
|
797
|
-
Markus","proper":"Markus Zusak"},"title":"The Book Thief","isbn":"9780375842207","publisher":"Knopf
|
|
798
|
-
Books for Young Readers","list_prices":{"12.99":1}},{"product_page":"http://www.powells.com/biblio/9781621060246?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9781621060246","120":"http://content-6.powells.com/bookcovers/120/9781621060246"},"author":{"alpha":"Barrett,
|
|
799
|
-
Alexander","proper":"Alexander Barrett"},"title":"This Is Portland: The City
|
|
800
|
-
You''ve Heard You Should Like","isbn":"9781621060246","publisher":"Microcosm
|
|
801
|
-
Publishing","list_prices":{"5.95":1}},{"product_page":"http://www.powells.com/biblio/9780142415436?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780142415436","120":"http://content-6.powells.com/bookcovers/120/9780142415436"},"author":{"alpha":"Forman,
|
|
802
|
-
Gayle","proper":"Gayle Forman"},"title":"If I Stay","isbn":"9780142415436","publisher":"Speak","list_prices":{"10.99":1}},{"product_page":"http://www.powells.com/biblio/9780553573404?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780553573404","120":"http://content-4.powells.com/bookcovers/120/9780553573404"},"author":{"alpha":"Martin,
|
|
803
|
-
George R. R.","proper":"George R. R. Martin"},"title":"A Game of Thrones (A
|
|
804
|
-
Song of Ice and Fire #1)","isbn":"9780553573404","publisher":"Spectra Books","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9781452113845?utm_source=powellsapi","cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9781452113845","120":"http://content-5.powells.com/bookcovers/120/9781452113845"},"author":{"alpha":"Jeffrey
|
|
805
|
-
Morgenthaler and Martha Holmberg","proper":"Jeffrey Morgenthaler and Martha
|
|
806
|
-
Holmberg"},"title":"Bar Book: Elements of Cocktail Technique","isbn":"9781452113845","publisher":"Chronicle
|
|
807
|
-
Books (CA)","list_prices":{"30.00":1}},{"product_page":"http://www.powells.com/biblio/9780307352156?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780307352156","120":"http://content-6.powells.com/bookcovers/120/9780307352156"},"author":{"alpha":"Cain,
|
|
808
|
-
Susan","proper":"Susan Cain"},"title":"Quiet: The Power of Introverts in a
|
|
809
|
-
World That Can''t Stop Talking","isbn":"9780307352156","publisher":"Broadway","list_prices":{"16.00":1}},{"product_page":"http://www.powells.com/biblio/9780312674304?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780312674304","120":"http://content-4.powells.com/bookcovers/120/9780312674304"},"author":{"alpha":"Oconnor,
|
|
810
|
-
Barbara","proper":"Barbara Oconnor"},"title":"The Fantastic Secret of Owen
|
|
811
|
-
Jester","isbn":"9780312674304","publisher":"Square Fish","list_prices":{"6.99":1}},{"product_page":"http://www.powells.com/biblio/9780062024046?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780062024046","120":"http://content-6.powells.com/bookcovers/120/9780062024046"},"author":{"alpha":"Roth,
|
|
812
|
-
Veronica","proper":"Veronica Roth"},"title":"Insurgent (Divergent Trilogy
|
|
813
|
-
#2)","isbn":"9780062024046","publisher":"Katherine Tegen Books","list_prices":{"17.99":1}},{"product_page":"http://www.powells.com/biblio/9780385523394?utm_source=powellsapi","cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780385523394","120":"http://content-4.powells.com/bookcovers/120/9780385523394"},"author":{"alpha":"Kerman,
|
|
814
|
-
Piper","proper":"Piper Kerman"},"title":"Orange Is the New Black: My Year
|
|
815
|
-
in a Women''s Prison","isbn":"9780385523394","publisher":"Spiegel & Grau","list_prices":{"16.00":1}},{"product_page":"http://www.powells.com/biblio/9780061928178?utm_source=powellsapi","cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9780061928178","120":"http://content-8.powells.com/bookcovers/120/9780061928178"},"author":{"alpha":"Walter,
|
|
816
|
-
Jess","proper":"Jess Walter"},"title":"Beautiful Ruins (P.S.)","isbn":"9780061928178","publisher":"Harper
|
|
817
|
-
Perennial","list_prices":{"15.99":1}},{"product_page":"http://www.powells.com/biblio/9780674430006?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780674430006","120":"http://content-6.powells.com/bookcovers/120/9780674430006"},"author":{"alpha":"Piketty,
|
|
818
|
-
Thomas","proper":"Thomas Piketty"},"title":"Capital in the Twenty-First Century","isbn":"9780674430006","publisher":"Belknap
|
|
819
|
-
Press","list_prices":{"39.95":1}},{"product_page":"http://www.powells.com/biblio/9781570616792?utm_source=powellsapi","cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9781570616792","120":"http://content-2.powells.com/bookcovers/120/9781570616792"},"author":{"alpha":"Michael
|
|
820
|
-
Mullin and John Skewes","proper":"Michael Mullin and John Skewes"},"title":"Larry
|
|
821
|
-
Gets Lost in Portland","isbn":"9781570616792","publisher":"Sasquatch Books","list_prices":{"16.99":1}},{"product_page":"http://www.powells.com/biblio/9780553593716?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780553593716","120":"http://content-6.powells.com/bookcovers/120/9780553593716"},"author":{"alpha":"Martin,
|
|
822
|
-
George R. R.","proper":"George R. R. Martin"},"title":"A Game of Thrones (A
|
|
823
|
-
Song of Ice and Fire #1)","isbn":"9780553593716","publisher":"Bantam","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9781442416895?utm_source=powellsapi","cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9781442416895","120":"http://content-5.powells.com/bookcovers/120/9781442416895"},"author":{"alpha":"Clare,
|
|
824
|
-
Cassandra","proper":"Cassandra Clare"},"title":"City of Heavenly Fire (Mortal
|
|
825
|
-
Instruments #6)","isbn":"9781442416895","publisher":"Margaret K. McElderry
|
|
826
|
-
Books","list_prices":{"24.99":1}},{"product_page":"http://www.powells.com/biblio/9780307476418?utm_source=powellsapi","cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9780307476418","120":"http://content-8.powells.com/bookcovers/120/9780307476418"},"author":{"alpha":"Anderson,
|
|
827
|
-
Scott","proper":"Scott Anderson"},"title":"Lawrence in Arabia: War, Deceit,
|
|
828
|
-
Imperial Folly and the Making of the Modern Middle East","isbn":"9780307476418","publisher":"Anchor
|
|
829
|
-
Books","list_prices":{"17.95":1}},{"product_page":"http://www.powells.com/biblio/9781400079155?utm_source=powellsapi","cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9781400079155","120":"http://content-5.powells.com/bookcovers/120/9781400079155"},"author":{"alpha":"Brown,
|
|
830
|
-
Dan","proper":"Dan Brown"},"title":"Inferno","isbn":"9781400079155","publisher":"Anchor
|
|
831
|
-
Books","list_prices":{"9.99":1}},{"product_page":"http://www.powells.com/biblio/9780812979329?utm_source=powellsapi","cover_images":{"60":"http://content-9.powells.com/bookcovers/60/9780812979329","120":"http://content-9.powells.com/bookcovers/120/9780812979329"},"author":{"alpha":"Boo,
|
|
832
|
-
Katherine","proper":"Katherine Boo"},"title":"Behind the Beautiful Forevers:
|
|
833
|
-
Life, Death, and Hope in a Mumbai Undercity","isbn":"9780812979329","publisher":"Random
|
|
834
|
-
House Trade","list_prices":{"16.00":1}},{"product_page":"http://www.powells.com/biblio/9780440180296?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780440180296","120":"http://content-6.powells.com/bookcovers/120/9780440180296"},"author":{"alpha":"Vonnegut,
|
|
835
|
-
Kurt","proper":"Kurt Vonnegut"},"title":"Slaughterhouse-Five","isbn":"9780440180296","publisher":"Laurel
|
|
836
|
-
Editions","list_prices":{"7.99":1}},{"product_page":"http://www.powells.com/biblio/9781423128649?utm_source=powellsapi","cover_images":{"60":"http://content-9.powells.com/bookcovers/60/9781423128649","120":"http://content-9.powells.com/bookcovers/120/9781423128649"},"author":{"alpha":"Osborne,
|
|
837
|
-
Mary Pope","proper":"Mary Pope Osborne"},"title":"Tales from the Odyssey,
|
|
838
|
-
Part One","isbn":"9781423128649","publisher":"Hyperion Books","list_prices":{"5.99":1}},{"product_page":"http://www.powells.com/biblio/9780307341570?utm_source=powellsapi","cover_images":{"60":"http://www.powells.com/bookcovers/60/9780307341570","120":"http://www.powells.com/bookcovers/120/9780307341570"},"author":{"alpha":"Flynn,
|
|
839
|
-
Gillian","proper":"Gillian Flynn"},"title":"Dark Places","isbn":"9780307341570","publisher":"Three
|
|
840
|
-
Rivers Press","list_prices":{"14.00":1}},{"product_page":"http://www.powells.com/biblio/9780205172870?utm_source=powellsapi","cover_images":{"60":"http://www.powells.com/bookcovers/60/9780205172870","120":"http://www.powells.com/bookcovers/120/9780205172870"},"author":{"alpha":"Ballenger,
|
|
841
|
-
Bruce P","proper":"Bruce P Ballenger"},"title":"The Curious Researcher","isbn":"9780205172870","publisher":"Longman","list_prices":{"79.50":1}},{"product_page":"http://www.powells.com/biblio/9780316154703?utm_source=powellsapi","cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9780316154703","120":"http://content-3.powells.com/bookcovers/120/9780316154703"},"author":{"alpha":"Sedaris,
|
|
842
|
-
David","proper":"David Sedaris"},"title":"Let''s Explore Diabetes with Owls","isbn":"9780316154703","publisher":"Back
|
|
843
|
-
Bay Books","list_prices":{"17.00":1}},{"product_page":"http://www.powells.com/biblio/9780440237686?utm_source=powellsapi","cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780440237686","120":"http://content-6.powells.com/bookcovers/120/9780440237686"},"author":{"alpha":"Lowry,
|
|
844
|
-
Lois","proper":"Lois Lowry"},"title":"The Giver","isbn":"9780440237686","publisher":"Laurel
|
|
845
|
-
Leaf Library","list_prices":{"6.99":1}}]}'
|
|
328
|
+
string: '{"$VAR1":[{"msg":"[]","input":[{"extension":"data","page":"1","per_page":"10","api":"locations","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"last_page":0,"per_page":10,"partner_id":"37023","page_results":1,"Internal":1}],"result":[{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Burnside","phone":"","description":"Burnside","message":"","state":"OR","city":"Portland","zip":"97209","slug":"burnside","url":"http://www.powells.com/locations/powells-city-of-books","address":"1005
|
|
329
|
+
W Burnside St. Portland OR United States 97209"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Cedar
|
|
330
|
+
Hills","phone":"","description":"Cedar Hills","message":"","state":"OR","city":"Beaverton","zip":"97005","slug":"cedar-hills","url":"http://www.powells.com/locations/powells-books-at-cedar-hills-crossing","address":"1075
|
|
331
|
+
First Ave Portland OR United States 97209"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Home
|
|
332
|
+
& Garden","phone":"","description":"Home & Garden","message":"","state":"OR","city":"Portland","zip":"97214","slug":"home-&-garden","url":"http://www.powells.com/locations/powells-books-for-home-and-garden","address":"1005
|
|
333
|
+
W Burnside St. Portland OR United States 97209"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Hawthorne","phone":"","description":"Hawthorne","message":"","state":"OR","city":"Portland","zip":"97214","slug":"hawthorne","url":"http://www.powells.com/locations/powells-books-on-hawthorne","address":"asdf
|
|
334
|
+
asdf OR United States asdf"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"PDX
|
|
335
|
+
- Oregon Market","phone":"","description":"Airport","message":"","state":"OR","city":"Portland","zip":"97218","slug":"pdx-oregon-market","url":"http://www.powells.com/locations/powells-books-at-pdx","address":"1005
|
|
336
|
+
W Burnside St. Portland OR United States 97209"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Industrial","phone":"","description":"Local
|
|
337
|
+
Warehouse-17","message":"","state":"OR","city":"Portland","zip":"97210","slug":"industrial","url":"","address":"2720
|
|
338
|
+
NW 29th Avenue Portland OR United States 97210"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"RDC","phone":"","description":"Local
|
|
339
|
+
Warehouse-18","message":"","state":"OR","city":"Portland","zip":"97209","slug":"rdc","url":"","address":"1005
|
|
340
|
+
W Burnside St. Portland OR United States 97209"},{"hours":"","coordinates":[{"lat":"0.00","lng":"0.00"}],"name":"Online","phone":"","description":"Online","message":"","state":"OR","city":"Portland","zip":"97210","slug":"online","url":"","address":"ABC
|
|
341
|
+
Brookfield MS United States 530465"}]}]}'
|
|
846
342
|
http_version:
|
|
847
|
-
recorded_at:
|
|
343
|
+
recorded_at: Sat, 05 Dec 2015 11:30:58 GMT
|
|
848
344
|
- request:
|
|
849
345
|
method: get
|
|
850
|
-
uri: http://api.powells.com/
|
|
346
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/search/<API_KEY>/harry%20potter/
|
|
851
347
|
body:
|
|
852
348
|
encoding: US-ASCII
|
|
853
349
|
string: ''
|
|
854
350
|
headers:
|
|
855
351
|
User-Agent:
|
|
856
|
-
- excon/0.
|
|
352
|
+
- excon/0.45.4
|
|
857
353
|
response:
|
|
858
354
|
status:
|
|
859
355
|
code: 200
|
|
860
356
|
message:
|
|
861
357
|
headers:
|
|
862
|
-
|
|
863
|
-
-
|
|
864
|
-
|
|
865
|
-
-
|
|
866
|
-
P3P:
|
|
867
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
868
|
-
X-Cacheable:
|
|
869
|
-
- 'YES'
|
|
358
|
+
Cache-Control:
|
|
359
|
+
- no-cache, no-store
|
|
360
|
+
Pragma:
|
|
361
|
+
- no-cache
|
|
870
362
|
Content-Length:
|
|
871
|
-
- '
|
|
363
|
+
- '5629'
|
|
364
|
+
Content-Type:
|
|
365
|
+
- application/json; charset=utf-8
|
|
366
|
+
Expires:
|
|
367
|
+
- "-1"
|
|
368
|
+
Server:
|
|
369
|
+
- Microsoft-IIS/7.5
|
|
370
|
+
Access-Control-Allow-Origin:
|
|
371
|
+
- "*"
|
|
372
|
+
Set-Cookie:
|
|
373
|
+
- ASP.NET_SessionId=2bbm0usjymhkmxjnexv3gdfs; path=/; HttpOnly
|
|
374
|
+
X-AspNet-Version:
|
|
375
|
+
- 4.0.30319
|
|
376
|
+
X-Powered-By:
|
|
377
|
+
- ASP.NET
|
|
872
378
|
Date:
|
|
873
|
-
-
|
|
874
|
-
X-Varnish:
|
|
875
|
-
- '1472862975'
|
|
876
|
-
Age:
|
|
877
|
-
- '0'
|
|
878
|
-
Via:
|
|
879
|
-
- 1.1 varnish
|
|
880
|
-
Connection:
|
|
881
|
-
- close
|
|
882
|
-
X-Cache:
|
|
883
|
-
- MISS
|
|
379
|
+
- Sat, 05 Dec 2015 11:30:59 GMT
|
|
884
380
|
body:
|
|
885
381
|
encoding: UTF-8
|
|
886
|
-
string: '{"msg":
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
the
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
under the stairs was full of them, and that was where he slept. <P>
|
|
918
|
-
When he was dressed he went down the hall into the kitchen. The table was
|
|
919
|
-
almost hidden beneath all Dudley''s birthday presents. It looked as though
|
|
920
|
-
Dudley had gotten the new computer he wanted, not to mention the second television
|
|
921
|
-
and the racing bike. Exactly why Dudley wanted a racing bike was a mystery
|
|
922
|
-
to Harry, as Dudley was very fat and hated exercise ? unless of course it
|
|
923
|
-
involved punching somebody. Dudley''s favorite punching bag was Harry, but
|
|
924
|
-
he couldn''t often catch him. Harry didn''t look it, but he was very fast.
|
|
925
|
-
<P> Perhaps it had something to do with living in a dark cupboard, but
|
|
926
|
-
Harry had always been small and skinny for his age. He looked even smaller
|
|
927
|
-
and skinnier than he really was because all he had to wear were old clothes
|
|
928
|
-
of Dudley''s, and Dudley was about four times bigger than he was. Harry had
|
|
929
|
-
a thin face, knobbly knees, black hair, and bright green eyes. He wore round
|
|
930
|
-
glasses held together with a lot of Scotch tape because of all the times Dudley
|
|
931
|
-
had punched him on the nose. The only thing Harry liked about his own appearance
|
|
932
|
-
was a very thin scar on his forehead that was shaped like a bolt of lightning.
|
|
933
|
-
He had had it as long as he could remember, and the first question he could
|
|
934
|
-
ever remember asking his Aunt Petunia was how he had gotten it. <P>
|
|
935
|
-
"In the car crash when your parents died," she had said. "And
|
|
936
|
-
don''t ask questions." <P> Don''t ask questions ? that was the
|
|
937
|
-
first rule for a quiet life with the Dursleys. <P> Uncle Vernon entered
|
|
938
|
-
the kitchen as Harry was turning over the bacon. <P> "Comb your
|
|
939
|
-
hair!" he barked, by way of a morning greeting. <P> About once
|
|
940
|
-
a week, Uncle Vernon looked over the top of his newspaper and shouted that
|
|
941
|
-
Harry needed a haircut. Harry must have had more haircuts than the rest of
|
|
942
|
-
the boys in his class put together, but it made no difference, his hair simply
|
|
943
|
-
grew that way ? all over the place. <P> Harry was frying eggs by the
|
|
944
|
-
time Dudley arrived in the kitchen with his mother. Dudley looked a lot like
|
|
945
|
-
Uncle Vernon. He had a large pink face, not much neck, small, watery blue
|
|
946
|
-
eyes, and thick blond hair that lay smoothly on his thick, fat head. Aunt
|
|
947
|
-
Petunia often said that Dudley looked like a baby angel ? Harry often said
|
|
948
|
-
that Dudley looked like a pig in a wig. <P> Harry put the plates of
|
|
949
|
-
egg and bacon on the table, which was difficult as there wasn''t much room.
|
|
950
|
-
Dudley, meanwhile, was counting his presents. His face fell. <P> "Thirty-six,"
|
|
951
|
-
he said, looking up at his mother and father. "That''s two less than
|
|
952
|
-
last year." <P> "Darling, you haven''t counted Auntie Marge''s
|
|
953
|
-
present, see, it''s here under this big one from Mommy and Daddy." <P>
|
|
954
|
-
"All right, thirty-seven then," said Dudley, going red in the face.
|
|
955
|
-
Harry, who could see a huge Dudley tantrum coming on, began wolfing down his
|
|
956
|
-
bacon as fast as possible in case Dudley turned the table over. <P>
|
|
957
|
-
Aunt Petunia obviously scented danger, too, because she said quickly, "And
|
|
958
|
-
we''ll buy you another two presents while we''re out today. How''s that, popkin?
|
|
959
|
-
Two more presents. Is that all right?" <P> Dudley thought for a
|
|
960
|
-
moment. It looked like hard work. Finally he said slowly, "So I''ll have
|
|
961
|
-
thirty . . . thirty . . ." <P> "Thirty-nine, sweetums,"
|
|
962
|
-
said Aunt Petunia. <P> "Oh." Dudley sat down heavily and grabbed
|
|
963
|
-
the nearest parcel. "All right then." <P> Uncle Vernon chuckled.
|
|
964
|
-
<P> "Little tyke wants his money''s worth, just like his father.
|
|
965
|
-
''Atta boy, Dudley!" He ruffled Dudley''s hair. <P> At that moment
|
|
966
|
-
the telephone rang and Aunt Petunia went to answer it while Harry and Uncle
|
|
967
|
-
Vernon watched Dudley unwrap the racing bike, a video camera, a remote control
|
|
968
|
-
airplane, sixteen new computer games, and a VCR. He was ripping the paper
|
|
969
|
-
off a gold wristwatch when Aunt Petunia came back from the telephone looking
|
|
970
|
-
both angry and worried. <P> "Bad news, Vernon," she said.
|
|
971
|
-
"Mrs. Figg''s broken her leg. She can''t take him." She jerked her
|
|
972
|
-
head in Harry''s direction. <P> Dudley''s mouth fell open in horror,
|
|
973
|
-
but Harry''s heart gave a leap. Every year on Dudley''s birthday, his parents
|
|
974
|
-
took him and a friend out for the day, to adventure parks, hamburger restaurants,
|
|
975
|
-
or the movies. Every year, Harry was left behind with Mrs. Figg, a mad old
|
|
976
|
-
lady who lived two streets away. Harry hated it there. The whole house smelled
|
|
977
|
-
of cabbage and Mrs. Figg made him look at photographs of all the cats she''d
|
|
978
|
-
ever owned. <P> "Now what?" said Aunt Petunia, looking furiously
|
|
979
|
-
at Harry as though he''d planned this. Harry knew he ought to feel sorry that
|
|
980
|
-
Mrs. Figg had broken her leg, but it wasn''t easy when he reminded himself
|
|
981
|
-
it would be a whole year before he had to look at Tibbles, Snowy, Mr. Paws,
|
|
982
|
-
and Tufty again. <P> "We could phone Marge," Uncle Vernon
|
|
983
|
-
suggested. <P> "Don''t be silly, Vernon, she hates the boy."
|
|
984
|
-
<P> The Dursleys often spoke about Harry like this, as though he wasn''t
|
|
985
|
-
there ? or rather, as though he was something very nasty that couldn''t understand
|
|
986
|
-
them, like a slug. <P> "What about what''s-her-name, your friend
|
|
987
|
-
? Yvonne?" <P> "On vacation in Majorca," snapped Aunt
|
|
988
|
-
Petunia. <P> "You could just leave me here," Harry put in
|
|
989
|
-
hopefully (he''d be able to watch what he wanted on television for a change
|
|
990
|
-
and maybe even have a go on Dudley''s computer). <P> Aunt Petunia looked
|
|
991
|
-
as though she''d just swallowed a lemon. <P> "And come back and
|
|
992
|
-
find the house in ruins?" she snarled. <P> "I won''t blow
|
|
993
|
-
up the house," said Harry, but they weren''t listening. <P> "I
|
|
994
|
-
suppose we could take him to the zoo," said Aunt Petunia slowly, ".
|
|
995
|
-
. . and leave him in the car. . . ." <P> "That car''s new,
|
|
996
|
-
he''s not sitting in it alone. . . ." <P> Dudley began to cry loudly.
|
|
997
|
-
In fact, he wasn''t really crying ? it had been years since he''d really cried
|
|
998
|
-
? but he knew that if he screwed up his face and wailed, his mother would
|
|
999
|
-
give him anything he wanted. <P> "Dinky Duddydums, don''t cry,
|
|
1000
|
-
Mummy won''t let him spoil your special day!" she cried, flinging her
|
|
1001
|
-
arms around him. <P> "I . . . don''t . . . want . . . him . . .
|
|
1002
|
-
t-t-to come!" Dudley yelled between huge, pretend sobs. "He always
|
|
1003
|
-
sp-spoils everything!" He shot Harry a nasty grin through the gap in
|
|
1004
|
-
his mother''s arms. <P> Just then, the doorbell rang ? "Oh, good
|
|
1005
|
-
Lord, they''re here!" said Aunt Petunia frantically ? and a moment later,
|
|
1006
|
-
Dudley''s best friend, Piers Polkiss, walked in with his mother. Piers was
|
|
1007
|
-
a scrawny boy with a face like a rat. He was usually the one who held people''s
|
|
1008
|
-
arms behind their backs while Dudley hit them. Dudley stopped pretending to
|
|
1009
|
-
cry at once. <P> Half an hour later, Harry, who couldn''t believe his
|
|
1010
|
-
luck, was sitting in the back of the Dursleys'' car with Piers and Dudley,
|
|
1011
|
-
on the way to the zoo for the first time in his life. His aunt and uncle hadn''t
|
|
1012
|
-
been able to think of anything else to do with him, but before they''d left,
|
|
1013
|
-
Uncle Vernon had taken Harry aside. <P> "I''m warning you,"
|
|
1014
|
-
he had said, putting his large purple face right up close to Harry''s, "I''m
|
|
1015
|
-
warning you now, boy ? any funny business, anything at all ? and you''ll be
|
|
1016
|
-
in that cupboard from now until Christmas." <P> "I''m not
|
|
1017
|
-
going to do anything," said Harry, "honestly . . ." <P>
|
|
1018
|
-
But Uncle Vernon didn''t believe him. No one ever did. <P> The problem
|
|
1019
|
-
was, strange things often happened around Harry and it was just no good telling
|
|
1020
|
-
the Dursleys he didn''t make them happen. <P> Once, Aunt Petunia, tired
|
|
1021
|
-
of Harry coming back from the barbers looking as though he hadn''t been at
|
|
1022
|
-
all, had taken a pair of kitchen scissors and cut his hair so short he was
|
|
1023
|
-
almost bald except for his bangs, which she left "to hide that horrible
|
|
1024
|
-
scar." Dudley had laughed himself silly at Harry, who spent a sleepless
|
|
1025
|
-
night imagining school the next day, where he was already laughed at for his
|
|
1026
|
-
baggy clothes and taped glasses. Next morning, however, he had gotten up to
|
|
1027
|
-
find his hair exactly as it had been before Aunt Petunia had sheared it off.
|
|
1028
|
-
He had been given a week in his cupboard for this, even though he had tried
|
|
1029
|
-
to explain that he couldn''t explain how it had grown back so quickly. <P>
|
|
1030
|
-
Another time, Aunt Petunia had been trying to force him into a revolting old
|
|
1031
|
-
sweater of Dudley''s (brown with orange puff balls). The harder she tried
|
|
1032
|
-
to pull it over his head, the smaller it seemed to become, until finally it
|
|
1033
|
-
might have fitted a hand puppet, but certainly wouldn''t fit Harry. Aunt Petunia
|
|
1034
|
-
had decided it must have shrunk in the wash and, to his great relief, Harry
|
|
1035
|
-
wasn''t punished. <P> On the other hand, he''d gotten into terrible
|
|
1036
|
-
trouble for being found on the roof of the school kitchens. Dudley''s gang
|
|
1037
|
-
had been chasing him as usual when, as much to Harry''s surprise as anyone
|
|
1038
|
-
else''s, there he was sitting on the chimney. The Dursleys had received a
|
|
1039
|
-
very angry letter from Harry''s headmistress telling them Harry had been climbing
|
|
1040
|
-
school buildings. But all he''d tried to do (as he shouted at Uncle Vernon
|
|
1041
|
-
through the locked door of his cupboard) was jump behind the big trash cans
|
|
1042
|
-
outside the kitchen doors. Harry supposed that the wind must have caught him
|
|
1043
|
-
in mid-jump. <P> But today, nothing was going to go wrong. It was even
|
|
1044
|
-
worth being with Dudley and Piers to be spending the day somewhere that wasn''t
|
|
1045
|
-
school, his cupboard, or Mrs. Figg''s cabbage-smelling living room. <P>
|
|
1046
|
-
While he drove, Uncle Vernon complained to Aunt Petunia. He liked to complain
|
|
1047
|
-
about things: people at work, Harry, the council, Harry, the bank, and Harry
|
|
1048
|
-
were just a few of his favorite subjects. This morning, it was motorcycles.
|
|
1049
|
-
<P> ". . . roaring along like maniacs, the young hoodlums,"
|
|
1050
|
-
he said, as a motorcycle overtook them. <P> "I had a dream about
|
|
1051
|
-
a motorcycle," said Harry, remembering suddenly. "It was flying."
|
|
1052
|
-
<P> Uncle Vernon nearly crashed into the car in front. He turned right
|
|
1053
|
-
around in his seat and yelled at Harry, his face like a gigantic beet with
|
|
1054
|
-
a mustache: "MOTORCYCLES DON''T FLY!" <P> Dudley and Piers
|
|
1055
|
-
sniggered. <P> "I know they don''t," said Harry. "It
|
|
1056
|
-
was only a dream." <P> But he wished he hadn''t said anything.
|
|
1057
|
-
If there was one thing the Dursleys hated even more than his asking questions,
|
|
1058
|
-
it was his talking about anything acting in a way it shouldn''t, no matter
|
|
1059
|
-
if it was in a dream or even a cartoon ? they seemed to think he might get
|
|
1060
|
-
dangerous ideas. <P> It was a very sunny Saturday and the zoo was crowded
|
|
1061
|
-
with families. The Dursleys bought Dudley and Piers large chocolate ice creams
|
|
1062
|
-
at the entrance and then, because the smiling lady in the van had asked Harry
|
|
1063
|
-
what he wanted before they could hurry him away, they bought him a cheap lemon
|
|
1064
|
-
ice pop. It wasn''t bad, either, Harry thought, licking it as they watched
|
|
1065
|
-
a gorilla scratching its head who looked remarkably like Dudley, except that
|
|
1066
|
-
it wasn''t blond. <P> Harry had the best morning he''d had in a long
|
|
1067
|
-
time. He was careful to walk a little way apart from the Dursleys so that
|
|
1068
|
-
Dudley and Piers, who were starting to get bored with the animals by lunchtime,
|
|
1069
|
-
wouldn''t fall back on their favorite hobby of hitting him. They ate in the
|
|
1070
|
-
zoo restaurant, and when Dudley had a tantrum because his knickerbocker glory
|
|
1071
|
-
didn''t have enough ice cream on top, Uncle Vernon bought him another one
|
|
1072
|
-
and Harry was allowed to finish the first. <P> Harry felt, afterward,
|
|
1073
|
-
that he should have known it was all too good to last. <P> After lunch
|
|
1074
|
-
they went to the reptile house. It was cool and dark in there, with lit windows
|
|
1075
|
-
all along the walls. Behind the glass, all sorts of lizards and snakes were
|
|
1076
|
-
crawling and slithering over bits of wood and stone. Dudley and Piers wanted
|
|
1077
|
-
to see huge, poisonous cobras and thick, man-crushing pythons. Dudley quickly
|
|
1078
|
-
found the largest snake in the place. It could have wrapped its body twice
|
|
1079
|
-
around Uncle Vernon''s car and crushed it into a trash can ? but at the moment
|
|
1080
|
-
it didn''t look in the mood. In fact, it was fast asleep. <P> Dudley
|
|
1081
|
-
stood with his nose pressed against the glass, staring at the glistening brown
|
|
1082
|
-
coils. <P> "Make it move," he whined at his father. Uncle
|
|
1083
|
-
Vernon tapped on the glass, but the snake didn''t budge. <P> "Do
|
|
1084
|
-
it again," Dudley ordered. Uncle Vernon rapped the glass smartly with
|
|
1085
|
-
his knuckles, but the snake just snoozed on. <P> "This is boring,"
|
|
1086
|
-
Dudley moaned. He shuffled away. <P> Harry moved in front of the tank
|
|
1087
|
-
and looked intently at the snake. He wouldn''t have been surprised if it had
|
|
1088
|
-
died of boredom itself ? no company except stupid people drumming their fingers
|
|
1089
|
-
on the glass trying to disturb it all day long. It was worse than having a
|
|
1090
|
-
cupboard as a bedroom, where the only visitor was Aunt Petunia hammering on
|
|
1091
|
-
the door to wake you up; at least he got to visit the rest of the house. <P>
|
|
1092
|
-
The snake suddenly opened its beady eyes. Slowly, very slowly, it raised its
|
|
1093
|
-
head until its eyes were on a level with Harry''s. <P> It winked. <P>
|
|
1094
|
-
Harry stared. Then he looked quickly around to see if anyone was watching.
|
|
1095
|
-
They weren''t. He looked back at the snake and winked, too. <P> The
|
|
1096
|
-
snake jerked its head toward Uncle Vernon and Dudley, then raised its eyes
|
|
1097
|
-
to the ceiling. It gave Harry a look that said quite plainly: <P> "I
|
|
1098
|
-
get that all the time." <P> "I know," Harry murmured
|
|
1099
|
-
through the glass, though he wasn''t sure the snake could hear him. "It
|
|
1100
|
-
must be really annoying." <P> The snake nodded vigorously. <P>
|
|
1101
|
-
"Where do you come from, anyway?" Harry asked. <P> The snake
|
|
1102
|
-
jabbed its tail at a little sign next to the glass. Harry peered at it. <P>
|
|
1103
|
-
Boa Constrictor, Brazil. <P> "Was it nice there?" <P>
|
|
1104
|
-
The boa constrictor jabbed its tail at the sign again and Harry read on: This
|
|
1105
|
-
specimen was bred in the zoo. "Oh, I see ? so you''ve never been to Brazil?"
|
|
1106
|
-
<P> As the snake shook its head, a deafening shout behind Harry made
|
|
1107
|
-
both of them jump. "DUDLEY! MR. DURSLEY! COME AND LOOK AT THIS SNAKE!
|
|
1108
|
-
YOU WON''T BELIEVE WHAT IT''S DOING!" <P> Dudley came waddling
|
|
1109
|
-
toward them as fast as he could. <P> "Out of the way, you,"
|
|
1110
|
-
he said, punching Harry in the ribs. Caught by surprise, Harry fell hard on
|
|
1111
|
-
the concrete floor. What came next happened so fast no one saw how it happened
|
|
1112
|
-
? one second, Piers and Dudley were leaning right up close to the glass, the
|
|
1113
|
-
next, they had leapt back with howls of horror. <P> Harry sat up and
|
|
1114
|
-
gasped; the glass front of the boa constrictor''s tank had vanished. The great
|
|
1115
|
-
snake was uncoiling itself rapidly, slithering out onto the floor. People
|
|
1116
|
-
throughout the reptile house screamed and started running for the exits. <P>
|
|
1117
|
-
As the snake slid swiftly past him, Harry could have sworn a low, hissing
|
|
1118
|
-
voice said, "Brazil, here I come. . . . Thanksss, amigo." <P>
|
|
1119
|
-
The keeper of the reptile house was in shock. <P> "But the glass,"
|
|
1120
|
-
he kept saying, "where did the glass go?" <P> The zoo director
|
|
1121
|
-
himself made Aunt Petunia a cup of strong, sweet tea while he apologized over
|
|
1122
|
-
and over again. Piers and Dudley could only gibber. As far as Harry had seen,
|
|
1123
|
-
the snake hadn''t done anything except snap playfully at their heels as it
|
|
1124
|
-
passed, but by the time they were all back in Uncle Vernon''s car, Dudley
|
|
1125
|
-
was telling them how it had nearly bitten off his leg, while Piers was swearing
|
|
1126
|
-
it had tried to squeeze him to death. But worst of all, for Harry at least,
|
|
1127
|
-
was Piers calming down enough to say, "Harry was talking to it, weren''t
|
|
1128
|
-
you, Harry?" <P> Uncle Vernon waited until Piers was safely out
|
|
1129
|
-
of the house before starting on Harry. He was so angry he could hardly speak.
|
|
1130
|
-
He managed to say, "Go ? cupboard ? stay ? no meals," before he
|
|
1131
|
-
collapsed into a chair, and Aunt Petunia had to run and get him a large brandy.
|
|
1132
|
-
Harry lay in his dark cupboard much later, wishing he had a watch. He didn''t
|
|
1133
|
-
know what time it was and he couldn''t be sure the Dursleys were asleep yet.
|
|
1134
|
-
Until they were, he couldn''t risk sneaking to the kitchen for some food.
|
|
1135
|
-
<P> He''d lived with the Dursleys almost ten years, ten miserable years,
|
|
1136
|
-
as long as he could remember, ever since he''d been a baby and his parents
|
|
1137
|
-
had died in that car crash. He couldn''t remember being in the car when his
|
|
1138
|
-
parents had died. Sometimes, when he strained his memory during long hours
|
|
1139
|
-
in his cupboard, he came up with a strange vision: a blinding flash of green
|
|
1140
|
-
light and a burning pain on his forehead. This, he supposed, was the crash,
|
|
1141
|
-
though he couldn''t imagine where all the green light came from. He couldn''t
|
|
1142
|
-
remember his parents at all. His aunt and uncle never spoke about them, and
|
|
1143
|
-
of course he was forbidden to ask questions. There were no photographs of
|
|
1144
|
-
them in the house. <P> When he had been younger, Harry had dreamed and
|
|
1145
|
-
dreamed of some unknown relation coming to take him away, but it had never
|
|
1146
|
-
happened; the Dursleys were his only family. Yet sometimes he thought (or
|
|
1147
|
-
maybe hoped) that strangers in the street seemed to know him. Very strange
|
|
1148
|
-
strangers they were, too. A tiny man in a violet top hat had bowed to him
|
|
1149
|
-
once while out shopping with Aunt Petunia and Dudley. After asking Harry furiously
|
|
1150
|
-
if he knew the man, Aunt Petunia had rushed them out of the shop without buying
|
|
1151
|
-
anything. A wild-looking old woman dressed all in green had waved merrily
|
|
1152
|
-
at him once on a bus. A bald man in a very long purple coat had actually shaken
|
|
1153
|
-
his hand in the street the other day and then walked away without a word.
|
|
1154
|
-
The weirdest thing about all these people was the way they seemed to vanish
|
|
1155
|
-
the second Harry tried to get a closer look. <P> At school, Harry had
|
|
1156
|
-
no one. Everybody knew that Dudley''s gang hated that odd Harry Potter in
|
|
1157
|
-
his baggy old clothes and broken glasses, and nobody liked to disagree with
|
|
1158
|
-
Dudley''s gang.","type":"Excerpt"}],"synopsis":[{"text":"Rescued from the
|
|
1159
|
-
outrageous neglect of his aunt and uncle, a young boy with a great destiny
|
|
1160
|
-
proves his worth while attending Hogwarts School for Wizards and Witches.","type":"Synopsis"}],"review":[{"text":""[T]he
|
|
1161
|
-
rapturous reception of the Harry Potter books is heartening, because J.K.
|
|
1162
|
-
Rowling is a literary artist, and these three books possess more imaginative
|
|
1163
|
-
life than the majority of novels that are published in this country in any
|
|
1164
|
-
given year. They are full of marvelous invention and humor and fun, but they
|
|
1165
|
-
have more than that." <i>Lee Siegel, The New Republic</i>
|
|
1166
|
-
(<a href="http://www.powells.com/review/2001_07_12">read the
|
|
1167
|
-
entire New Republic review here</a>)","type":"Review"},{"text":""A
|
|
1168
|
-
wonderful first novel....Harry is destined for greatness....Much like Roald
|
|
1169
|
-
Dahl, J.K. Rowling has a gift for keeping the emotions, fears, and triumphs
|
|
1170
|
-
of her characters on a human scale, even while the supernatural is popping
|
|
1171
|
-
out all over." <i>Michael Winerip, The New York Times Book Review</i>","type":"Review"},{"text":""Readers
|
|
1172
|
-
are in for a delightful romp with this debut from a British author who dances
|
|
1173
|
-
in the footsteps of P.L. Travers and Roald Dahl." <i>Publishers
|
|
1174
|
-
Weekly (starred review)</i>","type":"Review"},{"text":""Obviously,
|
|
1175
|
-
<i>Harry Potter and the Sorcerer''s Stone</i> should make any
|
|
1176
|
-
modern 11-year-old a very happy reader. The novel moves quickly, packs in
|
|
1177
|
-
everything from a boa constrictor that winks to a melancholy Zen-spouting
|
|
1178
|
-
centaur to an owl postal system, and ends with a scary surprise." <i>Michael
|
|
1179
|
-
Dirda, The Washington Post Book World</i>","type":"Review"},{"text":""This
|
|
1180
|
-
hugely enjoyable fantasy is filled with imaginative details, from oddly flavored
|
|
1181
|
-
jelly beans to dragons'' eggs hatched on the hearth. It''s slanted toward
|
|
1182
|
-
action-oriented readers, who will find that Briticisms meld with all the other
|
|
1183
|
-
wonders of magic school." <i>Kirkus Reviews</i>","type":"Review"},{"text":""A
|
|
1184
|
-
charming, imaginative, magical confection of a novel." <i>The Boston
|
|
1185
|
-
Globe</i>","type":"Review"},{"text":""Rowling''s wonderful ability
|
|
1186
|
-
to put a fantastic spin on sports, student rivalry, and eccentric faculty
|
|
1187
|
-
contributes to the humor, charm, and, well, delight of her utterly captivating
|
|
1188
|
-
story." <i>Booklist, starred review</i>","type":"Review"},{"text":""Harry
|
|
1189
|
-
himself is the perfect confused and unassuming hero, whom trouble follows
|
|
1190
|
-
like a wizard''s familiar. After reading this entrancing fantasy, readers
|
|
1191
|
-
will be convinced that they, too, could take the train to Hogwarts School,
|
|
1192
|
-
if only they could find Platform Nine and Three Quarters at the King''s Cross
|
|
1193
|
-
Station." <i>School Library Journal, starred review</i>","type":"Review"},{"text":"<DIV>*
|
|
1194
|
-
"Readers are in for a delightful romp with this award-winning debut from
|
|
1195
|
-
a British author who dances in the footsteps of P.L. Travers and Roald Dahl."<p>*Publishers
|
|
1196
|
-
Weekly, starred review<p>* "Rowling''s wonderful ability to put
|
|
1197
|
-
a fantastic spin on sports, student rivalry, and eccentric faculty contributes
|
|
1198
|
-
to the humor, charm, and, well, delight of her utterly captivating story."<p>*Booklist,
|
|
1199
|
-
starred review<p>* "Harry himself is the perfect confused and unassuming
|
|
1200
|
-
hero, whom trouble follows like a wizard''s familiar. After reading this entrancing
|
|
1201
|
-
fantasy, readers will be convinced that they, too, could take the train to
|
|
1202
|
-
Hogwarts School, if only they could find Platform Nine and Three Quarters
|
|
1203
|
-
at the King''s Cross Station."<p>*School Library Journal, starred
|
|
1204
|
-
review<p></div>","type":"Review"}],"publisher-comments":[{"text":"Harry
|
|
1205
|
-
Potter has never been the star of a Quidditch team, scoring points while riding
|
|
1206
|
-
a broom far above the ground. He knows no spells, has never helped to hatch
|
|
1207
|
-
a dragon, and has never worn a cloak of invisibility. <P>All he knows
|
|
1208
|
-
is a miserable life with the Dursleys, his horrible aunt and uncle, and their
|
|
1209
|
-
abominable son, Dudley &#151 a great big swollen spoiled bully. Harry''s
|
|
1210
|
-
room is a closet at the foot of the stairs, and he hasn''t had a birthday
|
|
1211
|
-
party in eleven years. <P>But all that is about to change when a mysterious
|
|
1212
|
-
letter arrives by owl messenger: a letter with an invitation to an incredible
|
|
1213
|
-
place that Harry &#151 and anyone who reads about him &#151 will find
|
|
1214
|
-
unforgettable. <P>For it''s there that he finds not only friends, aerial
|
|
1215
|
-
sports, and magic in everything from classes to meals, but a great destiny
|
|
1216
|
-
that''s been waiting for him...if Harry can survive the encounter.","type":"Publisher
|
|
1217
|
-
Comments"}],"about-the-author":[{"text":"J.K. Rowling was a struggling single
|
|
1218
|
-
mother when she wrote the beginnings of <i>Harry Potter and the Sorcerer''s
|
|
1219
|
-
Stone</i> on scraps of paper at a local cafe. But her efforts were soon
|
|
1220
|
-
rewarded with an award from the Scottish Arts Council enabling her to finish
|
|
1221
|
-
the novel. She has since won numerous awards including the ABBY Award (American
|
|
1222
|
-
Booksellers Award) in 1999.","type":"About the Author"}]}]}'
|
|
382
|
+
string: '[{"msg":"()","input":[{"extension":"","page":"1","per_page":"10","api":"search","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"partner_id":"37023","last_page":0,"per_page":"10","page_results":1,"Internal":1}],"results":[{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781156026526?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg"}],"author":[{"alpha":"Books
|
|
383
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
384
|
+
Potter Attractions, Harry Potter Bands, Harry Potter Controversies, Harry
|
|
385
|
+
Potter Derived Works","isbn":"9781156026526","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-fandom-9781156026519?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg"}],"author":[{"alpha":"Books
|
|
386
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Fandom: Harry Potter Bands,
|
|
387
|
+
Harry Potter Derived Works, Harry Potter Websites, Harry and the Potters Albums,
|
|
388
|
+
Harry Potter Fand","isbn":"9781156026519","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/libri-di-harry-potter-9781230724034?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg"}],"author":[{"alpha":"Wikipedia
|
|
389
|
+
Fonte","proper":"Fonte Wikipedia"}],"title":"Libri Di Harry Potter: Harry
|
|
390
|
+
Potter E I Doni Della Morte, Traduzione in Italiano Di Harry Potter, Harry
|
|
391
|
+
Potter E La Pietra Filosofale, Harry","isbn":"9781230724034","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781157847496?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg"}],"author":[{"alpha":"Books
|
|
392
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
393
|
+
Potter Attractions, Harry Potter Controversies, Harry Potter Fandom","isbn":"9781157847496","publisher":"Books
|
|
394
|
+
LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-9781159040345?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg"}],"author":[{"alpha":"Gruppe
|
|
395
|
+
Bcher","proper":"Bcher Gruppe"}],"title":"Harry Potter: Joanne K. Rowling,
|
|
396
|
+
Harry Potter Und Der Stein Der Weisen, Figuren Der Harry-Potter-Romane, Begriffe
|
|
397
|
+
Der Harry-Potter-R","isbn":"9781159040345","publisher":"Books LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-controversies-9781155358062?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg"}],"author":[{"alpha":"Books
|
|
398
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Controversies: Religious
|
|
399
|
+
Debates Over the Harry Potter Series, Politics of Harry Potter, Harry Potter
|
|
400
|
+
Influences and Analogues","isbn":"9781155358062","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-games-9781155358093?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg"}],"author":[{"alpha":"Books
|
|
401
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Games: Harry Potter and
|
|
402
|
+
the Order of the Phoenix, Harry Potter and the Half-Blood Prince, Harry Potter
|
|
403
|
+
Trading Card Game","isbn":"9781155358093","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781155358116?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg"}],"author":[{"alpha":"Books
|
|
404
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Universe: Muggle, Quidditch,
|
|
405
|
+
Hogwarts, Magic in Harry Potter, Spells in Harry Potter, Magical Objects in
|
|
406
|
+
Harry Potter","isbn":"9781155358116","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/livre-de-harry-potter-9781230691480?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg"}],"author":[{"alpha":"Wikipedia
|
|
407
|
+
Source","proper":"Source Wikipedia"}],"title":"Livre de Harry Potter: Harry
|
|
408
|
+
Potter Et La Coupe de Feu, Harry Potter Et Les Reliques de La Mort, Harry
|
|
409
|
+
Potter Et Le Prisonnier D''Azkaban, Har","isbn":"9781230691480","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781230495286?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg"}],"author":[{"alpha":"Wikipedia
|
|
410
|
+
Source","proper":"Source Wikipedia"}],"title":"Harry Potter Universe: Muggle,
|
|
411
|
+
Quidditch, Hogwarts, Magic in Harry Potter, Magical Objects in Harry Potter,
|
|
412
|
+
List of Spells in Harry Potter, M","isbn":"9781230495286","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]}]}]'
|
|
1223
413
|
http_version:
|
|
1224
|
-
recorded_at:
|
|
414
|
+
recorded_at: Sat, 05 Dec 2015 11:31:00 GMT
|
|
1225
415
|
- request:
|
|
1226
416
|
method: get
|
|
1227
|
-
uri: http://api.powells.com/
|
|
417
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/locations/<API_KEY>/powells-city-of-books
|
|
1228
418
|
body:
|
|
1229
419
|
encoding: US-ASCII
|
|
1230
420
|
string: ''
|
|
1231
421
|
headers:
|
|
1232
422
|
User-Agent:
|
|
1233
|
-
- excon/0.
|
|
423
|
+
- excon/0.45.4
|
|
1234
424
|
response:
|
|
1235
425
|
status:
|
|
1236
426
|
code: 200
|
|
1237
427
|
message:
|
|
1238
428
|
headers:
|
|
1239
|
-
|
|
1240
|
-
-
|
|
1241
|
-
|
|
1242
|
-
-
|
|
1243
|
-
P3P:
|
|
1244
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
1245
|
-
X-Cacheable:
|
|
1246
|
-
- 'YES'
|
|
429
|
+
Cache-Control:
|
|
430
|
+
- no-cache, no-store
|
|
431
|
+
Pragma:
|
|
432
|
+
- no-cache
|
|
1247
433
|
Content-Length:
|
|
1248
|
-
- '
|
|
434
|
+
- '295'
|
|
435
|
+
Content-Type:
|
|
436
|
+
- application/json; charset=utf-8
|
|
437
|
+
Expires:
|
|
438
|
+
- "-1"
|
|
439
|
+
Server:
|
|
440
|
+
- Microsoft-IIS/7.5
|
|
441
|
+
Access-Control-Allow-Origin:
|
|
442
|
+
- "*"
|
|
443
|
+
Set-Cookie:
|
|
444
|
+
- ASP.NET_SessionId=iglzbmsndiktk5c2kd4rqyhz; path=/; HttpOnly
|
|
445
|
+
X-AspNet-Version:
|
|
446
|
+
- 4.0.30319
|
|
447
|
+
X-Powered-By:
|
|
448
|
+
- ASP.NET
|
|
1249
449
|
Date:
|
|
1250
|
-
-
|
|
1251
|
-
X-Varnish:
|
|
1252
|
-
- '1472863064'
|
|
1253
|
-
Age:
|
|
1254
|
-
- '0'
|
|
1255
|
-
Via:
|
|
1256
|
-
- 1.1 varnish
|
|
1257
|
-
Connection:
|
|
1258
|
-
- close
|
|
1259
|
-
X-Cache:
|
|
1260
|
-
- MISS
|
|
450
|
+
- Sat, 05 Dec 2015 11:31:00 GMT
|
|
1261
451
|
body:
|
|
1262
452
|
encoding: UTF-8
|
|
1263
|
-
string: '{"msg":[],"input":{"extension":
|
|
1264
|
-
J. K. ","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780590353427?utm_source=powellsapi","isbn":"9780590353427","title":"Harry
|
|
1265
|
-
Potter and the Sorcerer''s Stone (Harry Potter #1)","publisher":"Arthur A.
|
|
1266
|
-
Levine Books","list_prices":{"10.99":1}}]}'
|
|
453
|
+
string: '{"$VAR1":[{"msg":"[]","input":[{"extension":"data","page":"1","per_page":"10","api":"locations","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"last_page":0,"per_page":10,"partner_id":"","page_results":1,"Internal":1}],"result":[]}]}'
|
|
1267
454
|
http_version:
|
|
1268
|
-
recorded_at:
|
|
455
|
+
recorded_at: Sat, 05 Dec 2015 11:31:00 GMT
|
|
1269
456
|
- request:
|
|
1270
457
|
method: get
|
|
1271
|
-
uri: http://api.powells.com/
|
|
458
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/search/<API_KEY>/harry%20potter/?debug=1
|
|
1272
459
|
body:
|
|
1273
460
|
encoding: US-ASCII
|
|
1274
461
|
string: ''
|
|
1275
462
|
headers:
|
|
1276
463
|
User-Agent:
|
|
1277
|
-
- excon/0.
|
|
464
|
+
- excon/0.45.4
|
|
1278
465
|
response:
|
|
1279
466
|
status:
|
|
1280
467
|
code: 200
|
|
1281
468
|
message:
|
|
1282
469
|
headers:
|
|
1283
|
-
|
|
1284
|
-
-
|
|
1285
|
-
|
|
1286
|
-
-
|
|
1287
|
-
P3P:
|
|
1288
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
1289
|
-
X-Cacheable:
|
|
1290
|
-
- 'YES'
|
|
470
|
+
Cache-Control:
|
|
471
|
+
- no-cache, no-store
|
|
472
|
+
Pragma:
|
|
473
|
+
- no-cache
|
|
1291
474
|
Content-Length:
|
|
1292
|
-
- '
|
|
475
|
+
- '5629'
|
|
476
|
+
Content-Type:
|
|
477
|
+
- application/json; charset=utf-8
|
|
478
|
+
Expires:
|
|
479
|
+
- "-1"
|
|
480
|
+
Server:
|
|
481
|
+
- Microsoft-IIS/7.5
|
|
482
|
+
Access-Control-Allow-Origin:
|
|
483
|
+
- "*"
|
|
484
|
+
Set-Cookie:
|
|
485
|
+
- ASP.NET_SessionId=v2uumvopusnfzy3nlfamjjec; path=/; HttpOnly
|
|
486
|
+
X-AspNet-Version:
|
|
487
|
+
- 4.0.30319
|
|
488
|
+
X-Powered-By:
|
|
489
|
+
- ASP.NET
|
|
1293
490
|
Date:
|
|
1294
|
-
-
|
|
1295
|
-
X-Varnish:
|
|
1296
|
-
- '1472863079'
|
|
1297
|
-
Age:
|
|
1298
|
-
- '0'
|
|
1299
|
-
Via:
|
|
1300
|
-
- 1.1 varnish
|
|
1301
|
-
Connection:
|
|
1302
|
-
- close
|
|
1303
|
-
X-Cache:
|
|
1304
|
-
- MISS
|
|
491
|
+
- Sat, 05 Dec 2015 11:31:02 GMT
|
|
1305
492
|
body:
|
|
1306
|
-
encoding:
|
|
1307
|
-
string:
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
cHJvamVjdCB3aWxsIHRha2UgYXBwcm94aW1hdGVseSBzaXggbW9udGhzIHRv
|
|
1339
|
-
IGNvbXBsZXRlLCBhbmQgd2UnbGwgYmUgcmV2ZWFsaW5nIHRoZSBuZXcgc3Bh
|
|
1340
|
-
Y2UgdGhpcyBzdW1tZXIuIFdlIGNhbid0IHdhaXQgdG8gc2hvdyBpdCBvZmYh
|
|
1341
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDsmbHQ7YiZndDtWaXNpdGluZyB0
|
|
1342
|
-
aGUgc3RvcmUgZHVyaW5nIHRoZSByZW1vZGVsOiZsdDsvYiZndDsgJmx0O2Jy
|
|
1343
|
-
IC8mZ3Q7Jmx0O2ImZ3Q7U3RvcmUgaG91cnM6Jmx0Oy9iJmd0OyBUaGUgc3Rv
|
|
1344
|
-
cmUgd2lsbCBjb250aW51ZSBub3JtYWwgb3BlcmF0aW9ucyB0aHJvdWdob3V0
|
|
1345
|
-
IHRoZSBwcm9qZWN0LiAmbHQ7YnIgLyZndDsmbHQ7YiZndDtTdG9yZSBlbnRy
|
|
1346
|
-
YW5jZTombHQ7L2ImZ3Q7IFRoZSBHcmVlbiBSb29tIGVudHJhbmNlIG9uIDEw
|
|
1347
|
-
dGggYW5kIEJ1cm5zaWRlIHdpbGwgYmUgY2xvc2VkIGR1cmluZyB0aGUgcmVt
|
|
1348
|
-
b2RlbC4gUGxlYXNlIHVzZSB0aGUgT3JhbmdlIFJvb20gZW50cmFuY2Ugb24g
|
|
1349
|
-
TlcgMTF0aCBhbmQgQ291Y2guICZsdDticiAvJmd0OyZsdDtiJmd0O0ZpbmRp
|
|
1350
|
-
bmcgeW91ciB3YXkgYXJvdW5kOiZsdDsvYiZndDsgQWxsIHRoZSBzZWN0aW9u
|
|
1351
|
-
cyB0aGF0IHByZXZpb3VzbHkgcmVzaWRlZCBpbiB0aGUgQmx1ZSBhbmQgR3Jl
|
|
1352
|
-
ZW4gUm9vbXMgaGF2ZSBmb3VuZCBuZXcgaG9tZXMgZm9yIHRoZSBkdXJhdGlv
|
|
1353
|
-
biBvZiB0aGUgY29uc3RydWN0aW9uLiBXaXRoIHNvIG1hbnkgc2VjdGlvbnMg
|
|
1354
|
-
b24gdGhlIG1vdmUsIHRoZXJlIGFyZSBjaGFuZ2VzIGluIHZpcnR1YWxseSBl
|
|
1355
|
-
dmVyeSByb29tIG9mIHRoZSBzdG9yZS4gVmlldyB0aGUgJmx0O2EgaHJlZj0n
|
|
1356
|
-
aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9pbWFnZXMvQlVSTi1NQVAtMjAxNC0w
|
|
1357
|
-
MS5qcGcnJmd0O3RlbXBvcmFyeSBzdG9yZSBtYXAgKFBERikmbHQ7L2EmZ3Q7
|
|
1358
|
-
LiAmbHQ7YnIgLyZndDsgJmx0O2JyIC8mZ3Q7Rm9yIG1vcmUgaW5mb3JtYXRp
|
|
1359
|
-
b24gYWJvdXQgdGhlIGV4Y2l0aW5nIHRoaW5ncyBpbiBzdG9yZSBmb3IgdGhl
|
|
1360
|
-
IENpdHkgb2YgQm9va3MsICZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5w
|
|
1361
|
-
b3dlbGxzLmNvbS9yZW1vZGVsLTIwMTQmcXVvdDsmZ3Q7Y2xpY2sgaGVyZSZs
|
|
1362
|
-
dDsvYSZndDsuICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtbaHIgc2l6ZT0m
|
|
1363
|
-
cXVvdDsxMCZxdW90O10gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDth
|
|
1364
|
-
IGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9ib29rbWFjaGlu
|
|
1365
|
-
ZSZxdW90OyZndDsmbHQ7YiZndDtUaGUgRXNwcmVzc28gQm9vayBNYWNoaW5l
|
|
1366
|
-
wq4mbHQ7L2ImZ3Q7Jmx0Oy9hJmd0OyAmbHQ7YnIgLyZndDtWaXNpdCB0aGUg
|
|
1367
|
-
UHVycGxlIFJvb20gaW4gdGhlIENpdHkgb2YgQm9va3MgdG8gcHVibGlzaCB5
|
|
1368
|
-
b3VyIG93biBib29rIG9yIHByaW50IGhhcmQtdG8tZmluZCB0aXRsZXMsIGFs
|
|
1369
|
-
bCBpbiB0aGUgdGltZSBpdCB0YWtlcyB0byBtYWtlIGEgY3VwIG9mIGNvZmZl
|
|
1370
|
-
ZS4gJmx0O2EgaHJlZj0mcXVvdDtodHRwOi8vd3d3LnBvd2VsbHMuY29tL2Jv
|
|
1371
|
-
b2ttYWNoaW5lJnF1b3Q7Jmd0O0xlYXJuIG1vcmUuJmx0Oy9hJmd0OyAmbHQ7
|
|
1372
|
-
YnIgLyZndDsgJmx0O2JyIC8mZ3Q7W2hyIHNpemU9JnF1b3Q7MTAmcXVvdDtd
|
|
1373
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtQb3dlbGwncyBDaXR5IG9mIEJv
|
|
1374
|
-
b2tzIGlzIGEgYm9vayBsb3ZlcidzIHBhcmFkaXNlLCB0aGUgbGFyZ2VzdCB1
|
|
1375
|
-
c2VkIGFuZCBuZXcgYm9va3N0b3JlIGluIHRoZSB3b3JsZC4gTG9jYXRlZCBp
|
|
1376
|
-
biBkb3dudG93biBQb3J0bGFuZCwgT3JlZ29uLCBhbmQgb2NjdXB5aW5nIGFu
|
|
1377
|
-
IGVudGlyZSBjaXR5IGJsb2NrLCB0aGUgQ2l0eSBzdG9ja3MgbW9yZSB0aGFu
|
|
1378
|
-
IGEgbWlsbGlvbiBuZXcgYW5kIHVzZWQgYm9va3MuIE5pbmUgY29sb3IgY29k
|
|
1379
|
-
ZWQgcm9vbXMgaG91c2Ugb3ZlciAzLDUwMCBkaWZmZXJlbnQgc2VjdGlvbnMs
|
|
1380
|
-
IG9mZmVyaW5nIHNvbWV0aGluZyBmb3IgZXZlcnkgaW50ZXJlc3QsIGluY2x1
|
|
1381
|
-
ZGluZyBhbiBpbmNyZWRpYmxlIHNlbGVjdGlvbiBvZiBvdXQtb2YtcHJpbnQg
|
|
1382
|
-
YW5kIGhhcmQtdG8tZmluZCB0aXRsZXMuICZsdDticiAvJmd0OyAmbHQ7YnIg
|
|
1383
|
-
LyZndDtFYWNoIG1vbnRoLCB0aGUgQmFzaWwgSGFsbHdhcmQgR2FsbGVyeSAo
|
|
1384
|
-
bG9jYXRlZCB1cHN0YWlycyBpbiB0aGUgUGVhcmwgUm9vbSkgaG9zdHMgYSBu
|
|
1385
|
-
ZXcgYXJ0IGV4aGliaXQsIGFzIHdlbGwgYXMgZG96ZW5zIG9mICZsdDthIGhy
|
|
1386
|
-
ZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9jYWxlbmRhciZxdW90
|
|
1387
|
-
OyZndDthdXRob3IgZXZlbnRzJmx0Oy9hJmd0OyBmZWF0dXJpbmcgYWNjbGFp
|
|
1388
|
-
bWVkIHdyaXRlcnMsIGFydGlzdHMsIGFuZCB0aGlua2VycyBzdWNoIGFzIFJv
|
|
1389
|
-
ZGR5IERveWxlLCBKb3ljZSBDYXJvbCBPYXRlcywgTWljaGFlbCBDaGFib24s
|
|
1390
|
-
IEFubmllIExlaWJvdml0eiwgYW5kIFByZXNpZGVudCBKaW1teSBDYXJ0ZXIu
|
|
1391
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtUaGUgQ2l0eSdzICZsdDthIGhy
|
|
1392
|
-
ZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9sb2NhdGlvbnMvcG93
|
|
1393
|
-
ZWxscy1jaXR5LW9mLWJvb2tzL3RoZS1yYXJlLWJvb2stcm9vbS8mcXVvdDsm
|
|
1394
|
-
Z3Q7UmFyZSBCb29rIFJvb20mbHQ7L2EmZ3Q7IGdhdGhlcnMgYXV0b2dyYXBo
|
|
1395
|
-
ZWQgZmlyc3QgZWRpdGlvbnMgYW5kIG90aGVyIGNvbGxlY3RpYmxlIHZvbHVt
|
|
1396
|
-
ZXMgZm9yIHJlYWRlcnMgaW4gc2VhcmNoIG9mIGEgb25lLW9mLWEta2luZCB0
|
|
1397
|
-
cmVhc3VyZS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0O0FuZCB0aGUgQ2l0
|
|
1398
|
-
eSdzIG5ld2VzdCBhZGRpdGlvbiAoT2N0b2JlciAyMDEwKSBpcyAmbHQ7YSBo
|
|
1399
|
-
cmVmPSZxdW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRpb25zL3Bv
|
|
1400
|
-
d2VsbHMtYm9va3MtYmxkZy0yLyZxdW90OyZndDtQb3dlbGwncyBCb29rcyBC
|
|
1401
|
-
bGRnLiAyJmx0Oy9hJmd0OywgYSByZWxvY2F0aW9uIG9mIFBvd2VsbCdzIFRl
|
|
1402
|
-
Y2huaWNhbCBCb29rcywgYnJpbmdzIG1hdGhlbWF0aWNzLCBzY2llbmNlcywg
|
|
1403
|
-
Y29tcHV0aW5nLCBlbmdpbmVlcmluZywgY29uc3RydWN0aW9uLCBhbmQgdHJh
|
|
1404
|
-
bnNwb3J0YXRpb24gc2VjdGlvbnMgY2xvc2VyIHRvIHZpc2l0b3JzIGF0IHRo
|
|
1405
|
-
ZSBmbGFnc2hpcCBzdG9yZS4gQmxkZy4gMiBpcyBsb2NhdGVkIGFjcm9zcyB0
|
|
1406
|
-
aGUgc3RyZWV0IGZyb20gdGhlIENpdHkgb2YgQm9va3Mgb24gdGhlIGNvcm5l
|
|
1407
|
-
ciBvZiBOVyAxMHRoIGFuZCBDb3VjaC4gJmx0O2JyIC8mZ3Q7ICZsdDticiAv
|
|
1408
|
-
Jmd0O0V2ZXJ5IGRheSBhdCBvdXIgYnV5ZXJzJyBjb3VudGVyIGluIHRoZSBP
|
|
1409
|
-
cmFuZ2UgUm9vbSB3ZSBwdXJjaGFzZSB0aG91c2FuZHMgb2YgdXNlZCBib29r
|
|
1410
|
-
cyBmcm9tIHRoZSBwdWJsaWMuIFBvd2VsbCdzIHB1cmNoYXNlcyBzcGVjaWFs
|
|
1411
|
-
IGNvbGxlY3Rpb25zLCBsaWJyYXJpZXMsIGFuZCBib29rc3RvcmUgaW52ZW50
|
|
1412
|
-
b3JpZXMgYXMgd2VsbC4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDti
|
|
1413
|
-
Jmd0O0EgZmV3IGZhY3RzIGFib3V0IHRoZSBDaXR5IG9mIEJvb2tzOiZsdDsv
|
|
1414
|
-
YiZndDsgJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyDigKIgNjgsMDAwIHNx
|
|
1415
|
-
dWFyZSBmZWV0IHBhY2tlZCB3aXRoIGJvb2tzLiAmbHQ7YnIgLyZndDsg4oCi
|
|
1416
|
-
IFdlIGJ1eSAzLDAwMCB1c2VkIGJvb2tzIG92ZXIgdGhlIGNvdW50ZXIgZXZl
|
|
1417
|
-
cnkgZGF5LiAmbHQ7YnIgLyZndDsg4oCiIEFwcHJveGltYXRlbHkgMywwMDAg
|
|
1418
|
-
cGVvcGxlIHdhbGsgaW4gYW5kIGJ1eSBzb21ldGhpbmcgZXZlcnkgZGF5LiAm
|
|
1419
|
-
bHQ7YnIgLyZndDsg4oCiIEFub3RoZXIgMywwMDAgcGVvcGxlIGp1c3QgYnJv
|
|
1420
|
-
d3NlIGFuZCBkcmluayBjb2ZmZWUuICZsdDticiAvJmd0OyDigKIgV2Ugc3Rv
|
|
1421
|
-
Y2sgMTIyIG1ham9yIHN1YmplY3QgYXJlYXMgYW5kIG1vcmUgdGhhbiAzLDUw
|
|
1422
|
-
MCBzdWJzZWN0aW9ucy4gJmx0O2JyIC8mZ3Q7IOKAoiBZb3UnbGwgZmluZCBt
|
|
1423
|
-
b3JlIHRoYW4gMSwwMDAsMDAwIHZvbHVtZXMgb24gb3VyIHNoZWx2ZXMuICZs
|
|
1424
|
-
dDticiAvJmd0OyDigKIgQXBwcm94aW1hdGVseSA4MCwwMDAgYm9vayBsb3Zl
|
|
1425
|
-
cnMgYnJvd3NlIHRoZSBDaXR5J3Mgc2hlbHZlcyBldmVyeSBkYXkgaW4gUG9y
|
|
1426
|
-
dGxhbmQgYW5kIHZpYSB0aGUgSW50ZXJuZXQuICZsdDticiAvJmd0OyAmbHQ7
|
|
1427
|
-
YnIgLyZndDtTbyBpcyBvdXIgbW90aGVyIHNoaXAgdGhlIHdvcmxkJ3MgbGFy
|
|
1428
|
-
Z2VzdCBib29rc3RvcmU/IEhlY2ssIGl0IG1heSBiZSBiaWdnZXIgdGhhbiB5
|
|
1429
|
-
b3VyIHdob2xlIHRvd24uICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtUaGUg
|
|
1430
|
-
Jmx0O0kmZ3Q7V2FzaGluZ3RvbiBQb3N0Jmx0Oy9JJmd0OyBjYWxsZWQgUG93
|
|
1431
|
-
ZWxsJ3MgJnF1b3Q7cGVyaGFwcyB0aGUgYmVzdCBib29rc3RvcmUgaW4gdGhl
|
|
1432
|
-
IHdvcmxkLiZxdW90OyBZb3UgY2FuIGFsc28gYnJvd3NlIG91ciAmbHQ7YSBo
|
|
1433
|
-
cmVmPSZxdW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vcGRmL2J1cm5zaWRl
|
|
1434
|
-
X21hcF8yMDExLnBkZiZxdW90OyZndDtzdG9yZSBtYXAmbHQ7L2EmZ3Q7IG9u
|
|
1435
|
-
bGluZSBpbiAuUERGIGZvcm1hdC4gKFBsZWFzZSBub3RlOiBBbGwgdGhlIHNl
|
|
1436
|
-
Y3Rpb25zIHRoYXQgcHJldmlvdXNseSByZXNpZGVkIGluIHRoZSBCbHVlIGFu
|
|
1437
|
-
ZCBHcmVlbiBSb29tcyBoYXZlIGZvdW5kIG5ldyBob21lcyBmb3IgdGhlIGR1
|
|
1438
|
-
cmF0aW9uIG9mIG91ciByZW1vZGVsIHByb2plY3QuIFdpdGggc28gbWFueSBz
|
|
1439
|
-
ZWN0aW9ucyBvbiB0aGUgbW92ZSwgdGhlcmUgYXJlIGNoYW5nZXMgaW4gdmly
|
|
1440
|
-
dHVhbGx5IGV2ZXJ5IHJvb20gb2YgdGhlIHN0b3JlLiBUbyB2aWV3IHRoZSB0
|
|
1441
|
-
ZW1wb3Jhcnkgc3RvcmUgbWFwLCAmbHQ7YSBocmVmPSZxdW90O2h0dHA6Ly93
|
|
1442
|
-
d3cucG93ZWxscy5jb20vaW1hZ2VzL0JVUk4tTUFQLTIwMTQtMDEuanBnJnF1
|
|
1443
|
-
b3Q7Jmd0O2NsaWNrIGhlcmUmbHQ7L2EmZ3Q7LikgJmx0O2JyIC8mZ3Q7ICZs
|
|
1444
|
-
dDticiAvJmd0O0lmIHlvdSd2ZSBhbHJlYWR5IHBsYWNlZCBhbiBvcmRlciBm
|
|
1445
|
-
b3IgYSBib29rIHZpYSBvdXIgd2Vic2l0ZSBhbmQgd291bGQgbGlrZSB0byBj
|
|
1446
|
-
aGVjayBvbiBpdHMgc3RhdHVzLCBwbGVhc2UgZW1haWwgdGhlIGludGVybmV0
|
|
1447
|
-
IG9mZmljZSBhdCAmbHQ7YSBocmVmPSZxdW90O21haWx0bzpoZWxwQHBvd2Vs
|
|
1448
|
-
bHMuY29tP3N1YmplY3Q9SSBIYXZlIGEgUXVlc3Rpb24mcXVvdDsmZ3Q7aGVs
|
|
1449
|
-
cEBwb3dlbGxzLmNvbSZsdDsvYSZndDsuICZsdDticiAvJmd0OyAmbHQ7YnIg
|
|
1450
|
-
LyZndDsgJmx0O2JyIC8mZ3Q7Jmx0O2ImZ3Q7TW9yZSBhYm91dCBQb3dlbGwn
|
|
1451
|
-
cyBDaXR5IG9mIEJvb2tzOiZsdDsvYiZndDsgJmx0O2JyIC8mZ3Q7ICZsdDti
|
|
1452
|
-
ciAvJmd0OyZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNv
|
|
1453
|
-
bS9pbWFnZXMvQlVSTi1NQVAtMjAxNC0wMS5qcGcmcXVvdDsmZ3Q7U3RvcmUg
|
|
1454
|
-
TWFwIChQREYpJmx0Oy9hJmd0OyDigKIgJmx0O2EgaHJlZj0mcXVvdDtodHRw
|
|
1455
|
-
Oi8vd3d3LnBvd2VsbHMuY29tL2xvY2F0aW9ucy9wb3dlbGxzLWNpdHktb2Yt
|
|
1456
|
-
Ym9va3MvZGlyZWN0aW9ucy10by1wb3dlbGxzLWNpdHktb2YtYm9va3MvJnF1
|
|
1457
|
-
b3Q7Jmd0O0RpcmVjdGlvbnMgdG8gUG93ZWxsJ3MgQ2l0eSBvZiBCb29rcyZs
|
|
1458
|
-
dDsvYSZndDsg4oCiICZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dl
|
|
1459
|
-
bGxzLmNvbS9sb2NhdGlvbnMvcG93ZWxscy1jaXR5LW9mLWJvb2tzL3dvcmxk
|
|
1460
|
-
LWN1cC1jb2ZmZWUtdGVhLWF0LXBvd2VsbHMtY2l0eS1vZi1ib29rcy8mcXVv
|
|
1461
|
-
dDsmZ3Q7V29ybGQgQ3VwIENvZmZlZSAmYW1wO2FtcDsgVGVhIGF0IFBvd2Vs
|
|
1462
|
-
bCdzIENpdHkgb2YgQm9va3MmbHQ7L2EmZ3Q7IOKAoiAmbHQ7YSBocmVmPSZx
|
|
1463
|
-
dW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRpb25zL3Bvd2VsbHMt
|
|
1464
|
-
Y2l0eS1vZi1ib29rcy90aGUtcmFyZS1ib29rLXJvb20vJnF1b3Q7Jmd0O1Ro
|
|
1465
|
-
ZSBSYXJlIEJvb2sgUm9vbSZsdDsvYSZndDsiLCJtZXNzYWdlIjp7ImV4cCI6
|
|
1466
|
-
IiIsInR5cGUiOiIiLCJ0eHQiOiIifSwic3RhdGUiOiJPUiIsImNpdHkiOiJQ
|
|
1467
|
-
b3J0bGFuZCIsInppcCI6Ijk3MjA5Iiwic2x1ZyI6InBvd2VsbHMtY2l0eS1v
|
|
1468
|
-
Zi1ib29rcyIsInVybCI6Imh0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRp
|
|
1469
|
-
b25zL3Bvd2VsbHMtY2l0eS1vZi1ib29rcy8iLCJhZGRyZXNzIjoiMTAwNSBX
|
|
1470
|
-
IEJ1cm5zaWRlIFN0LiJ9XX0=
|
|
493
|
+
encoding: UTF-8
|
|
494
|
+
string: '[{"msg":"()","input":[{"extension":"","page":"1","per_page":"10","api":"search","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"partner_id":"37023","last_page":0,"per_page":"10","page_results":1,"Internal":1}],"results":[{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781156026526?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg"}],"author":[{"alpha":"Books
|
|
495
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
496
|
+
Potter Attractions, Harry Potter Bands, Harry Potter Controversies, Harry
|
|
497
|
+
Potter Derived Works","isbn":"9781156026526","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-fandom-9781156026519?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg"}],"author":[{"alpha":"Books
|
|
498
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Fandom: Harry Potter Bands,
|
|
499
|
+
Harry Potter Derived Works, Harry Potter Websites, Harry and the Potters Albums,
|
|
500
|
+
Harry Potter Fand","isbn":"9781156026519","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/libri-di-harry-potter-9781230724034?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg"}],"author":[{"alpha":"Wikipedia
|
|
501
|
+
Fonte","proper":"Fonte Wikipedia"}],"title":"Libri Di Harry Potter: Harry
|
|
502
|
+
Potter E I Doni Della Morte, Traduzione in Italiano Di Harry Potter, Harry
|
|
503
|
+
Potter E La Pietra Filosofale, Harry","isbn":"9781230724034","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781157847496?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg"}],"author":[{"alpha":"Books
|
|
504
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
505
|
+
Potter Attractions, Harry Potter Controversies, Harry Potter Fandom","isbn":"9781157847496","publisher":"Books
|
|
506
|
+
LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-9781159040345?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg"}],"author":[{"alpha":"Gruppe
|
|
507
|
+
Bcher","proper":"Bcher Gruppe"}],"title":"Harry Potter: Joanne K. Rowling,
|
|
508
|
+
Harry Potter Und Der Stein Der Weisen, Figuren Der Harry-Potter-Romane, Begriffe
|
|
509
|
+
Der Harry-Potter-R","isbn":"9781159040345","publisher":"Books LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-controversies-9781155358062?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg"}],"author":[{"alpha":"Books
|
|
510
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Controversies: Religious
|
|
511
|
+
Debates Over the Harry Potter Series, Politics of Harry Potter, Harry Potter
|
|
512
|
+
Influences and Analogues","isbn":"9781155358062","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-games-9781155358093?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg"}],"author":[{"alpha":"Books
|
|
513
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Games: Harry Potter and
|
|
514
|
+
the Order of the Phoenix, Harry Potter and the Half-Blood Prince, Harry Potter
|
|
515
|
+
Trading Card Game","isbn":"9781155358093","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781155358116?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg"}],"author":[{"alpha":"Books
|
|
516
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Universe: Muggle, Quidditch,
|
|
517
|
+
Hogwarts, Magic in Harry Potter, Spells in Harry Potter, Magical Objects in
|
|
518
|
+
Harry Potter","isbn":"9781155358116","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/livre-de-harry-potter-9781230691480?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg"}],"author":[{"alpha":"Wikipedia
|
|
519
|
+
Source","proper":"Source Wikipedia"}],"title":"Livre de Harry Potter: Harry
|
|
520
|
+
Potter Et La Coupe de Feu, Harry Potter Et Les Reliques de La Mort, Harry
|
|
521
|
+
Potter Et Le Prisonnier D''Azkaban, Har","isbn":"9781230691480","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781230495286?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg"}],"author":[{"alpha":"Wikipedia
|
|
522
|
+
Source","proper":"Source Wikipedia"}],"title":"Harry Potter Universe: Muggle,
|
|
523
|
+
Quidditch, Hogwarts, Magic in Harry Potter, Magical Objects in Harry Potter,
|
|
524
|
+
List of Spells in Harry Potter, M","isbn":"9781230495286","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]}]}]'
|
|
1471
525
|
http_version:
|
|
1472
|
-
recorded_at:
|
|
526
|
+
recorded_at: Sat, 05 Dec 2015 11:31:02 GMT
|
|
1473
527
|
- request:
|
|
1474
528
|
method: get
|
|
1475
|
-
uri: http://api.powells.com/
|
|
529
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/product/<API_KEY>/9781501107832
|
|
1476
530
|
body:
|
|
1477
531
|
encoding: US-ASCII
|
|
1478
532
|
string: ''
|
|
1479
533
|
headers:
|
|
1480
534
|
User-Agent:
|
|
1481
|
-
- excon/0.
|
|
535
|
+
- excon/0.45.4
|
|
1482
536
|
response:
|
|
1483
537
|
status:
|
|
1484
538
|
code: 200
|
|
1485
539
|
message:
|
|
1486
540
|
headers:
|
|
1487
|
-
|
|
1488
|
-
-
|
|
1489
|
-
|
|
1490
|
-
-
|
|
1491
|
-
P3P:
|
|
1492
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
1493
|
-
X-Cacheable:
|
|
1494
|
-
- 'YES'
|
|
541
|
+
Cache-Control:
|
|
542
|
+
- no-cache, no-store
|
|
543
|
+
Pragma:
|
|
544
|
+
- no-cache
|
|
1495
545
|
Content-Length:
|
|
1496
|
-
- '
|
|
546
|
+
- '769'
|
|
547
|
+
Content-Type:
|
|
548
|
+
- application/json; charset=utf-8
|
|
549
|
+
Expires:
|
|
550
|
+
- "-1"
|
|
551
|
+
Server:
|
|
552
|
+
- Microsoft-IIS/7.5
|
|
553
|
+
Access-Control-Allow-Origin:
|
|
554
|
+
- "*"
|
|
555
|
+
Set-Cookie:
|
|
556
|
+
- ASP.NET_SessionId=3nzjm53lpf5sfntuyrobwlfo; path=/; HttpOnly
|
|
557
|
+
X-AspNet-Version:
|
|
558
|
+
- 4.0.30319
|
|
559
|
+
X-Powered-By:
|
|
560
|
+
- ASP.NET
|
|
1497
561
|
Date:
|
|
1498
|
-
-
|
|
1499
|
-
X-Varnish:
|
|
1500
|
-
- '1472863108'
|
|
1501
|
-
Age:
|
|
1502
|
-
- '0'
|
|
1503
|
-
Via:
|
|
1504
|
-
- 1.1 varnish
|
|
1505
|
-
Connection:
|
|
1506
|
-
- close
|
|
1507
|
-
X-Cache:
|
|
1508
|
-
- MISS
|
|
562
|
+
- Sat, 05 Dec 2015 11:31:06 GMT
|
|
1509
563
|
body:
|
|
1510
|
-
encoding:
|
|
1511
|
-
string:
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
dGVzdGluZyJ9LCJzdGF0dXMiOiJzdWNjZXNzIiwibWV0YSI6eyJ1dG1fc291
|
|
1515
|
-
cmNlIjoicG93ZWxsc2FwaSIsInBhZ2UiOiIwIiwibGFzdF9wYWdlIjoiMCIs
|
|
1516
|
-
InBlcl9wYWdlIjoiMTAiLCJwYWdlX3Jlc3VsdHMiOiI1IiwiaW50ZXJuYWwi
|
|
1517
|
-
OjF9LCJyZXN1bHRzIjpbeyJob3VycyI6IiZsdDtiJmd0O0RhaWx5Jmx0Oy9i
|
|
1518
|
-
Jmd0OzogOTowMCBhLm0uIC0gMTE6MDAgcC5tLiAmbHQ7YnIgLyZndDsgJmx0
|
|
1519
|
-
O2JyIC8mZ3Q7Jmx0O2ImZ3Q7Jmx0O2EgaHJlZj0mcXVvdDtodHRwOi8vd3d3
|
|
1520
|
-
LnBvd2VsbHMuY29tL3NlbGwvJnF1b3Q7Jmd0O1NlbGwgVXMgWW91ciBCb29r
|
|
1521
|
-
czombHQ7L2EmZ3Q7Jmx0Oy9iJmd0OyAmbHQ7YnIgLyZndDsmbHQ7YiZndDtE
|
|
1522
|
-
YWlseSZsdDsvYiZndDs6IDk6MDAgYS5tLiAtIDg6MDAgcC5tLiAmbHQ7YnIg
|
|
1523
|
-
LyZndDsgJmx0O2JyIC8mZ3Q7Jmx0O2ImZ3Q7UmFyZSBCb29rIFJvb206Jmx0
|
|
1524
|
-
Oy9iJmd0OyAmbHQ7YnIgLyZndDsmbHQ7YiZndDtEYWlseSZsdDsvYiZndDs6
|
|
1525
|
-
IDExOjAwIGEubS4gLSA3OjAwIHAubS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAv
|
|
1526
|
-
Jmd0OyZsdDtiJmd0OyZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dl
|
|
1527
|
-
bGxzLmNvbS9sb2NhdGlvbnMvcG93ZWxscy1ib29rcy1ibGRnLTIvJnF1b3Q7
|
|
1528
|
-
Jmd0O0JsZGcuIDIgaG91cnM6Jmx0Oy9hJmd0OyZsdDsvYiZndDsgJmx0O2Jy
|
|
1529
|
-
IC8mZ3Q7Jmx0O2ImZ3Q7RGFpbHkmbHQ7L2ImZ3Q7OiA5OjAwIGEubS4gLSA5
|
|
1530
|
-
OjAwIHAubS4iLCJjb29yZGluYXRlcyI6eyJsYXQiOiI0NS41MjMwNjY4Nzk3
|
|
1531
|
-
Njc3NiIsImxuZyI6Ii0xMjIuNjgxMjU3NzI0NzYxOTYifSwibmFtZSI6IlBv
|
|
1532
|
-
d2VsbCdzIENpdHkgb2YgQm9va3MiLCJwaG9uZSI6IjUwMyAyMjggNDY1MSIs
|
|
1533
|
-
ImRlc2NyaXB0aW9uIjoiW2ltZyBzcmM9JnF1b3Q7aHR0cDovL3d3dy5wb3dl
|
|
1534
|
-
bGxzLmNvbS9pbWFnZXMvY2xlYXJwaXhlbC5naWYmcXVvdDsgaGVpZ2h0PSZx
|
|
1535
|
-
dW90OzEwJnF1b3Q7XSAmbHQ7YnIgLyZndDtbaW1nIHNyYz0mcXVvdDtodHRw
|
|
1536
|
-
Oi8vd3d3LnBvd2VsbHMuY29tL2ltYWdlcy9yZW1vZGVsLTIwMTQuZ2lmJnF1
|
|
1537
|
-
b3Q7IHdpZHRoPSZxdW90OzMwMCZxdW90O10gJmx0O2JyIC8mZ3Q7Jmx0O2Im
|
|
1538
|
-
Z3Q7VGhlIEdyZWVuIGFuZCBCbHVlIFJvb21zIGFyZSBnZXR0aW5nIGEgbmV3
|
|
1539
|
-
IGxvb2sgYW5kIGZlZWwhJmx0Oy9iJmd0OyAmbHQ7YnIgLyZndDtPbiBNb25k
|
|
1540
|
-
YXksIEphbnVhcnkgMTMsIHdlIGJlZ2FuIGNvbnN0cnVjdGlvbiBvbiB0aGUg
|
|
1541
|
-
c291dGhlYXN0IHBvcnRpb24gb2Ygb3VyIGZsYWdzaGlwIHN0b3JlLiBUaGUg
|
|
1542
|
-
cHJvamVjdCB3aWxsIHRha2UgYXBwcm94aW1hdGVseSBzaXggbW9udGhzIHRv
|
|
1543
|
-
IGNvbXBsZXRlLCBhbmQgd2UnbGwgYmUgcmV2ZWFsaW5nIHRoZSBuZXcgc3Bh
|
|
1544
|
-
Y2UgdGhpcyBzdW1tZXIuIFdlIGNhbid0IHdhaXQgdG8gc2hvdyBpdCBvZmYh
|
|
1545
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDsmbHQ7YiZndDtWaXNpdGluZyB0
|
|
1546
|
-
aGUgc3RvcmUgZHVyaW5nIHRoZSByZW1vZGVsOiZsdDsvYiZndDsgJmx0O2Jy
|
|
1547
|
-
IC8mZ3Q7Jmx0O2ImZ3Q7U3RvcmUgaG91cnM6Jmx0Oy9iJmd0OyBUaGUgc3Rv
|
|
1548
|
-
cmUgd2lsbCBjb250aW51ZSBub3JtYWwgb3BlcmF0aW9ucyB0aHJvdWdob3V0
|
|
1549
|
-
IHRoZSBwcm9qZWN0LiAmbHQ7YnIgLyZndDsmbHQ7YiZndDtTdG9yZSBlbnRy
|
|
1550
|
-
YW5jZTombHQ7L2ImZ3Q7IFRoZSBHcmVlbiBSb29tIGVudHJhbmNlIG9uIDEw
|
|
1551
|
-
dGggYW5kIEJ1cm5zaWRlIHdpbGwgYmUgY2xvc2VkIGR1cmluZyB0aGUgcmVt
|
|
1552
|
-
b2RlbC4gUGxlYXNlIHVzZSB0aGUgT3JhbmdlIFJvb20gZW50cmFuY2Ugb24g
|
|
1553
|
-
TlcgMTF0aCBhbmQgQ291Y2guICZsdDticiAvJmd0OyZsdDtiJmd0O0ZpbmRp
|
|
1554
|
-
bmcgeW91ciB3YXkgYXJvdW5kOiZsdDsvYiZndDsgQWxsIHRoZSBzZWN0aW9u
|
|
1555
|
-
cyB0aGF0IHByZXZpb3VzbHkgcmVzaWRlZCBpbiB0aGUgQmx1ZSBhbmQgR3Jl
|
|
1556
|
-
ZW4gUm9vbXMgaGF2ZSBmb3VuZCBuZXcgaG9tZXMgZm9yIHRoZSBkdXJhdGlv
|
|
1557
|
-
biBvZiB0aGUgY29uc3RydWN0aW9uLiBXaXRoIHNvIG1hbnkgc2VjdGlvbnMg
|
|
1558
|
-
b24gdGhlIG1vdmUsIHRoZXJlIGFyZSBjaGFuZ2VzIGluIHZpcnR1YWxseSBl
|
|
1559
|
-
dmVyeSByb29tIG9mIHRoZSBzdG9yZS4gVmlldyB0aGUgJmx0O2EgaHJlZj0n
|
|
1560
|
-
aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9pbWFnZXMvQlVSTi1NQVAtMjAxNC0w
|
|
1561
|
-
MS5qcGcnJmd0O3RlbXBvcmFyeSBzdG9yZSBtYXAgKFBERikmbHQ7L2EmZ3Q7
|
|
1562
|
-
LiAmbHQ7YnIgLyZndDsgJmx0O2JyIC8mZ3Q7Rm9yIG1vcmUgaW5mb3JtYXRp
|
|
1563
|
-
b24gYWJvdXQgdGhlIGV4Y2l0aW5nIHRoaW5ncyBpbiBzdG9yZSBmb3IgdGhl
|
|
1564
|
-
IENpdHkgb2YgQm9va3MsICZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5w
|
|
1565
|
-
b3dlbGxzLmNvbS9yZW1vZGVsLTIwMTQmcXVvdDsmZ3Q7Y2xpY2sgaGVyZSZs
|
|
1566
|
-
dDsvYSZndDsuICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtbaHIgc2l6ZT0m
|
|
1567
|
-
cXVvdDsxMCZxdW90O10gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDth
|
|
1568
|
-
IGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9ib29rbWFjaGlu
|
|
1569
|
-
ZSZxdW90OyZndDsmbHQ7YiZndDtUaGUgRXNwcmVzc28gQm9vayBNYWNoaW5l
|
|
1570
|
-
wq4mbHQ7L2ImZ3Q7Jmx0Oy9hJmd0OyAmbHQ7YnIgLyZndDtWaXNpdCB0aGUg
|
|
1571
|
-
UHVycGxlIFJvb20gaW4gdGhlIENpdHkgb2YgQm9va3MgdG8gcHVibGlzaCB5
|
|
1572
|
-
b3VyIG93biBib29rIG9yIHByaW50IGhhcmQtdG8tZmluZCB0aXRsZXMsIGFs
|
|
1573
|
-
bCBpbiB0aGUgdGltZSBpdCB0YWtlcyB0byBtYWtlIGEgY3VwIG9mIGNvZmZl
|
|
1574
|
-
ZS4gJmx0O2EgaHJlZj0mcXVvdDtodHRwOi8vd3d3LnBvd2VsbHMuY29tL2Jv
|
|
1575
|
-
b2ttYWNoaW5lJnF1b3Q7Jmd0O0xlYXJuIG1vcmUuJmx0Oy9hJmd0OyAmbHQ7
|
|
1576
|
-
YnIgLyZndDsgJmx0O2JyIC8mZ3Q7W2hyIHNpemU9JnF1b3Q7MTAmcXVvdDtd
|
|
1577
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtQb3dlbGwncyBDaXR5IG9mIEJv
|
|
1578
|
-
b2tzIGlzIGEgYm9vayBsb3ZlcidzIHBhcmFkaXNlLCB0aGUgbGFyZ2VzdCB1
|
|
1579
|
-
c2VkIGFuZCBuZXcgYm9va3N0b3JlIGluIHRoZSB3b3JsZC4gTG9jYXRlZCBp
|
|
1580
|
-
biBkb3dudG93biBQb3J0bGFuZCwgT3JlZ29uLCBhbmQgb2NjdXB5aW5nIGFu
|
|
1581
|
-
IGVudGlyZSBjaXR5IGJsb2NrLCB0aGUgQ2l0eSBzdG9ja3MgbW9yZSB0aGFu
|
|
1582
|
-
IGEgbWlsbGlvbiBuZXcgYW5kIHVzZWQgYm9va3MuIE5pbmUgY29sb3IgY29k
|
|
1583
|
-
ZWQgcm9vbXMgaG91c2Ugb3ZlciAzLDUwMCBkaWZmZXJlbnQgc2VjdGlvbnMs
|
|
1584
|
-
IG9mZmVyaW5nIHNvbWV0aGluZyBmb3IgZXZlcnkgaW50ZXJlc3QsIGluY2x1
|
|
1585
|
-
ZGluZyBhbiBpbmNyZWRpYmxlIHNlbGVjdGlvbiBvZiBvdXQtb2YtcHJpbnQg
|
|
1586
|
-
YW5kIGhhcmQtdG8tZmluZCB0aXRsZXMuICZsdDticiAvJmd0OyAmbHQ7YnIg
|
|
1587
|
-
LyZndDtFYWNoIG1vbnRoLCB0aGUgQmFzaWwgSGFsbHdhcmQgR2FsbGVyeSAo
|
|
1588
|
-
bG9jYXRlZCB1cHN0YWlycyBpbiB0aGUgUGVhcmwgUm9vbSkgaG9zdHMgYSBu
|
|
1589
|
-
ZXcgYXJ0IGV4aGliaXQsIGFzIHdlbGwgYXMgZG96ZW5zIG9mICZsdDthIGhy
|
|
1590
|
-
ZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9jYWxlbmRhciZxdW90
|
|
1591
|
-
OyZndDthdXRob3IgZXZlbnRzJmx0Oy9hJmd0OyBmZWF0dXJpbmcgYWNjbGFp
|
|
1592
|
-
bWVkIHdyaXRlcnMsIGFydGlzdHMsIGFuZCB0aGlua2VycyBzdWNoIGFzIFJv
|
|
1593
|
-
ZGR5IERveWxlLCBKb3ljZSBDYXJvbCBPYXRlcywgTWljaGFlbCBDaGFib24s
|
|
1594
|
-
IEFubmllIExlaWJvdml0eiwgYW5kIFByZXNpZGVudCBKaW1teSBDYXJ0ZXIu
|
|
1595
|
-
ICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtUaGUgQ2l0eSdzICZsdDthIGhy
|
|
1596
|
-
ZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9sb2NhdGlvbnMvcG93
|
|
1597
|
-
ZWxscy1jaXR5LW9mLWJvb2tzL3RoZS1yYXJlLWJvb2stcm9vbS8mcXVvdDsm
|
|
1598
|
-
Z3Q7UmFyZSBCb29rIFJvb20mbHQ7L2EmZ3Q7IGdhdGhlcnMgYXV0b2dyYXBo
|
|
1599
|
-
ZWQgZmlyc3QgZWRpdGlvbnMgYW5kIG90aGVyIGNvbGxlY3RpYmxlIHZvbHVt
|
|
1600
|
-
ZXMgZm9yIHJlYWRlcnMgaW4gc2VhcmNoIG9mIGEgb25lLW9mLWEta2luZCB0
|
|
1601
|
-
cmVhc3VyZS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0O0FuZCB0aGUgQ2l0
|
|
1602
|
-
eSdzIG5ld2VzdCBhZGRpdGlvbiAoT2N0b2JlciAyMDEwKSBpcyAmbHQ7YSBo
|
|
1603
|
-
cmVmPSZxdW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRpb25zL3Bv
|
|
1604
|
-
d2VsbHMtYm9va3MtYmxkZy0yLyZxdW90OyZndDtQb3dlbGwncyBCb29rcyBC
|
|
1605
|
-
bGRnLiAyJmx0Oy9hJmd0OywgYSByZWxvY2F0aW9uIG9mIFBvd2VsbCdzIFRl
|
|
1606
|
-
Y2huaWNhbCBCb29rcywgYnJpbmdzIG1hdGhlbWF0aWNzLCBzY2llbmNlcywg
|
|
1607
|
-
Y29tcHV0aW5nLCBlbmdpbmVlcmluZywgY29uc3RydWN0aW9uLCBhbmQgdHJh
|
|
1608
|
-
bnNwb3J0YXRpb24gc2VjdGlvbnMgY2xvc2VyIHRvIHZpc2l0b3JzIGF0IHRo
|
|
1609
|
-
ZSBmbGFnc2hpcCBzdG9yZS4gQmxkZy4gMiBpcyBsb2NhdGVkIGFjcm9zcyB0
|
|
1610
|
-
aGUgc3RyZWV0IGZyb20gdGhlIENpdHkgb2YgQm9va3Mgb24gdGhlIGNvcm5l
|
|
1611
|
-
ciBvZiBOVyAxMHRoIGFuZCBDb3VjaC4gJmx0O2JyIC8mZ3Q7ICZsdDticiAv
|
|
1612
|
-
Jmd0O0V2ZXJ5IGRheSBhdCBvdXIgYnV5ZXJzJyBjb3VudGVyIGluIHRoZSBP
|
|
1613
|
-
cmFuZ2UgUm9vbSB3ZSBwdXJjaGFzZSB0aG91c2FuZHMgb2YgdXNlZCBib29r
|
|
1614
|
-
cyBmcm9tIHRoZSBwdWJsaWMuIFBvd2VsbCdzIHB1cmNoYXNlcyBzcGVjaWFs
|
|
1615
|
-
IGNvbGxlY3Rpb25zLCBsaWJyYXJpZXMsIGFuZCBib29rc3RvcmUgaW52ZW50
|
|
1616
|
-
b3JpZXMgYXMgd2VsbC4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDti
|
|
1617
|
-
Jmd0O0EgZmV3IGZhY3RzIGFib3V0IHRoZSBDaXR5IG9mIEJvb2tzOiZsdDsv
|
|
1618
|
-
YiZndDsgJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyDigKIgNjgsMDAwIHNx
|
|
1619
|
-
dWFyZSBmZWV0IHBhY2tlZCB3aXRoIGJvb2tzLiAmbHQ7YnIgLyZndDsg4oCi
|
|
1620
|
-
IFdlIGJ1eSAzLDAwMCB1c2VkIGJvb2tzIG92ZXIgdGhlIGNvdW50ZXIgZXZl
|
|
1621
|
-
cnkgZGF5LiAmbHQ7YnIgLyZndDsg4oCiIEFwcHJveGltYXRlbHkgMywwMDAg
|
|
1622
|
-
cGVvcGxlIHdhbGsgaW4gYW5kIGJ1eSBzb21ldGhpbmcgZXZlcnkgZGF5LiAm
|
|
1623
|
-
bHQ7YnIgLyZndDsg4oCiIEFub3RoZXIgMywwMDAgcGVvcGxlIGp1c3QgYnJv
|
|
1624
|
-
d3NlIGFuZCBkcmluayBjb2ZmZWUuICZsdDticiAvJmd0OyDigKIgV2Ugc3Rv
|
|
1625
|
-
Y2sgMTIyIG1ham9yIHN1YmplY3QgYXJlYXMgYW5kIG1vcmUgdGhhbiAzLDUw
|
|
1626
|
-
MCBzdWJzZWN0aW9ucy4gJmx0O2JyIC8mZ3Q7IOKAoiBZb3UnbGwgZmluZCBt
|
|
1627
|
-
b3JlIHRoYW4gMSwwMDAsMDAwIHZvbHVtZXMgb24gb3VyIHNoZWx2ZXMuICZs
|
|
1628
|
-
dDticiAvJmd0OyDigKIgQXBwcm94aW1hdGVseSA4MCwwMDAgYm9vayBsb3Zl
|
|
1629
|
-
cnMgYnJvd3NlIHRoZSBDaXR5J3Mgc2hlbHZlcyBldmVyeSBkYXkgaW4gUG9y
|
|
1630
|
-
dGxhbmQgYW5kIHZpYSB0aGUgSW50ZXJuZXQuICZsdDticiAvJmd0OyAmbHQ7
|
|
1631
|
-
YnIgLyZndDtTbyBpcyBvdXIgbW90aGVyIHNoaXAgdGhlIHdvcmxkJ3MgbGFy
|
|
1632
|
-
Z2VzdCBib29rc3RvcmU/IEhlY2ssIGl0IG1heSBiZSBiaWdnZXIgdGhhbiB5
|
|
1633
|
-
b3VyIHdob2xlIHRvd24uICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtUaGUg
|
|
1634
|
-
Jmx0O0kmZ3Q7V2FzaGluZ3RvbiBQb3N0Jmx0Oy9JJmd0OyBjYWxsZWQgUG93
|
|
1635
|
-
ZWxsJ3MgJnF1b3Q7cGVyaGFwcyB0aGUgYmVzdCBib29rc3RvcmUgaW4gdGhl
|
|
1636
|
-
IHdvcmxkLiZxdW90OyBZb3UgY2FuIGFsc28gYnJvd3NlIG91ciAmbHQ7YSBo
|
|
1637
|
-
cmVmPSZxdW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vcGRmL2J1cm5zaWRl
|
|
1638
|
-
X21hcF8yMDExLnBkZiZxdW90OyZndDtzdG9yZSBtYXAmbHQ7L2EmZ3Q7IG9u
|
|
1639
|
-
bGluZSBpbiAuUERGIGZvcm1hdC4gKFBsZWFzZSBub3RlOiBBbGwgdGhlIHNl
|
|
1640
|
-
Y3Rpb25zIHRoYXQgcHJldmlvdXNseSByZXNpZGVkIGluIHRoZSBCbHVlIGFu
|
|
1641
|
-
ZCBHcmVlbiBSb29tcyBoYXZlIGZvdW5kIG5ldyBob21lcyBmb3IgdGhlIGR1
|
|
1642
|
-
cmF0aW9uIG9mIG91ciByZW1vZGVsIHByb2plY3QuIFdpdGggc28gbWFueSBz
|
|
1643
|
-
ZWN0aW9ucyBvbiB0aGUgbW92ZSwgdGhlcmUgYXJlIGNoYW5nZXMgaW4gdmly
|
|
1644
|
-
dHVhbGx5IGV2ZXJ5IHJvb20gb2YgdGhlIHN0b3JlLiBUbyB2aWV3IHRoZSB0
|
|
1645
|
-
ZW1wb3Jhcnkgc3RvcmUgbWFwLCAmbHQ7YSBocmVmPSZxdW90O2h0dHA6Ly93
|
|
1646
|
-
d3cucG93ZWxscy5jb20vaW1hZ2VzL0JVUk4tTUFQLTIwMTQtMDEuanBnJnF1
|
|
1647
|
-
b3Q7Jmd0O2NsaWNrIGhlcmUmbHQ7L2EmZ3Q7LikgJmx0O2JyIC8mZ3Q7ICZs
|
|
1648
|
-
dDticiAvJmd0O0lmIHlvdSd2ZSBhbHJlYWR5IHBsYWNlZCBhbiBvcmRlciBm
|
|
1649
|
-
b3IgYSBib29rIHZpYSBvdXIgd2Vic2l0ZSBhbmQgd291bGQgbGlrZSB0byBj
|
|
1650
|
-
aGVjayBvbiBpdHMgc3RhdHVzLCBwbGVhc2UgZW1haWwgdGhlIGludGVybmV0
|
|
1651
|
-
IG9mZmljZSBhdCAmbHQ7YSBocmVmPSZxdW90O21haWx0bzpoZWxwQHBvd2Vs
|
|
1652
|
-
bHMuY29tP3N1YmplY3Q9SSBIYXZlIGEgUXVlc3Rpb24mcXVvdDsmZ3Q7aGVs
|
|
1653
|
-
cEBwb3dlbGxzLmNvbSZsdDsvYSZndDsuICZsdDticiAvJmd0OyAmbHQ7YnIg
|
|
1654
|
-
LyZndDsgJmx0O2JyIC8mZ3Q7Jmx0O2ImZ3Q7TW9yZSBhYm91dCBQb3dlbGwn
|
|
1655
|
-
cyBDaXR5IG9mIEJvb2tzOiZsdDsvYiZndDsgJmx0O2JyIC8mZ3Q7ICZsdDti
|
|
1656
|
-
ciAvJmd0OyZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNv
|
|
1657
|
-
bS9pbWFnZXMvQlVSTi1NQVAtMjAxNC0wMS5qcGcmcXVvdDsmZ3Q7U3RvcmUg
|
|
1658
|
-
TWFwIChQREYpJmx0Oy9hJmd0OyDigKIgJmx0O2EgaHJlZj0mcXVvdDtodHRw
|
|
1659
|
-
Oi8vd3d3LnBvd2VsbHMuY29tL2xvY2F0aW9ucy9wb3dlbGxzLWNpdHktb2Yt
|
|
1660
|
-
Ym9va3MvZGlyZWN0aW9ucy10by1wb3dlbGxzLWNpdHktb2YtYm9va3MvJnF1
|
|
1661
|
-
b3Q7Jmd0O0RpcmVjdGlvbnMgdG8gUG93ZWxsJ3MgQ2l0eSBvZiBCb29rcyZs
|
|
1662
|
-
dDsvYSZndDsg4oCiICZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dl
|
|
1663
|
-
bGxzLmNvbS9sb2NhdGlvbnMvcG93ZWxscy1jaXR5LW9mLWJvb2tzL3dvcmxk
|
|
1664
|
-
LWN1cC1jb2ZmZWUtdGVhLWF0LXBvd2VsbHMtY2l0eS1vZi1ib29rcy8mcXVv
|
|
1665
|
-
dDsmZ3Q7V29ybGQgQ3VwIENvZmZlZSAmYW1wO2FtcDsgVGVhIGF0IFBvd2Vs
|
|
1666
|
-
bCdzIENpdHkgb2YgQm9va3MmbHQ7L2EmZ3Q7IOKAoiAmbHQ7YSBocmVmPSZx
|
|
1667
|
-
dW90O2h0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRpb25zL3Bvd2VsbHMt
|
|
1668
|
-
Y2l0eS1vZi1ib29rcy90aGUtcmFyZS1ib29rLXJvb20vJnF1b3Q7Jmd0O1Ro
|
|
1669
|
-
ZSBSYXJlIEJvb2sgUm9vbSZsdDsvYSZndDsiLCJtZXNzYWdlIjp7ImV4cCI6
|
|
1670
|
-
IiIsInR5cGUiOiIiLCJ0eHQiOiIifSwic3RhdGUiOiJPUiIsImNpdHkiOiJQ
|
|
1671
|
-
b3J0bGFuZCIsInppcCI6Ijk3MjA5Iiwic2x1ZyI6InBvd2VsbHMtY2l0eS1v
|
|
1672
|
-
Zi1ib29rcyIsInVybCI6Imh0dHA6Ly93d3cucG93ZWxscy5jb20vbG9jYXRp
|
|
1673
|
-
b25zL3Bvd2VsbHMtY2l0eS1vZi1ib29rcy8iLCJhZGRyZXNzIjoiMTAwNSBX
|
|
1674
|
-
IEJ1cm5zaWRlIFN0LiJ9LHsiaG91cnMiOiJNb25kYXkgLSBTYXR1cmRheTog
|
|
1675
|
-
MTA6MDAgYS5tLiAtIDk6MDAgcC5tLiAmbHQ7YnIgLyZndDtTdW5kYXk6IDEx
|
|
1676
|
-
OjAwIGEubS4gLSA3OjAwIHAubS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0
|
|
1677
|
-
OyZsdDtiJmd0OyZsdDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxz
|
|
1678
|
-
LmNvbS9zZWxsLyZxdW90OyZndDtTZWxsIFVzIFlvdXIgQm9va3M6Jmx0Oy9h
|
|
1679
|
-
Jmd0OyZsdDsvYiZndDsgJmx0O2JyIC8mZ3Q7TW9uZGF5IC0gU2F0dXJkYXk6
|
|
1680
|
-
IDEwOjAwIGEubS4gLSA4OjAwIHAubS4gJmx0O2JyIC8mZ3Q7U3VuZGF5OiAx
|
|
1681
|
-
MTowMCBhLm0uIC0gNjowMCBwLm0uIiwiY29vcmRpbmF0ZXMiOnsibGF0Ijoi
|
|
1682
|
-
NDUuNDk0MzY3NzExODEyMDIiLCJsbmciOiItMTIyLjgxMDI5MzQzNjA1MDQy
|
|
1683
|
-
In0sIm5hbWUiOiJQb3dlbGwncyBCb29rcyBhdCBDZWRhciBIaWxscyBDcm9z
|
|
1684
|
-
c2luZyIsInBob25lIjoiNTAzIDIyOCA0NjUxIiwiZGVzY3JpcHRpb24iOiJQ
|
|
1685
|
-
b3dlbGwncyBCb29rcyBoYXMgc2VydmVkIEJlYXZlcnRvbiwgT3JlZ29uLCB3
|
|
1686
|
-
aXRoIGEgd2VzdC1zaWRlIGxvY2F0aW9uIHNpbmNlIDE5ODQuIEluIE5vdmVt
|
|
1687
|
-
YmVyIDIwMDYsIFBvd2VsbCdzIEJvb2tzIGF0IENlZGFyIEhpbGxzIENyb3Nz
|
|
1688
|
-
aW5nIG9wZW5lZCwgY29uZmlybWluZyB0aGUgY29tcGFueSdzIGNvbW1pdG1l
|
|
1689
|
-
bnQgdG8gQmVhdmVydG9uIGN1c3RvbWVycy4gVGhlIG5ldyBzdG9yZSBsb2Nh
|
|
1690
|
-
dGlvbiB3aXRoIDMyLDUwMCBzcXVhcmUgZmVldCBpcyBtb3JlIHRoYW4gZG91
|
|
1691
|
-
YmxlIHRoZSBzcGFjZSBvZiB0aGUgcHJldmlvdXMgQ2FzY2FkZSBQbGF6YSBs
|
|
1692
|
-
b2NhdGlvbiBhbmQgcml2YWxzIHRoZSBDaXR5IG9mIEJvb2tzIGluIGRvd250
|
|
1693
|
-
b3duIFBvcnRsYW5kLiAoT2theSwgd2UgbWF5IGJlIHB1c2hpbmcgaXQgd2l0
|
|
1694
|
-
aCB0aGF0IHN0YXRlbWVudCBzaW5jZSB0aGUgQnVybnNpZGUgbG9jYXRpb24g
|
|
1695
|
-
aXMgb3ZlciA2OCwwMDAgc3F1YXJlIGZlZXQgb2YgcmV0YWlsIHNwYWNlISkg
|
|
1696
|
-
Jmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0O1dpdGggb3ZlciBoYWxmIGEgbWls
|
|
1697
|
-
bGlvbiB1c2VkLCBuZXcsIHJhcmUsIGFuZCBoYXJkLXRvLWZpbmQgdGl0bGVz
|
|
1698
|
-
LCBpdCdzIHZlcnkgZWFzeSB0byBnZXQgbG9zdCBpbiB0aGUgYWlzbGVzIG9m
|
|
1699
|
-
IFBvd2VsbCdzIEJvb2tzIGF0IENlZGFyIEhpbGxzIENyb3NzaW5nLiAmcXVv
|
|
1700
|
-
dDtJIHRoaW5rIHdlIHRha2UgdGhlIGJlc3QgZWxlbWVudHMgb2YgYWxsIHRo
|
|
1701
|
-
ZSBQb3dlbGwncyBzdG9yZXMgYW5kIHJvbGwgdGhlbSBpbnRvIG9uZSwmcXVv
|
|
1702
|
-
dDsgc2F5cyBzdG9yZSBtYW5hZ2VyIFBhdWwgU21haWxlcy4gJnF1b3Q7V2Ug
|
|
1703
|
-
aGF2ZSB0aGUgYmlnIHN0b3JlIGZlZWwgb2YgdGhlIENpdHkgb2YgQm9va3Ms
|
|
1704
|
-
IGEgdmVyeSBsYXJnZSB0ZWNobmljYWwgYm9vayBzZWxlY3Rpb24gdG8gc2Vy
|
|
1705
|
-
dmUgb3VyIG5laWdoYm9ycyBsaWtlIFRla3Ryb25peCwgSW50ZWwsIGFuZCBO
|
|
1706
|
-
aWtlLCBhbG9uZyB3aXRoIHRoZSBsYXJnZXN0IGNoaWxkcmVuJ3MgYm9vayBz
|
|
1707
|
-
ZWN0aW9uIG9mIGFueSBib29rIHN0b3JlIG9uIHRoZSBXZXN0IENvYXN0LiZx
|
|
1708
|
-
dW90OyAmbHQ7YnIgLyZndDsgJmx0O2JyIC8mZ3Q7QW4gZXhwYW5kZWQgYXV0
|
|
1709
|
-
aG9yIGV2ZW50cyBzcGFjZSBhbmQgdXBncmFkZWQgYW1lbml0aWVzIGJyaW5n
|
|
1710
|
-
IG1vcmUgYmVzdC1zZWxsaW5nIGF1dGhvcnMgYW5kIGNoaWxkcmVuJ3MgZXZl
|
|
1711
|
-
bnRzIHRvIENlZGFyIEhpbGxzIENyb3NzaW5nLiBFYWNoIG1vbnRoIHRoZSBz
|
|
1712
|
-
dG9yZSBob3N0cyBhdXRob3JzIHN1Y2ggYXMgTWlyaWVsbGUgR3VpbGlhbm8s
|
|
1713
|
-
IEVyaWsgTGFyc29uLCBOaWNrIEJhbnRvaywgYW5kIENocmlzdG9waGVyIEtp
|
|
1714
|
-
bWJhbGwuICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtUaGUgZnVua3kgYXRt
|
|
1715
|
-
b3NwaGVyZSBvZiBhIFBvd2VsbCdzIEJvb2tzdG9yZSBhbmQgYSBrbm93bGVk
|
|
1716
|
-
Z2VhYmxlIGJvb2stbG92aW5nIHN0YWZmIGNvbXBsZXRlIHRoaXMgYmlibGlv
|
|
1717
|
-
IHBhcmFkaXNlIGluIFBvcnRsYW5kJ3Mgd2VzdGVybiBzdWJ1cmJzLiAmbHQ7
|
|
1718
|
-
YnIgLyZndDsgJmx0O2JyIC8mZ3Q7VGhlIGVudGlyZXR5IG9mIHRoZSBDZWRh
|
|
1719
|
-
ciBIaWxscyBDcm9zc2luZyBtYWxsIGlzICZsdDtzdHJvbmcmZ3Q7V2ktRmkg
|
|
1720
|
-
ZW5hYmxlZCZsdDsvc3Ryb25nJmd0Oywgc28geW91IGNhbiBjb25uZWN0IHlv
|
|
1721
|
-
dXIgbGFwdG9wIHRvIHRoZSB3aXJlbGVzcyBuZXR3b3JrIGZyb20gYW55d2hl
|
|
1722
|
-
cmUgaW4gb3VyIHN0b3JlLiIsIm1lc3NhZ2UiOnsiZXhwIjoiIiwidHlwZSI6
|
|
1723
|
-
IiIsInR4dCI6IiJ9LCJzdGF0ZSI6Ik9SIiwiY2l0eSI6IkJlYXZlcnRvbiIs
|
|
1724
|
-
InppcCI6Ijk3MDA1Iiwic2x1ZyI6InBvd2VsbHMtYm9va3MtYXQtY2VkYXIt
|
|
1725
|
-
aGlsbHMtY3Jvc3NpbmciLCJ1cmwiOiJodHRwOi8vd3d3LnBvd2VsbHMuY29t
|
|
1726
|
-
L2xvY2F0aW9ucy9wb3dlbGxzLWJvb2tzLWF0LWNlZGFyLWhpbGxzLWNyb3Nz
|
|
1727
|
-
aW5nLyIsImFkZHJlc3MiOiIzNDE1IFNXIENlZGFyIEhpbGxzIEJsdmQuIn0s
|
|
1728
|
-
eyJob3VycyI6Ik1vbmRheSAtIFNhdHVyZGF5OiA5OjAwIGEubS4gLSA5OjAw
|
|
1729
|
-
IHAubS4gJmx0O2JyIC8mZ3Q7U3VuZGF5OiA5OjAwIGEubS4gLSA4OjAwIHAu
|
|
1730
|
-
bS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDtiJmd0OyZsdDthIGhy
|
|
1731
|
-
ZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9zZWxsLyZxdW90OyZn
|
|
1732
|
-
dDtTZWxsIFVzIFlvdXIgQm9va3M6Jmx0Oy9hJmd0OyZsdDsvYiZndDsgJmx0
|
|
1733
|
-
O2JyIC8mZ3Q7U2VsbCB5b3VyIGJvb2tzIGp1c3QgZG93biB0aGUgc3RyZWV0
|
|
1734
|
-
IGF0ICZsdDtiJmd0O1Bvd2VsbCYjMzk7cyBvbiBIYXd0aG9ybmUmbHQ7L2Im
|
|
1735
|
-
Z3Q7LiIsImNvb3JkaW5hdGVzIjp7ImxhdCI6IjQ1LjUxMjM2MTg1Mzk3OTcz
|
|
1736
|
-
IiwibG5nIjoiLTEyMi42MjY2NDc5NDkyMTg3NSJ9LCJuYW1lIjoiUG93ZWxs
|
|
1737
|
-
J3MgQm9va3MgZm9yIEhvbWUgYW5kIEdhcmRlbiIsInBob25lIjoiNTAzIDIy
|
|
1738
|
-
OCA0NjUxIiwiZGVzY3JpcHRpb24iOiJXaGV0aGVyIGl0J3MgaW5zdHJ1Y3Rp
|
|
1739
|
-
b25zIGZvciBob21lIGFuZCBnYXJkZW4gcHJvamVjdHMsIGluc3BpcmF0aW9u
|
|
1740
|
-
IGZvciBkZWNvcmF0aW5nIGFuZCByZW1vZGVsaW5nLCBvciBib29rcyBvbiBj
|
|
1741
|
-
b29raW5nIGFuZCBlbnRlcnRhaW5pbmcsIFBvd2VsbCdzIEJvb2tzIGZvciBI
|
|
1742
|
-
b21lIGFuZCBHYXJkZW4gY2FycmllcyB0aGUgbGF0ZXN0IHRvIGhlbHAgZW5o
|
|
1743
|
-
YW5jZSB5b3VyIG5lc3QuIEluIGFkZGl0aW9uIHRvIGlkZWFzIHRvIHRyYW5z
|
|
1744
|
-
Zm9ybSB5b3VyIHNwYWNlLCB3ZSBzdG9jayBhIHdpZGUgcmFuZ2Ugb2YgYm9v
|
|
1745
|
-
a3Mgb24gY3JhZnRzIGxpa2Uga25pdHRpbmcsIGpld2VscnkgbWFraW5nLCBh
|
|
1746
|
-
bmQgd29vZHdvcmtpbmcsIGFzIHdlbGwgYXMgaW5mb3JtYXRpb24gb24gdGhl
|
|
1747
|
-
IGxhdGVzdCBhcHByb2FjaCB0byBsYW5kc2NhcGUgZGVzaWduIGFuZCBnYXJk
|
|
1748
|
-
ZW5pbmcuICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtIZXJlIHlvdSdsbCBh
|
|
1749
|
-
bHNvIGZpbmQgYSB1bmlxdWUgc2VsZWN0aW9uIG9mIGl0ZW1zIGZyb20gYXJv
|
|
1750
|
-
dW5kIHRoZSB3b3JsZDogY29va2luZyB1dGVuc2lscywgdGFibGVjbG90aHMs
|
|
1751
|
-
IGdhcmRlbiB0b29scyBhbmQgYWNjZXNzb3JpZXMsIGFudGlxdWUgcHJpbnRz
|
|
1752
|
-
LCBxdWFsaXR5IGRpc2h3YXJlLCBhbmQgbW9yZS4gUGx1cywgUG93ZWxsJ3Mg
|
|
1753
|
-
Qm9va3MgZm9yIEhvbWUgYW5kIEdhcmRlbiBpcyBvbmx5IHR3byBkb29ycyBk
|
|
1754
|
-
b3duIGZyb20gUG93ZWxsJ3Mgb24gSGF3dGhvcm5lLCBhIHF1aW50ZXNzZW50
|
|
1755
|
-
aWFsIGdlbmVyYWwgYm9va3N0b3JlIGFuZCBoYW5nb3V0LiAmbHQ7YnIgLyZn
|
|
1756
|
-
dDsgJmx0O2JyIC8mZ3Q7Jmx0O2ImZ3Q7QWJvdXQgdGhlIE5laWdoYm9yaG9v
|
|
1757
|
-
ZCZsdDsvYiZndDsgJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0O1RoZSBIYXd0
|
|
1758
|
-
aG9ybmUgRGlzdHJpY3QgbGllcyBhY3Jvc3MgdGhlIFdpbGxhbWV0dGUgUml2
|
|
1759
|
-
ZXIgZnJvbSBkb3dudG93biBhbmQgaXMgaG9tZSB0byBmdW5reSBzaG9wcywg
|
|
1760
|
-
cmVzdGF1cmFudHMsIGNvZmZlZSBob3VzZXMsIGFuZCBwdWJzLiBPZiBQb3J0
|
|
1761
|
-
bGFuZCdzIG5laWdoYm9yaG9vZHMsIEhhd3Rob3JuZSBpcyAmcXVvdDt0aGUg
|
|
1762
|
-
Ym9oZW1pYW4uJnF1b3Q7IEl0IHJlZmxlY3RzIGFuIHVyYmFuIG5pY2hlIHdo
|
|
1763
|
-
ZXJlIGFsdGVybmF0aXZlIGlzIGNvbnNpZGVyZWQgbWFpbnN0cmVhbSwgYW5k
|
|
1764
|
-
IHRpZS1keWVzIGFyZW4ndCBhIHRoaW5nIG9mIHRoZSBwYXN0LiBIZXJlIGEg
|
|
1765
|
-
aGludCBvZiBwYXRjaG91bGkgZHJpZnRzIGZyb20gc3RvcmVzOyBhIGZsb3dl
|
|
1766
|
-
ciB2ZW5kb3IgYnJpZ2h0ZW5zIHRoZSBzaWRld2FsayBzY2VuZXJ5OyAmcXVv
|
|
1767
|
-
dDthcnQgY2FyJnF1b3Q7IHNpZ2h0aW5ncyBhcmUgY29tbW9ucGxhY2UgKGNh
|
|
1768
|
-
cnMgZGVjb3JhdGVkIGhvb2QgdG8gdHJ1bmsgd2l0aCB0cmVhc3VyZXMgcmFu
|
|
1769
|
-
Z2luZyBmcm9tIGhpZ2gtaGVlbGVkIHNob2VzIHRvIGJvd2xpbmcgdHJvcGhp
|
|
1770
|
-
ZXMpOyBhbmQgdHJlbmRzZXR0ZXJzIHNob3AgaW4gaGlwIHVzZWQtY2xvdGhp
|
|
1771
|
-
bmcgYm91dGlxdWVzLiBPbiBhbnkgZ2l2ZW4gZXZlbmluZywgbGl2ZSBtdXNp
|
|
1772
|
-
YyBzcGlsbHMgZnJvbSB0aGUgb3BlbiBkb29ycyBvZiBwdWJzLCBiaWJsaW9w
|
|
1773
|
-
aGlsZXMgbGluZ2VyIGF0IFBvd2VsbCdzLCBhbmQgc2lkZXdhbGsgdGFibGVz
|
|
1774
|
-
IGhvc3QgbWFueSBhIGJyZXcgZW50aHVzaWFzdC4gQnJld3MsIHRoYXQgaXMs
|
|
1775
|
-
IGFzIGluIGJlZXIgYW5kIGNvZmZlZS4iLCJtZXNzYWdlIjp7ImV4cCI6IiIs
|
|
1776
|
-
InR5cGUiOiIiLCJ0eHQiOiIifSwic3RhdGUiOiJPUiIsImNpdHkiOiJQb3J0
|
|
1777
|
-
bGFuZCIsInppcCI6Ijk3MjE0Iiwic2x1ZyI6InBvd2VsbHMtYm9va3MtZm9y
|
|
1778
|
-
LWhvbWUtYW5kLWdhcmRlbiIsInVybCI6Imh0dHA6Ly93d3cucG93ZWxscy5j
|
|
1779
|
-
b20vbG9jYXRpb25zL3Bvd2VsbHMtYm9va3MtZm9yLWhvbWUtYW5kLWdhcmRl
|
|
1780
|
-
bi8iLCJhZGRyZXNzIjoiMzc0NyBTRSBIYXd0aG9ybmUgQmx2ZC4ifSx7Imhv
|
|
1781
|
-
dXJzIjoiTW9uZGF5IC0gVGh1cnNkYXk6IDk6MDAgYS5tLiAtIDEwOjAwIHAu
|
|
1782
|
-
bS4gJmx0O2JyIC8mZ3Q7RnJpZGF5IC0gU2F0dXJkYXk6IDk6MDAgYS5tLiAt
|
|
1783
|
-
IDExOjAwIHAubS4gJmx0O2JyIC8mZ3Q7U3VuZGF5OiA5OjAwIGEubS4gLSA5
|
|
1784
|
-
OjAwIHAubS4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0OyZsdDtiJmd0OyZs
|
|
1785
|
-
dDthIGhyZWY9JnF1b3Q7aHR0cDovL3d3dy5wb3dlbGxzLmNvbS9zZWxsLyZx
|
|
1786
|
-
dW90OyZndDtTZWxsIFVzIFlvdXIgQm9va3M6Jmx0Oy9hJmd0OyZsdDsvYiZn
|
|
1787
|
-
dDsgJmx0O2JyIC8mZ3Q7RGFpbHk6IDk6MDAgYS5tLiAtIDg6MDAgcC5tLiIs
|
|
1788
|
-
ImNvb3JkaW5hdGVzIjp7ImxhdCI6IjQ1LjUxMjE0MzgyMzE2NTMzIiwibG5n
|
|
1789
|
-
IjoiLTEyMi42MjYwNDk4MTY2MDg0MyJ9LCJuYW1lIjoiUG93ZWxsJ3MgQm9v
|
|
1790
|
-
a3Mgb24gSGF3dGhvcm5lIiwicGhvbmUiOiI1MDMgMjI4IDQ2NTEiLCJkZXNj
|
|
1791
|
-
cmlwdGlvbiI6IkZyb20gYXBwcm9wcmlhdGVseSBmdW5reSBiZWdpbm5pbmdz
|
|
1792
|
-
IGluIGEgc2xpZ2h0bHkgZnVua3kgbmVpZ2hib3Job29kLCBQb3dlbGwncyBv
|
|
1793
|
-
biBIYXd0aG9ybmUgaGFzIGdyb3duIGludG8gdGhlIGxhcmdlc3QgdXNlZCBh
|
|
1794
|
-
bmQgbmV3IGJvb2tzdG9yZSBvbiBQb3J0bGFuZCdzIGVhc3Qgc2lkZS4gJmx0
|
|
1795
|
-
O2JyIC8mZ3Q7ICZsdDticiAvJmd0O0xvY2F0ZWQgaW4gYSB2aWJyYW50LCBk
|
|
1796
|
-
aXZlcnNlLCBhbmQgaGlnaGx5IGRlc2lyYWJsZSBuZWlnaGJvcmhvb2QsIFBv
|
|
1797
|
-
d2VsbCdzIG9uIEhhd3Rob3JuZSBub3cgY292ZXJzIG1vcmUgdGhhbiAxMCww
|
|
1798
|
-
MDAgc3F1YXJlIGZlZXQgb2YgcmV0YWlsIHNwYWNlIGFuZCBvZmZlcnMgbW9y
|
|
1799
|
-
ZSB0aGFuIDIwMCwwMDAgdXNlZCBhbmQgbmV3IGJvb2tzLiBUaGUgYXRtb3Nw
|
|
1800
|
-
aGVyZSBpcyByZWxheGVkLCBidXQgdGhlIHN0b3JlIGlzIGJpZyBlbm91Z2gg
|
|
1801
|
-
dG8gd2FycmFudCBhIG1hcC4gTm90IGFzIGV4dGVuc2l2ZSBhcyB0aGUgbGFi
|
|
1802
|
-
eXJpbnRoIGF0IHRoZSBDaXR5IG9mIEJvb2tzLCBQb3dlbGwncyBvbiBIYXd0
|
|
1803
|
-
aG9ybmUgaXMgZGl2aWRlZCBpbnRvIGp1c3QgdGhyZWUgcm9vbXMsIGVhY2gg
|
|
1804
|
-
bmFtZWQgZm9yIGEgbmVpZ2hib3Job29kIGxhbmRtYXJrOiBNYWRpc29uLCBI
|
|
1805
|
-
YXd0aG9ybmUsIGFuZCBUYWJvci4gVGhlIGxhdHRlciBpcyBuYW1lZCBmb3Ig
|
|
1806
|
-
TXQuIFRhYm9yLCB0aGUgd29ybGQncyBvbmx5IGV4dGluY3Qgdm9sY2FubyBy
|
|
1807
|
-
ZXNpZGluZyB3aXRoaW4gY2l0eSBsaW1pdHMuICZsdDticiAvJmd0OyAmbHQ7
|
|
1808
|
-
YnIgLyZndDtQb3dlbGwncyBvbiBIYXd0aG9ybmUgaG9zdHMgbGl2ZWx5IGFu
|
|
1809
|
-
ZCBpbnRlcmVzdGluZyBhdXRob3IgcmVhZGluZ3Mgc2V2ZXJhbCB0aW1lcyBl
|
|
1810
|
-
YWNoIHdlZWsgaW4gaXRzIFRhYm9yIFJvb20uIEFkamFjZW50IHRvIHRoZSBy
|
|
1811
|
-
ZWFkaW5nIHNwYWNlLCByZWFkZXJzIGNvbmdyZWdhdGUgaW4gVGhlIEZyZXNo
|
|
1812
|
-
IFBvdCwgYW4gaW52aXRpbmcgY29ybmVyIG9mIHRoZSBzdG9yZSBzZXJ2aW5n
|
|
1813
|
-
IGRlbGljaW91cyBob21lbWFkZSBwYXN0cmllcyBhbmQgb3RoZXIgc3dlZXQg
|
|
1814
|
-
ZGVsaWdodHMsIGFsb25nIHdpdGggc29tZSBvZiB0aGUgYmVzdCBjb2ZmZWUg
|
|
1815
|
-
aW4gYSB0b3duIHRoYXQgcmVhbGx5IGtub3dzIGl0cyBjb2ZmZWUuICZsdDti
|
|
1816
|
-
ciAvJmd0OyAmbHQ7YnIgLyZndDtKdWR5IEpld2VsbCBzYXlzLCAmcXVvdDtN
|
|
1817
|
-
eSBmYXZvcml0ZSB0aGluZyBhYm91dCB3b3JraW5nIGF0IHRoZSBIYXd0aG9y
|
|
1818
|
-
bmUgc3RvcmUgaXMgdGhlIGxpdmVseSBmZWVsaW5nIG9mIGNvbW11bml0eSBJ
|
|
1819
|
-
IGdldCBmcm9tIG15IGNvLXdvcmtlcnMgYW5kIGN1c3RvbWVycy4gSSB0aGlu
|
|
1820
|
-
ayBuZXh0IGJlc3QgaXMgdGhlIGdyZWF0IHVzZWQgYm9va3Mgd2Ugc2VlIGhl
|
|
1821
|
-
cmUuIFlvdSBqdXN0IG5ldmVyIGtub3cgd2hhdCdzIGdvaW5nIHRvIHR1cm4g
|
|
1822
|
-
dXAgb3Igd2hvJ3MgZ29pbmcgdG8gdHVybiB1cCB0byBidXkgaXQuIExpa2Ug
|
|
1823
|
-
dGhlIG90aGVyIGRheSwgd2UgZ290IGluIHRoaXMgY29weSBvZiAmbHQ7aSZn
|
|
1824
|
-
dDtIdWJlciB0aGUgVHViZXImbHQ7L2kmZ3Q7LCBhIGJvb2sgYWJvdXQgdHVi
|
|
1825
|
-
ZXJjdWxvc2lzLiBXZSB0aG91Z2h0IGl0IHdhcyBnb29meSBhbmQgY2hhcm1p
|
|
1826
|
-
bmcgc28gd2UgcHV0IGl0IGluIHRoZSBmcm9udCB3aW5kb3cuIFRoYXQgc2Ft
|
|
1827
|
-
ZSBhZnRlcm5vb24sIGEgY3VzdG9tZXIgc25hdGNoZWQgaXQgdXAsIHNheWlu
|
|
1828
|
-
ZyBpdCB3YXMgaGVyIGZpcnN0IGJvb2suIEhlciBmYXRoZXIgaGFkIGJlZW4g
|
|
1829
|
-
YSBsdW5nIGRvY3RvciwgYW5kIHRoZSBib29rIGhhZCBjb21lIG91dCB3aGVu
|
|
1830
|
-
IHNoZSB3YXMgYSB0b2RkbGVyLiBTaGUgd2FzIHdheSB0aHJpbGxlZCBhbmQg
|
|
1831
|
-
d2Ugd2VyZSBhbGwgcHJldHR5IHRpY2tsZWQgYWJvdXQgaXQuJnF1b3Q7IC0t
|
|
1832
|
-
IiwibWVzc2FnZSI6eyJleHAiOiIiLCJ0eXBlIjoiIiwidHh0IjoiIn0sInN0
|
|
1833
|
-
YXRlIjoiT1IiLCJjaXR5IjoiUG9ydGxhbmQiLCJ6aXAiOiI5NzIxNCIsInNs
|
|
1834
|
-
dWciOiJwb3dlbGxzLWJvb2tzLW9uLWhhd3Rob3JuZSIsInVybCI6Imh0dHA6
|
|
1835
|
-
Ly93d3cucG93ZWxscy5jb20vbG9jYXRpb25zL3Bvd2VsbHMtYm9va3Mtb24t
|
|
1836
|
-
aGF3dGhvcm5lLyIsImFkZHJlc3MiOiIzNzIzIFNFIEhhd3Rob3JuZSBCbHZk
|
|
1837
|
-
LiJ9LHsiaG91cnMiOiJPcmVnb24gTWFya2V0IGxvY2F0aW9uOiAmbHQ7YnIg
|
|
1838
|
-
LyZndDtEYWlseTogNjowMCBhLm0uIC0gMTA6MDAgcC5tLiAmbHQ7YnIgLyZn
|
|
1839
|
-
dDsgJmx0O2JyIC8mZ3Q7Q29uY291cnNlIEMgTG9jYXRpb246ICZsdDticiAv
|
|
1840
|
-
Jmd0O0RhaWx5OiA1OjAwIGEubS4gLSAxMDowMCBwLm0uICZsdDticiAvJmd0
|
|
1841
|
-
OyAmbHQ7YnIgLyZndDtDb25jb3Vyc2UgRCBMb2NhdGlvbjogJmx0O2JyIC8m
|
|
1842
|
-
Z3Q7RGFpbHk6IDU6MDAgYS5tLiAtIDY6MDAgcC5tLiAmbHQ7YnIgLyZndDth
|
|
1843
|
-
bmQgODowMCBwLm0uIC0gMTA6MzAgcC5tLiAmbHQ7YnIgLyZndDtIb3VycyBz
|
|
1844
|
-
dWJqZWN0IHRvIGNoYW5nZSB3aXRob3V0IG5vdGljZS4iLCJjb29yZGluYXRl
|
|
1845
|
-
cyI6eyJsYXQiOiI0NS41ODg5OTYxNjA0ODYzMjUiLCJsbmciOiItMTIyLjU5
|
|
1846
|
-
NTg5OTEwNTA3MjAyIn0sIm5hbWUiOiJQb3dlbGwncyBCb29rcyBhdCBQRFgi
|
|
1847
|
-
LCJwaG9uZSI6IjUwMyAyMjggNDY1MSIsImRlc2NyaXB0aW9uIjoiUG93ZWxs
|
|
1848
|
-
J3MgY3VycmVudGx5IGhhcyB0aHJlZSBsb2NhdGlvbnMgYXQgUG9ydGxhbmQg
|
|
1849
|
-
SW50ZXJuYXRpb25hbCBBaXJwb3J0LCBvdXIgbWFpbiBzdG9yZSBpbiB0aGUg
|
|
1850
|
-
T3JlZ29uIE1hcmtldCB3aXRoIHNhdGVsbGl0ZSBzdG9yZXMgaW4gdGhlIEMg
|
|
1851
|
-
YW5kIEQgY29uY291cnNlcy4gV2l0aGluIGFsbCB0aHJlZSBicmFuY2hlcywg
|
|
1852
|
-
UG93ZWxsJ3MgUERYIG9mZmVycyBhbiBlY2xlY3RpYyBtaXggb2YgdGhlIGxh
|
|
1853
|
-
dGVzdCBiZXN0c2VsbGVycywgcG9wdWxhciBmaWN0aW9uIGFuZCBub24tZmlj
|
|
1854
|
-
dGlvbiwgY2hvaWNlIHVzZWQgYm9va3MsIGdhbWVzLCB0b3lzIGFuZCBhIHdp
|
|
1855
|
-
ZGUgcmFuZ2Ugb2YgZ2lmdHMuICZsdDticiAvJmd0OyAmbHQ7YnIgLyZndDtU
|
|
1856
|
-
cmF2ZWxlcnMgdXN1YWxseSBkb24ndCBleHBlY3QgdG8gZmluZCBhIHVzZWQg
|
|
1857
|
-
Ym9va3N0b3JlIGluIGFuIGFpcnBvcnQsIGJ1dCBib29rIGxvdmluZyB3YW5k
|
|
1858
|
-
ZXJlcnMgaGF2ZSBtYWRlIFBvd2VsbCdzIEJvb2tzIFBEWCBhIHByaW1hcnkg
|
|
1859
|
-
ZGVzdGluYXRpb24gc2luY2UgMTk4OC4gV2UncmUgbm90IGEgbWFnYXppbmUg
|
|
1860
|
-
c3RhbmQgdGhhdCBjYXJyaWVzIGEgZmV3IGJvb2tzOiB3ZSdyZSBhIGZ1bGwt
|
|
1861
|
-
c2VydmljZSBib29rc3RvcmUgb2ZmZXJpbmcgYWxsIHRoZSBhbWVuaXRpZXMg
|
|
1862
|
-
YW5kIHNlcnZpY2VzIGZvdW5kIGF0IG90aGVyIFBvd2VsbCdzIGxvY2F0aW9u
|
|
1863
|
-
cy4gJmx0O2JyIC8mZ3Q7ICZsdDticiAvJmd0O091ciBmcmllbmRseSBhbmQg
|
|
1864
|
-
a25vd2xlZGdlYWJsZSBzdGFmZiBvZmZlcnMgcXVpY2ssIG9uLXRoZS1tYXJr
|
|
1865
|
-
IHJlY29tbWVuZGF0aW9ucyBmb3IgbG9uZyBmbGlnaHRzLCBhbGwtZGF5IGJ1
|
|
1866
|
-
c2luZXNzIHRyaXBzLCB2YWNhdGlvbiByZWFkaW5nLCBqb3VybmV5cyBpbnZv
|
|
1867
|
-
bHZpbmcgbG9uZyBob3VycyB3aXRoIHJlc3RsZXNzIGNoaWxkcmVuLCBvciBh
|
|
1868
|
-
bnkgb3RoZXIgY29tYmluYXRpb25zIG9mIGZhY3RvcnMgaW52b2x2aW5nIHlv
|
|
1869
|
-
dXIgdHJhdmVsIHBsYW5zLiAmbHQ7YnIgLyZndDsgJmx0O2JyIC8mZ3Q7RXZl
|
|
1870
|
-
biBQb3dlbGwncyBhaXJwb3J0IGxvY2F0aW9ucyBidXkgdXNlZCBib29rcy4g
|
|
1871
|
-
U2VsbGVycyBjYW4gZHJvcCBvZmYgYm9va3MgdG8gc2VsbCBhdCBhbnkgb2Yg
|
|
1872
|
-
dGhlIHRocmVlIGFpcnBvcnQgbG9jYXRpb25zLiBIZXJlLCB0aGVzZSBidXlp
|
|
1873
|
-
bmcgdHJhbnNhY3Rpb25zIHJlcXVpcmUgb25lIG9yIHR3byBkYXlzLiBBZnRl
|
|
1874
|
-
ciB0aGUgYm9va3MgYXJlIGFzc2Vzc2VkIG91ciBidXllciBub3RpZmllcyB0
|
|
1875
|
-
aGUgc2VsbGVyIHNvIHRoYXQgdGhleSBjYW4gcmV0dXJuIHRvIHBpY2sgdXAg
|
|
1876
|
-
ZWl0aGVyIHRoZSBib29rcyBvciB0aGVpciB1c2VkIGJvb2sgcGF5b3V0LiAm
|
|
1877
|
-
bHQ7YnIgLyZndDsgJmx0O2JyIC8mZ3Q7Jmx0O2ImZ3Q7UERYIGlzIHZvdGVk
|
|
1878
|
-
IHRoZSBzZXZlbnRoIGJlc3QgYWlycG9ydCBpbiB0aGUgd29ybGQgZm9yIGFp
|
|
1879
|
-
cnBvcnQgc2hvcHBpbmchIFJlYWQgdGhlIHN0b3J5IGF0ICZsdDthIGhyZWY9
|
|
1880
|
-
JnF1b3Q7aHR0cDovL3d3dy5odWZmaW5ndG9ucG9zdC5jb20vMjAxMS8wMi8x
|
|
1881
|
-
Ny90aGUtd29ybGRzLWJlc3QtYWlycG9ydHMtX25fODI0NDQ5Lmh0bWwjczI0
|
|
1882
|
-
MTIyOCZhbXA7YW1wO3RpdGxlPVBvcnRsYW5kJnF1b3Q7Jmd0O3RoZSBIdWZm
|
|
1883
|
-
aW5ndG9uIFBvc3QmbHQ7L2EmZ3Q7Jmx0Oy9iJmd0OyIsIm1lc3NhZ2UiOnsi
|
|
1884
|
-
ZXhwIjoiIiwidHlwZSI6IiIsInR4dCI6IiJ9LCJzdGF0ZSI6Ik9SIiwiY2l0
|
|
1885
|
-
eSI6IlBvcnRsYW5kIiwiemlwIjoiOTcyMTgiLCJzbHVnIjoicG93ZWxscy1i
|
|
1886
|
-
b29rcy1hdC1wZHgiLCJ1cmwiOiJodHRwOi8vd3d3LnBvd2VsbHMuY29tL2xv
|
|
1887
|
-
Y2F0aW9ucy9wb3dlbGxzLWJvb2tzLWF0LXBkeC8iLCJhZGRyZXNzIjoiNzAw
|
|
1888
|
-
MCBORSBBaXJwb3J0IFdheSwgU3VpdGUgMjI1MCJ9XX0=
|
|
564
|
+
encoding: UTF-8
|
|
565
|
+
string: '[{"msg":"()","input":[{"extension":"","page":"1","per_page":"10","api":"product","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"partner_id":"37023","last_page":0,"per_page":"10","page_results":1,"Internal":1}],"results":[{"cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781501107832.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781501107832.jpg"}],"related_isbns":[{"isbn":["9780385540612","9780385347563"]}],"author":[{"alpha":"Parker
|
|
566
|
+
Mary Louise","proper":"Mary Louise Parker"}],"product_page":"http://www.powells.com/book/dear-mr-you-9781501107832?partnerid=37023","isbn":"9781501107832","title":"Dear
|
|
567
|
+
Mr. You","publisher":"Scribner Book Company","list_prices":[{"25":"1"}]}]}]'
|
|
1889
568
|
http_version:
|
|
1890
|
-
recorded_at:
|
|
569
|
+
recorded_at: Sat, 05 Dec 2015 11:31:07 GMT
|
|
1891
570
|
- request:
|
|
1892
571
|
method: get
|
|
1893
|
-
uri: http://api.powells.com/
|
|
572
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/recommendation/<API_KEY>/9780590353427
|
|
1894
573
|
body:
|
|
1895
574
|
encoding: US-ASCII
|
|
1896
575
|
string: ''
|
|
1897
576
|
headers:
|
|
1898
577
|
User-Agent:
|
|
1899
|
-
- excon/0.
|
|
578
|
+
- excon/0.45.4
|
|
1900
579
|
response:
|
|
1901
580
|
status:
|
|
1902
581
|
code: 200
|
|
1903
582
|
message:
|
|
1904
583
|
headers:
|
|
1905
|
-
|
|
1906
|
-
-
|
|
1907
|
-
|
|
1908
|
-
-
|
|
1909
|
-
P3P:
|
|
1910
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
1911
|
-
X-Cacheable:
|
|
1912
|
-
- 'YES'
|
|
584
|
+
Cache-Control:
|
|
585
|
+
- no-cache, no-store
|
|
586
|
+
Pragma:
|
|
587
|
+
- no-cache
|
|
1913
588
|
Content-Length:
|
|
1914
|
-
- '
|
|
589
|
+
- '4386'
|
|
590
|
+
Content-Type:
|
|
591
|
+
- application/json; charset=utf-8
|
|
592
|
+
Expires:
|
|
593
|
+
- "-1"
|
|
594
|
+
Server:
|
|
595
|
+
- Microsoft-IIS/7.5
|
|
596
|
+
Access-Control-Allow-Origin:
|
|
597
|
+
- "*"
|
|
598
|
+
Set-Cookie:
|
|
599
|
+
- ASP.NET_SessionId=12cb5kxvi4pucwvrjvedv1ja; path=/; HttpOnly
|
|
600
|
+
X-AspNet-Version:
|
|
601
|
+
- 4.0.30319
|
|
602
|
+
X-Powered-By:
|
|
603
|
+
- ASP.NET
|
|
1915
604
|
Date:
|
|
1916
|
-
-
|
|
1917
|
-
X-Varnish:
|
|
1918
|
-
- 1472884514 1472882303
|
|
1919
|
-
Age:
|
|
1920
|
-
- '71'
|
|
1921
|
-
Via:
|
|
1922
|
-
- 1.1 varnish
|
|
1923
|
-
Connection:
|
|
1924
|
-
- close
|
|
1925
|
-
X-Cache:
|
|
1926
|
-
- HIT
|
|
605
|
+
- Sat, 05 Dec 2015 11:31:09 GMT
|
|
1927
606
|
body:
|
|
1928
607
|
encoding: UTF-8
|
|
1929
|
-
string: '{"msg":[],"input":{"extension":
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
K
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
Potter and the Deathly Hallows (Harry Potter #07)","publisher":"Arthur A.
|
|
1949
|
-
Levine Books","list_prices":{"34.99":1}},{"cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780439358064","120":"http://content-4.powells.com/bookcovers/120/9780439358064"},"related_isbns":["9780439358064","9780439358071","9780439567619","9780439567626","9780439686518","9780439686525","9780439686532","9780439701952","9780439715119","9780439719858","9780606298889","9780606305761","9780613996785","9780613999168","9780786257782","9780606323499"],"author":{"alpha":"J
|
|
1950
|
-
K Rowling","proper":"J K Rowling"},"product_page":"http://www.powells.com/biblio/9780439358064?utm_source=powellsapi","isbn":"9780439358064","title":"Harry
|
|
1951
|
-
Potter #5: Harry Potter and the Order of the Phoenix","publisher":"Arthur
|
|
1952
|
-
A. Levine Books","list_prices":{"29.99":1}},{"cover_images":{"60":"http://content-2.powells.com/bookcovers/60/9780439784542","120":"http://content-2.powells.com/bookcovers/120/9780439784542"},"related_isbns":["9780439784542","9780307283641","9780307283658","9780307283665","9780307283672","9780439785969","9780439786775","9780439791328","9780786277452","9781417729876","9781417751396","9785556255692","9788478889921","9788478889938","9781594132216"],"author":{"alpha":"J.
|
|
1953
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439784542?utm_source=powellsapi","isbn":"9780439784542","title":"Harry
|
|
1954
|
-
Potter and the Half-Blood Prince (Harry Potter #06)","publisher":"Scholastic","list_prices":{"29.99":1}},{"cover_images":{"60":"http://content-6.powells.com/bookcovers/60/9780439064866","120":"http://content-6.powells.com/bookcovers/120/9780439064866"},"related_isbns":["9780439064866","9780195798760","9780439064873","9780439107341","9780439138079","9780439203531","9780439211147","9780439221306","9780439221313","9780439420105","9780439438773","9780439438780","9780439451932","9780439554893","9780553668704"],"author":{"alpha":"J.
|
|
1955
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439064866?utm_source=powellsapi","isbn":"9780439064866","title":"Harry
|
|
1956
|
-
Potter #2: Harry Potter and the Chamber of Secrets (Harry Potter #2)","publisher":"Scholastic","list_prices":{"24.99":1}},{"cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9780439139595","120":"http://content-5.powells.com/bookcovers/120/9780439139595"},"related_isbns":["9780439139595","9780439139601","9780439231947","9780439554909","9780606212274","9780606250337","9780613359573","9780613496742","9780736655194","9780786229277","9780807282588","9780807282595","9780807286036","9780807287934","9781594130038","9784915512452","8934974118008","9781408834992","9781408824108","9789573318316","9780747560821","9781551923376","9780747573630"],"author":{"alpha":"J.
|
|
1957
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439139595?utm_source=powellsapi","isbn":"9780439139595","title":"Harry
|
|
1958
|
-
Potter and The Goblet of Fire","publisher":"SCHOLASTIC INC.","list_prices":{"29.99":1}},{"cover_images":{"60":"http://content-3.powells.com/bookcovers/60/9780545582933","120":"http://content-3.powells.com/bookcovers/120/9780545582933"},"related_isbns":["9780545582933"],"author":{"alpha":"J.
|
|
1959
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780545582933?utm_source=powellsapi","isbn":"9780545582933","title":"Harry
|
|
1960
|
-
Potter #3: Harry Potter and the Prisoner of Azkaban (Book 3)","publisher":"Scholastic
|
|
1961
|
-
Inc.","list_prices":{"12.99":1}},{"cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9788478886548","120":"http://content-8.powells.com/bookcovers/120/9788478886548"},"related_isbns":["9788478886548","9780439203524","9780439211161","9780439332972","9780439362139","9780439366731","9780439554930","9780553668384","9780590353403","9780590353427","9780606170970","9780606172332","9780606216067","9780613206334","9780613959926","9780736690003","9788478884452"],"author":{"alpha":"J.
|
|
1962
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9788478886548?utm_source=powellsapi","isbn":"9788478886548","title":"Harry
|
|
1963
|
-
Potter y la Piedra Filosofal","publisher":"Lectorum Publications","list_prices":{"9.99":1}},{"cover_images":{"60":"http://content-9.powells.com/bookcovers/60/9780439362139","120":"http://content-9.powells.com/bookcovers/120/9780439362139"},"related_isbns":["9780439362139","9780439203524","9780439211161","9780439332972","9780439366731","9780439554930","9780553668384","9780590353403","9780590353427","9780606170970","9780606172332","9780606216067","9780613206334","9780613959926","9780736690003","9780807281758","8934974117971","9789573317241"],"author":{"alpha":"J.
|
|
1964
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439362139?utm_source=powellsapi","isbn":"9780439362139","title":"Harry
|
|
1965
|
-
Potter and the Sorcerer''s Stone","publisher":"Scholastic","list_prices":{"0.00":1}},{"cover_images":{"60":"http://content-4.powells.com/bookcovers/60/9780439321624","120":"http://content-4.powells.com/bookcovers/120/9780439321624"},"related_isbns":["9780439321624","9780439249546","9780747581543","9781408850756","9781408856789","9781408856772"],"author":{"alpha":"J.
|
|
1966
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780439321624?utm_source=powellsapi","isbn":"9780439321624","title":"Harry
|
|
1967
|
-
Potter School Books: Two Classic Books from the Library of Hogwarts School
|
|
1968
|
-
of Witchcraft and Wizardry","publisher":"Scholastic","list_prices":{"19.99":1}},{"cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9780756692575","120":"http://content-5.powells.com/bookcovers/120/9780756692575"},"related_isbns":["9780756692575"],"author":{"alpha":"DK
|
|
1969
|
-
Publishing","proper":"DK Publishing"},"product_page":"http://www.powells.com/biblio/9780756692575?utm_source=powellsapi","isbn":"9780756692575","title":"Lego
|
|
1970
|
-
Harry Potter: Characters of the Magical World","publisher":"DK Publishing
|
|
1971
|
-
(Dorling Kindersley)","list_prices":{"18.99":1}},{"cover_images":{"60":"http://content-9.powells.com/bookcovers/60/9780545582889","120":"http://content-9.powells.com/bookcovers/120/9780545582889"},"related_isbns":["9780545582889","9780606323451"],"author":{"alpha":"J.
|
|
1972
|
-
K. Rowling","proper":"J. K. Rowling"},"product_page":"http://www.powells.com/biblio/9780545582889?utm_source=powellsapi","isbn":"9780545582889","title":"Harry
|
|
1973
|
-
Potter #1: Harry Potter and the Sorcerer''s Stone (Book 1)","publisher":"Scholastic
|
|
1974
|
-
Inc.","list_prices":{"12.99":1}},{"cover_images":{"60":"http://content-8.powells.com/bookcovers/60/9782070643028","120":"http://content-8.powells.com/bookcovers/120/9782070643028"},"related_isbns":["9782070643028","9781417793211","9782070612369","9781781100820","9782070614813","9782070649693","9782070655977"],"author":{"alpha":"J
|
|
1975
|
-
K Rowling","proper":"J K Rowling"},"product_page":"http://www.powells.com/biblio/9782070643028?utm_source=powellsapi","isbn":"9782070643028","title":"Harry
|
|
1976
|
-
Potter #1: Harry Potter A L''Ecole Des Sorciers","publisher":"Folio Junior","list_prices":{"0.00":1}},{"cover_images":{"60":"http://content-5.powells.com/bookcovers/60/9780439420105","120":"http://content-5.powells.com/bookcovers/120/9780439420105"},"related_isbns":["9780439420105","9780195798760","9780439064866","9780439064873","9780439107341","9780439138079","9780439203531","9780439211147","9780439221306","9780439221313","9780439438773","9780439438780","9780439451932","9780439554893","9780553668704","9789654487658","9780747562184","9789573317586","8934974117988","9780747538493","9780747538486","9781408834978","9781551922447","9780747573616","9781551923703","9780747560722"],"author":{"alpha":"J
|
|
1977
|
-
K Rowling","proper":"J K Rowling"},"product_page":"http://www.powells.com/biblio/9780439420105?utm_source=powellsapi","isbn":"9780439420105","title":"Harry
|
|
1978
|
-
Potter and the Chamber of Secrets","publisher":"Scholastic Paperbacks","list_prices":{"0.00":1}}]}'
|
|
608
|
+
string: '{"$VAR1":[{"msg":"[]","input":[{"extension":"data","page":"1","per_page":"10","api":"recommendation","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","partner_id":"37023","Internal":1}],"results":[{"product_page":"http://www.powells.com/book/Harry-Potter-05-&-the-Order-of-the-Phoenix-9780439358071?partnerid=37023&p_wgt","title":"Harry
|
|
609
|
+
Potter 05 & the Order of the Phoenix","isbn":"9780439358071","author":[{"alpha":"Rowling
|
|
610
|
+
J K","proper":"J K Rowling"}],"publisher":"SCHOLASTIC INC.","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780439358071.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780439358071.jpg"}],"listing_price":"12.99"},{"product_page":"http://www.powells.com/book/Harry-Potter-06-&-The-Half-Blood-Prince-9780439785969?partnerid=37023&p_wgt","title":"Harry
|
|
611
|
+
Potter 06 & The Half Blood Prince","isbn":"9780439785969","author":[{"alpha":"Rowling
|
|
612
|
+
J K","proper":"J K Rowling"}],"publisher":"SCHOLASTIC INC.","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780439785969.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780439785969.jpg"}],"listing_price":"12.99"},{"product_page":"http://www.powells.com/book/Harry-Potter-04-&-The-Goblet-Of-Fire-9780439139601?partnerid=37023&p_wgt","title":"Harry
|
|
613
|
+
Potter 04 & The Goblet Of Fire","isbn":"9780439139601","author":[{"alpha":"Rowling
|
|
614
|
+
J K","proper":"J K Rowling"}],"publisher":"SCHOLASTIC INC.","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780439139601.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780439139601.jpg"}],"listing_price":"12.99"},{"product_page":"http://www.powells.com/book/Conversations-With-Jk-Rowling-9780439314558?partnerid=37023&p_wgt","title":"Conversations
|
|
615
|
+
With Jk Rowling","isbn":"9780439314558","author":[{"alpha":"Rowling J K","proper":"J
|
|
616
|
+
K Rowling"}],"publisher":"SCHOLASTIC INC.","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780439314558.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780439314558.jpg"}],"listing_price":"4.99"},{"product_page":"http://www.powells.com/book/Harry-Potter-07-&-The-Deathly-Hallows-9780545139700?partnerid=37023&p_wgt","title":"Harry
|
|
617
|
+
Potter 07 & The Deathly Hallows","isbn":"9780545139700","author":[{"alpha":"Rowling
|
|
618
|
+
J K","proper":"J K Rowling"}],"publisher":"SCHOLASTIC INC.","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780545139700.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780545139700.jpg"}],"listing_price":"14.99"},{"product_page":"http://www.powells.com/book/The-Arctic-Incident-9780786808557?partnerid=37023&p_wgt","title":"The
|
|
619
|
+
Arctic Incident","isbn":"9780786808557","author":[{"alpha":"Colfer Eoin","proper":"Eoin
|
|
620
|
+
Colfer"}],"publisher":"Disney Pr","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780786808557.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780786808557.jpg"}],"listing_price":"16.99"},{"product_page":"http://www.powells.com/book/Sorcerers-Companion-A-Guide-To-The-Magical-World-of-Harry-Potter-9780767908474?partnerid=37023&p_wgt","title":"Sorcerers
|
|
621
|
+
Companion A Guide To The Magical World of Harry Potter","isbn":"9780767908474","author":[{"alpha":"Rowling
|
|
622
|
+
J K","proper":"J K Rowling"}],"publisher":"BANTAM DOUBLEDAY DELL","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780767908474.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780767908474.jpg"}],"listing_price":"15.95"},{"product_page":"http://www.powells.com/book/Summerland-9780786808779?partnerid=37023&p_wgt","title":"Summerland","isbn":"9780786808779","author":[{"alpha":"Chabon
|
|
623
|
+
Michael","proper":"Michael Chabon"}],"publisher":"HYPERION BOOKS","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9780786808779.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9780786808779.jpg"}],"listing_price":"8.95"},{"product_page":"http://www.powells.com/book/Sea-Monsters-and-Other-Delicacies-9781416986508?partnerid=37023&p_wgt","title":"Sea
|
|
624
|
+
Monsters and Other Delicacies","isbn":"9781416986508","author":[{"alpha":"Macdonald
|
|
625
|
+
David Sinden and Matthew Morgan and Guy","proper":"David Sinden and Matthew
|
|
626
|
+
Morgan and Guy Macdonald"}],"publisher":"Simon & Schuster","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781416986508.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781416986508.jpg"}],"listing_price":"9.99"}]}]}'
|
|
1979
627
|
http_version:
|
|
1980
|
-
recorded_at:
|
|
628
|
+
recorded_at: Sat, 05 Dec 2015 11:31:10 GMT
|
|
1981
629
|
- request:
|
|
1982
630
|
method: get
|
|
1983
|
-
uri: http://api.powells.com/
|
|
631
|
+
uri: http://api.powells.com:8081/PowellsApi.svc/search/<API_KEY>/harry%20potter/?per_page=20
|
|
1984
632
|
body:
|
|
1985
633
|
encoding: US-ASCII
|
|
1986
634
|
string: ''
|
|
1987
635
|
headers:
|
|
1988
636
|
User-Agent:
|
|
1989
|
-
- excon/0.
|
|
637
|
+
- excon/0.45.4
|
|
1990
638
|
response:
|
|
1991
639
|
status:
|
|
1992
640
|
code: 200
|
|
1993
641
|
message:
|
|
1994
642
|
headers:
|
|
1995
|
-
|
|
1996
|
-
-
|
|
1997
|
-
|
|
1998
|
-
-
|
|
1999
|
-
P3P:
|
|
2000
|
-
- CP="CURa ADMa TAIa CONi OUR IND PHY ONL UNI FIN NAV DSP ALL COR"
|
|
2001
|
-
X-Cacheable:
|
|
2002
|
-
- 'YES'
|
|
643
|
+
Cache-Control:
|
|
644
|
+
- no-cache, no-store
|
|
645
|
+
Pragma:
|
|
646
|
+
- no-cache
|
|
2003
647
|
Content-Length:
|
|
2004
|
-
- '
|
|
648
|
+
- '5629'
|
|
649
|
+
Content-Type:
|
|
650
|
+
- application/json; charset=utf-8
|
|
651
|
+
Expires:
|
|
652
|
+
- "-1"
|
|
653
|
+
Server:
|
|
654
|
+
- Microsoft-IIS/7.5
|
|
655
|
+
Access-Control-Allow-Origin:
|
|
656
|
+
- "*"
|
|
657
|
+
Set-Cookie:
|
|
658
|
+
- ASP.NET_SessionId=auqnxe0botqjkwazhqpdcpi3; path=/; HttpOnly
|
|
659
|
+
X-AspNet-Version:
|
|
660
|
+
- 4.0.30319
|
|
661
|
+
X-Powered-By:
|
|
662
|
+
- ASP.NET
|
|
2005
663
|
Date:
|
|
2006
|
-
-
|
|
2007
|
-
X-Varnish:
|
|
2008
|
-
- 1472890683 1472888941
|
|
2009
|
-
Age:
|
|
2010
|
-
- '58'
|
|
2011
|
-
Via:
|
|
2012
|
-
- 1.1 varnish
|
|
2013
|
-
Connection:
|
|
2014
|
-
- close
|
|
2015
|
-
X-Cache:
|
|
2016
|
-
- HIT
|
|
664
|
+
- Sat, 05 Dec 2015 11:31:12 GMT
|
|
2017
665
|
body:
|
|
2018
666
|
encoding: UTF-8
|
|
2019
|
-
string: '{"msg":
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
Potter
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
667
|
+
string: '[{"msg":"()","input":[{"extension":"","page":"1","per_page":"10","api":"search","apiKey":"<API_KEY>"}],"status":"success","meta":[{"utm_source":"powellsapi","page":0,"partner_id":"37023","last_page":0,"per_page":"10","page_results":1,"Internal":1}],"results":[{"product_page":"http://www.powells.com/book/harry-potter-fandom-9781156026519?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026519.jpg"}],"author":[{"alpha":"Books
|
|
668
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Fandom: Harry Potter Bands,
|
|
669
|
+
Harry Potter Derived Works, Harry Potter Websites, Harry and the Potters Albums,
|
|
670
|
+
Harry Potter Fand","isbn":"9781156026519","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781156026526?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781156026526.jpg"}],"author":[{"alpha":"Books
|
|
671
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
672
|
+
Potter Attractions, Harry Potter Bands, Harry Potter Controversies, Harry
|
|
673
|
+
Potter Derived Works","isbn":"9781156026526","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/libri-di-harry-potter-9781230724034?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230724034.jpg"}],"author":[{"alpha":"Wikipedia
|
|
674
|
+
Fonte","proper":"Fonte Wikipedia"}],"title":"Libri Di Harry Potter: Harry
|
|
675
|
+
Potter E I Doni Della Morte, Traduzione in Italiano Di Harry Potter, Harry
|
|
676
|
+
Potter E La Pietra Filosofale, Harry","isbn":"9781230724034","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-in-the-real-world-9781157847496?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781157847496.jpg"}],"author":[{"alpha":"Books
|
|
677
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter in the Real World: Harry
|
|
678
|
+
Potter Attractions, Harry Potter Controversies, Harry Potter Fandom","isbn":"9781157847496","publisher":"Books
|
|
679
|
+
LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-9781159040345?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781159040345.jpg"}],"author":[{"alpha":"Gruppe
|
|
680
|
+
Bcher","proper":"Bcher Gruppe"}],"title":"Harry Potter: Joanne K. Rowling,
|
|
681
|
+
Harry Potter Und Der Stein Der Weisen, Figuren Der Harry-Potter-Romane, Begriffe
|
|
682
|
+
Der Harry-Potter-R","isbn":"9781159040345","publisher":"Books LLC","list_prices":[{"14.14":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-controversies-9781155358062?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358062.jpg"}],"author":[{"alpha":"Books
|
|
683
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Controversies: Religious
|
|
684
|
+
Debates Over the Harry Potter Series, Politics of Harry Potter, Harry Potter
|
|
685
|
+
Influences and Analogues","isbn":"9781155358062","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-games-9781155358093?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358093.jpg"}],"author":[{"alpha":"Books
|
|
686
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Games: Harry Potter and
|
|
687
|
+
the Order of the Phoenix, Harry Potter and the Half-Blood Prince, Harry Potter
|
|
688
|
+
Trading Card Game","isbn":"9781155358093","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781155358116?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781155358116.jpg"}],"author":[{"alpha":"Books
|
|
689
|
+
LLC","proper":"LLC Books"}],"title":"Harry Potter Universe: Muggle, Quidditch,
|
|
690
|
+
Hogwarts, Magic in Harry Potter, Spells in Harry Potter, Magical Objects in
|
|
691
|
+
Harry Potter","isbn":"9781155358116","publisher":"Books LLC","list_prices":[{"19.99":"1"}]},{"product_page":"http://www.powells.com/book/livre-de-harry-potter-9781230691480?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230691480.jpg"}],"author":[{"alpha":"Wikipedia
|
|
692
|
+
Source","proper":"Source Wikipedia"}],"title":"Livre de Harry Potter: Harry
|
|
693
|
+
Potter Et La Coupe de Feu, Harry Potter Et Les Reliques de La Mort, Harry
|
|
694
|
+
Potter Et Le Prisonnier D''Azkaban, Har","isbn":"9781230691480","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]},{"product_page":"http://www.powells.com/book/harry-potter-universe-9781230495286?partnerid=37023","cover_images":[{"60":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg","120":"http://powells-covers-2.s3.amazonaws.com/9781230495286.jpg"}],"author":[{"alpha":"Wikipedia
|
|
695
|
+
Source","proper":"Source Wikipedia"}],"title":"Harry Potter Universe: Muggle,
|
|
696
|
+
Quidditch, Hogwarts, Magic in Harry Potter, Magical Objects in Harry Potter,
|
|
697
|
+
List of Spells in Harry Potter, M","isbn":"9781230495286","publisher":"University-Press.Org","list_prices":[{"0.0":"1"}]}]}]'
|
|
2045
698
|
http_version:
|
|
2046
|
-
recorded_at:
|
|
2047
|
-
recorded_with: VCR
|
|
699
|
+
recorded_at: Sat, 05 Dec 2015 11:31:12 GMT
|
|
700
|
+
recorded_with: VCR 3.0.0
|