google_places 0.9.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -1
- data/.travis.yml +8 -0
- data/Gemfile.lock +3 -3
- data/google_places.gemspec +1 -1
- data/lib/google_places/request.rb +2 -0
- data/lib/google_places/spot.rb +18 -2
- data/spec/api_key.travis.rb +1 -0
- data/spec/google_places/spot_spec.rb +22 -0
- data/spec/vcr_cassettes/premium_list_spots_with_data.yml +443 -0
- data/spec/vcr_cassettes/single_spot.yml +497 -0
- metadata +9 -2
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
google_places (0.9)
|
|
4
|
+
google_places (0.9.1)
|
|
5
5
|
httparty
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -12,8 +12,8 @@ GEM
|
|
|
12
12
|
httparty (0.10.2)
|
|
13
13
|
multi_json (~> 1.0)
|
|
14
14
|
multi_xml (>= 0.5.2)
|
|
15
|
-
multi_json (1.
|
|
16
|
-
multi_xml (0.5.
|
|
15
|
+
multi_json (1.7.1)
|
|
16
|
+
multi_xml (0.5.3)
|
|
17
17
|
rspec (2.11.0)
|
|
18
18
|
rspec-core (~> 2.11.0)
|
|
19
19
|
rspec-expectations (~> 2.11.0)
|
data/google_places.gemspec
CHANGED
|
@@ -172,6 +172,8 @@ module GooglePlaces
|
|
|
172
172
|
retry_options[:status] = [retry_options[:status]] unless retry_options[:status].is_a?(Array)
|
|
173
173
|
|
|
174
174
|
@response = self.class.get(url, :query => options)
|
|
175
|
+
# puts "@response.request.last_uri.to_s"
|
|
176
|
+
# puts @response.request.last_uri.to_s
|
|
175
177
|
|
|
176
178
|
return unless retry_options[:max] > 0 && retry_options[:status].include?(@response.parsed_response['status'])
|
|
177
179
|
|
data/lib/google_places/spot.rb
CHANGED
|
@@ -2,7 +2,7 @@ require 'google_places/review'
|
|
|
2
2
|
|
|
3
3
|
module GooglePlaces
|
|
4
4
|
class Spot
|
|
5
|
-
attr_accessor :lat, :lng, :name, :icon, :reference, :vicinity, :types, :id, :formatted_phone_number, :international_phone_number, :formatted_address, :address_components, :street_number, :street, :city, :region, :postal_code, :country, :rating, :url, :cid, :website, :reviews
|
|
5
|
+
attr_accessor :lat, :lng, :name, :icon, :reference, :vicinity, :types, :id, :formatted_phone_number, :international_phone_number, :formatted_address, :address_components, :street_number, :street, :city, :region, :postal_code, :country, :rating, :url, :cid, :website, :reviews, :aspects, :zagat_selected, :zagat_reviewed, :photos, :review_summary
|
|
6
6
|
|
|
7
7
|
# Search for Spots at the provided location
|
|
8
8
|
#
|
|
@@ -60,7 +60,7 @@ module GooglePlaces
|
|
|
60
60
|
language = options.delete(:language)
|
|
61
61
|
exclude = options.delete(:exclude) || []
|
|
62
62
|
retry_options = options.delete(:retry_options) || {}
|
|
63
|
-
|
|
63
|
+
zagat_selected = options.delete(:zagat_selected) || false
|
|
64
64
|
exclude = [exclude] unless exclude.is_a?(Array)
|
|
65
65
|
|
|
66
66
|
options = {
|
|
@@ -75,6 +75,8 @@ module GooglePlaces
|
|
|
75
75
|
:retry_options => retry_options
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
+
options[:zagatselected] = zagat_selected if zagat_selected
|
|
79
|
+
|
|
78
80
|
# Accept Types as a string or array
|
|
79
81
|
if types
|
|
80
82
|
types = (types.is_a?(Array) ? types.join('|') : types)
|
|
@@ -109,12 +111,14 @@ module GooglePlaces
|
|
|
109
111
|
def self.find(reference, api_key, sensor, options = {})
|
|
110
112
|
language = options.delete(:language)
|
|
111
113
|
retry_options = options.delete(:retry_options) || {}
|
|
114
|
+
extensions = options.delete(:review_summary) ? 'review_summary' : nil
|
|
112
115
|
|
|
113
116
|
response = Request.spot(
|
|
114
117
|
:reference => reference,
|
|
115
118
|
:sensor => sensor,
|
|
116
119
|
:key => api_key,
|
|
117
120
|
:language => language,
|
|
121
|
+
:extensions => extensions,
|
|
118
122
|
:retry_options => retry_options
|
|
119
123
|
)
|
|
120
124
|
|
|
@@ -262,6 +266,11 @@ module GooglePlaces
|
|
|
262
266
|
@url = json_result_object['url']
|
|
263
267
|
@cid = json_result_object['url'].to_i
|
|
264
268
|
@website = json_result_object['website']
|
|
269
|
+
@zagat_reviewed = json_result_object['zagat_reviewed']
|
|
270
|
+
@zagat_selected = json_result_object['zagat_selected']
|
|
271
|
+
@aspects = aspects_component(json_result_object['aspects'])
|
|
272
|
+
@review_summary = json_result_object['review_summary']
|
|
273
|
+
@photos = photos_component(json_result_object['photos'])
|
|
265
274
|
@reviews = reviews_component(json_result_object['reviews'])
|
|
266
275
|
end
|
|
267
276
|
|
|
@@ -291,5 +300,12 @@ module GooglePlaces
|
|
|
291
300
|
end
|
|
292
301
|
end
|
|
293
302
|
|
|
303
|
+
def aspects_component(json_aspects)
|
|
304
|
+
json_aspects.to_a.map{ |r| { :type => r['type'], :rating => r['rating'] } }
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
def photos_component(json_photos)
|
|
308
|
+
json_photos.to_a.map{ |r| { :width => r['width'], :height => r['height'], :width => r['width'], :photo_reference => r['photo_reference'], :html_attributions => r['html_attributions'] } }
|
|
309
|
+
end
|
|
294
310
|
end
|
|
295
311
|
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
RSPEC_API_KEY = 'AIzaSyDPVYhZDzHdxRGnqqHZSWccL-BEe-JSYXA'
|
|
@@ -114,6 +114,28 @@ describe GooglePlaces::Spot do
|
|
|
114
114
|
end
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
+
describe 'working with premium data' do
|
|
118
|
+
use_vcr_cassette 'premium_list_spots_with_data'
|
|
119
|
+
|
|
120
|
+
it 'should return data with zagat_selected flag only' do
|
|
121
|
+
# hardcoded coordinates & options to get non-zero results count
|
|
122
|
+
@collection = GooglePlaces::Spot.list('39.60049820', '-106.52202606', 'DUMMY_KEY', @sensor, :radius => @radius, :zagat_selected => true, :types => ['restaurant','cafe'], :radius => 20000)
|
|
123
|
+
|
|
124
|
+
@collection.map(&:zagat_selected).uniq.should eq [true]
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
@collection.map(&:zagat_reviewed).uniq.should eq [true]
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
it 'should return data with zagat_selected flag only' do
|
|
131
|
+
# hardcoded coordinates & options to get non-zero results count
|
|
132
|
+
@collection = GooglePlaces::Spot.list('39.60049820', '-106.52202606', 'DUMMY_KEY', @sensor, :radius => @radius, :zagat_selected => true, :types => ['restaurant','cafe'], :radius => 20000)
|
|
133
|
+
|
|
134
|
+
item = @collection.detect {|item| item.zagat_reviewed == true}
|
|
135
|
+
item = GooglePlaces::Spot.find(item.reference, 'DUMMY_KEY', @sensor, :review_summary => true)
|
|
136
|
+
item.review_summary.should_not eq nil
|
|
137
|
+
end
|
|
138
|
+
end
|
|
117
139
|
end
|
|
118
140
|
|
|
119
141
|
context 'List spots by query' do
|
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=39.60049820%2C-106.52202606&radius=20000&sensor=false&rankby=&key=DUMMY_KEY&name=&language=&keyword=&zagatselected=true&types=restaurant%7Ccafe
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers: {}
|
|
10
|
+
response:
|
|
11
|
+
status:
|
|
12
|
+
code: 200
|
|
13
|
+
message: OK
|
|
14
|
+
headers:
|
|
15
|
+
content-type:
|
|
16
|
+
- application/json; charset=UTF-8
|
|
17
|
+
vary:
|
|
18
|
+
- Accept-Language
|
|
19
|
+
date:
|
|
20
|
+
- Wed, 13 Mar 2013 13:42:50 GMT
|
|
21
|
+
server:
|
|
22
|
+
- mafe
|
|
23
|
+
cache-control:
|
|
24
|
+
- private
|
|
25
|
+
x-xss-protection:
|
|
26
|
+
- 1; mode=block
|
|
27
|
+
x-frame-options:
|
|
28
|
+
- SAMEORIGIN
|
|
29
|
+
connection:
|
|
30
|
+
- close
|
|
31
|
+
body:
|
|
32
|
+
encoding: US-ASCII
|
|
33
|
+
string: ! "{\n \"html_attributions\" : [],\n \"results\" : [\n {\n
|
|
34
|
+
\ \"aspects\" : [\n {\n \"rating\" : 28,\n
|
|
35
|
+
\ \"type\" : \"food\"\n }\n ],\n \"geometry\"
|
|
36
|
+
: {\n \"location\" : {\n \"lat\" : 39.6406840,\n
|
|
37
|
+
\ \"lng\" : -106.3748440\n }\n },\n \"icon\"
|
|
38
|
+
: \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
39
|
+
\ \"id\" : \"196f1e491655350f21c23fa4ab54326bd66d65d1\",\n \"name\"
|
|
40
|
+
: \"Sweet Basil\",\n \"opening_hours\" : {\n \"open_now\"
|
|
41
|
+
: false\n },\n \"price_level\" : 3,\n \"rating\" :
|
|
42
|
+
4.50,\n \"reference\" : \"CnRpAAAAhpyrLL36QODbvtq5TCkJYiEmvERhrg_slkSrLBgoh_7e196CxAG4abOlD8_YQkrbePwc6NQCYI14Hz5TuI0vDnMgha5dXedKVXKLw8125Qvk2DLOl2vYZlOdNdniGpXD1UxoaA-neTQsWSyittG_XBIQEXOrpxY8A7KUek2dRTT69RoUZMep0CZwtXWoA1E4E-oWQtl0m7s\",\n
|
|
43
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
44
|
+
: \"193 Gore Creek Drive #201, Vail\",\n \"zagat_reviewed\" : true,\n
|
|
45
|
+
\ \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
46
|
+
: [\n {\n \"rating\" : 26,\n \"type\"
|
|
47
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
48
|
+
: {\n \"lat\" : 39.6391660,\n \"lng\" : -106.3694410\n
|
|
49
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
50
|
+
\ \"id\" : \"e184aede3a644c221d8034d6a48985f34be4b459\",\n \"name\"
|
|
51
|
+
: \"Larkspur Restaurant\",\n \"photos\" : [\n {\n \"height\"
|
|
52
|
+
: 968,\n \"html_attributions\" : [ \"From a Google User\" ],\n
|
|
53
|
+
\ \"photo_reference\" : \"CnRwAAAA4aNyeLpDCDAr-fiN-OS6AArajpG1Phu_iUf6KQofdJywATbmHAQlTc7OXw5KenqWKpqOFJU89libucmPLRy55weC0MQCPOIcvUM4Go8Kstm7ihW5gfYatOGpCC63T2HVjQ4ij_U7HxzhuzUdswTOzRIQGCssbLs4pxg9Cr7U_pcfTxoUX46F6bI3GoF0p1_4SO_d87UHEa0\",\n
|
|
54
|
+
\ \"width\" : 1296\n }\n ],\n \"price_level\"
|
|
55
|
+
: 3,\n \"rating\" : 4.50,\n \"reference\" : \"CoQBcgAAAAwUhC0dXgvElncVXmrypXtA_A1zJUSt-XpMRx4VMKs4kCnm_dzAeWwY8mJdjV27JBIvpfCsfxj1WG0TB7DffZmb9W-bGvvIoSVwYIJNYgrvrtH5rNEgcDJ-27DlfGeruDZPgu7bVJ2UtjzEJQircQ5djoqxnHCzjcDKEl9CoPZ2EhBrYVIwM7NCZ2LU0ZO6ms5xGhT9Qt6NeZ-U8kSe5o3V1cSrHMTU6A\",\n
|
|
56
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
57
|
+
: \"458 Vail Valley Drive, Vail\",\n \"zagat_reviewed\" : true,\n
|
|
58
|
+
\ \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
59
|
+
: [\n {\n \"rating\" : 22,\n \"type\"
|
|
60
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
61
|
+
: {\n \"lat\" : 39.6422290,\n \"lng\" : -106.3771050\n
|
|
62
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
63
|
+
\ \"id\" : \"3a053148ec43c519510efca86241632bbb58eb8d\",\n \"name\"
|
|
64
|
+
: \"Campo De Fiori\",\n \"opening_hours\" : {\n \"open_now\"
|
|
65
|
+
: false\n },\n \"price_level\" : 3,\n \"rating\" :
|
|
66
|
+
4.10,\n \"reference\" : \"CnRsAAAAZMtmUNasWQ5vi3wvIPx86vJC2zUz-blsU5iEMgKBV9HVpMteTz2YX3TAtatqg_kU8F2lkyGnh8DAAhRDjsgKp9sWxphsLNABzRn1ohaF6vpTtGtw8ro_1QCXw8qkcCocu1TAHETleepu5kAja4bI6BIQSejKUwfsJlCaltjIcohFdBoUSSo3CtXd-NCf-2mccpHwl54GG5o\",\n
|
|
67
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
68
|
+
: \"100 East Meadow Drive #24, Vail\",\n \"zagat_reviewed\" : true,\n
|
|
69
|
+
\ \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
70
|
+
: [\n {\n \"rating\" : 26,\n \"type\"
|
|
71
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
72
|
+
: {\n \"lat\" : 39.6428930,\n \"lng\" : -106.3779990\n
|
|
73
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
74
|
+
\ \"id\" : \"2e5845de12fbac27db8ba0fa0cfec991c963584f\",\n \"name\"
|
|
75
|
+
: \"Kelly Liken\",\n \"opening_hours\" : {\n \"open_now\"
|
|
76
|
+
: false\n },\n \"price_level\" : 2,\n \"rating\" :
|
|
77
|
+
4.40,\n \"reference\" : \"CnRqAAAAN12N6ug9_IIyU5IQcETVvp9NpvYJvCfKbLnR-90KiPjY0d5aiOJ2HvG8QrIxBcSOW1AxLMGoArIgVPNhjq4pJsXhZUHviuVeQYjrvJKLgrqBGiyJYXc72i025V5cvw2LN7VnGKUHpQ_cnTvaHPC11hIQAiu7nso54ag29iKVca4FVxoUuK1Z0sVzQiMaeHp79nhG5qRH81s\",\n
|
|
78
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
79
|
+
: \"12 Vail Road #100, Vail\",\n \"zagat_reviewed\" : true,\n \"zagat_selected\"
|
|
80
|
+
: true\n },\n {\n \"aspects\" : [\n {\n \"rating\"
|
|
81
|
+
: 25,\n \"type\" : \"food\"\n }\n ],\n \"geometry\"
|
|
82
|
+
: {\n \"location\" : {\n \"lat\" : 39.641910,\n \"lng\"
|
|
83
|
+
: -106.3752040\n }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/bar-71.png\",\n
|
|
84
|
+
\ \"id\" : \"f5c06cc48a5bac940fdff39568894ad548f0d46f\",\n \"name\"
|
|
85
|
+
: \"La Tour\",\n \"opening_hours\" : {\n \"open_now\" :
|
|
86
|
+
false\n },\n \"photos\" : [\n {\n \"height\"
|
|
87
|
+
: 850,\n \"html_attributions\" : [],\n \"photo_reference\"
|
|
88
|
+
: \"CoQBdwAAAE_mz1GwF_JLqU_QYD32pO3BpUMwympBBrfekb9p1yoF6fX-u5IHj0gZHNVvdShd0Kvf2O1KKkQbgq0WwjFe2Y54hPIiEGDj9IZGBfCCgCtbjYj_cxuMNzwnVJbwbY5F9ycpii_WoSeOaLMaxDGtTePABP9EttwV6km8-Y0iWgPNEhAGNUFoWCFgSuJcyxVeW-e0GhS3MtBn5ll6rxIFFbOUB6N3YTuWAA\",\n
|
|
89
|
+
\ \"width\" : 949\n }\n ],\n \"price_level\"
|
|
90
|
+
: 2,\n \"rating\" : 4.50,\n \"reference\" : \"CnRlAAAAclM1-NKjt52bNfBqDU6pSKdv-9cKIweOwYxekPuRlKytQmGpnvcjeBu1C-DBjgPKl4BqgAU5UiNMJDwDLH7dQSNpZ8_VHUTBmOD_qOXOo0jhBoS0P-4BAPCqr51np9TXNtyTiQ90Ear-huL4BY5cDhIQcFjjzFRVsAVNzY5DoJ_K-BoUG65X2qQikmKWEAuhda0-jNnW69Q\",\n
|
|
91
|
+
\ \"types\" : [ \"bar\", \"restaurant\", \"food\", \"establishment\"
|
|
92
|
+
],\n \"vicinity\" : \"122 East Meadow Drive, Vail\",\n \"zagat_reviewed\"
|
|
93
|
+
: true,\n \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
94
|
+
: [\n {\n \"rating\" : 26,\n \"type\"
|
|
95
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
96
|
+
: {\n \"lat\" : 39.6063240,\n \"lng\" : -106.5208330\n
|
|
97
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
98
|
+
\ \"id\" : \"2e8e27b226d32ce201b99bab35251a2d6abcd8a2\",\n \"name\"
|
|
99
|
+
: \"Grouse Mountain Grill\",\n \"opening_hours\" : {\n \"open_now\"
|
|
100
|
+
: false\n },\n \"price_level\" : 2,\n \"rating\" :
|
|
101
|
+
4.50,\n \"reference\" : \"CoQBcwAAAL7PYhY6VbIOjfLtxGW_xZSRZ7iIruyc5eTxfPx3st87COBfFyExtl07_QYNX4H-h3WsQezZuiQFlqMjWRcJwWiTw8ZPFOOuBjsJWC9nB0EAPGg8p2A-dOpVrYKjdG37wo1UvE9MgLH0cpbwslGFzS6khTBbEc8nWj0YGSbJ_6fuEhAmx9S-XJcFLuiyx-6HWir6GhTYfA-03mQCpRIPSUm8tXXWqN8hzg\",\n
|
|
102
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
103
|
+
: \"141 Scott Hill Road, Avon\",\n \"zagat_reviewed\" : true,\n \"zagat_selected\"
|
|
104
|
+
: true\n },\n {\n \"aspects\" : [\n {\n \"rating\"
|
|
105
|
+
: 25,\n \"type\" : \"food\"\n }\n ],\n \"geometry\"
|
|
106
|
+
: {\n \"location\" : {\n \"lat\" : 39.6408920,\n
|
|
107
|
+
\ \"lng\" : -106.3753360\n }\n },\n \"icon\"
|
|
108
|
+
: \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
109
|
+
\ \"id\" : \"5b837ad65d37cd3201c4843c1b1bba90b7017eae\",\n \"name\"
|
|
110
|
+
: \"The Left Bank Restaurant\",\n \"opening_hours\" : {\n \"open_now\"
|
|
111
|
+
: false\n },\n \"photos\" : [\n {\n \"height\"
|
|
112
|
+
: 864,\n \"html_attributions\" : [],\n \"photo_reference\"
|
|
113
|
+
: \"CoQBfAAAAP1SHSOXOYWfXUerg9XX9EcM7wPuC7IpZybyFt4mG9w9gcnNvvOo_TAJsS0vbML9t3bbhdI_dKgLBvudySmDcwTNx_f40xdzJ_tBnM6SeNwc8t59fDVhIh5aqpk4kMOZbyIdPTxG5tTlX3iVW8vgxUArRj-kKtKU_hxnl4Txx-LCEhC4EK9p_ol4KZt-FVFPzSmLGhR9GV6Y8pxP7vswjCGpzhe9LwDeDA\",\n
|
|
114
|
+
\ \"width\" : 585\n }\n ],\n \"price_level\"
|
|
115
|
+
: 3,\n \"rating\" : 4.30,\n \"reference\" : \"CoQBdwAAAMc2lgAGp3ia9pc744iEztbWZqx5M1_fcGzv1wvV1-GR5EZSUbiuO_bsODDE7pN9VFIXD9ITBJ3K32bo0OxEfHlZuIxHfjRbVm-GqDfZK9DjvUYNTthR3t9id26NtFfZ7sc5Opjd5CFiFUA2aJ6bpuhtCM3dpM3usXOoDUmfgkFVEhDwaz4eHLu7FpjJLQEbcJPUGhTS3PRB6XnZ_i_KyOX0GPmqpeUJQA\",\n
|
|
116
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
117
|
+
: \"183 Gore Creek Drive, Vail\",\n \"zagat_reviewed\" : true,\n \"zagat_selected\"
|
|
118
|
+
: true\n },\n {\n \"aspects\" : [\n {\n \"rating\"
|
|
119
|
+
: 26,\n \"type\" : \"food\"\n }\n ],\n \"geometry\"
|
|
120
|
+
: {\n \"location\" : {\n \"lat\" : 39.6438460,\n
|
|
121
|
+
\ \"lng\" : -106.5917260\n }\n },\n \"icon\"
|
|
122
|
+
: \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
123
|
+
\ \"id\" : \"ba60d497ccba77e9afe481d1fc1cf8acb88003f3\",\n \"name\"
|
|
124
|
+
: \"Juniper Restaurant\",\n \"opening_hours\" : {\n \"open_now\"
|
|
125
|
+
: false\n },\n \"photos\" : [\n {\n \"height\"
|
|
126
|
+
: 600,\n \"html_attributions\" : [],\n \"photo_reference\"
|
|
127
|
+
: \"CnRvAAAAq1ioZVmWOVTorPFInmA-SXrChY4cJz5_OF5_IUkxtWyw0SGHj13SONMSVikaCLHnmcIfYU71NFqNYxMDoS_6QxBYEhNUureWTv9thbFOss_TW1tB3t4gQGwSR6bHaXTRs_RIjskckNvD2I7pdsY2ZBIQfmNwN1yp7YfOSJoMfjdZkBoUoCYKbOyMFaPCaxCirKY79K4URQ0\",\n
|
|
128
|
+
\ \"width\" : 600\n }\n ],\n \"price_level\"
|
|
129
|
+
: 2,\n \"rating\" : 4.30,\n \"reference\" : \"CnRwAAAAGXtH9iEWVFj0VxZzdbp7pDADkysBUr08tjLTdi9QylzQPiMO3d_TYd7-iNdSh6-euP8L_qCVWGhAS020oGCbCO0kxL5S9HTYAOv1-ExlPg90XgWivoGdI_6guya8iCMa8_OcdeX6zDvJSSTTitlB3BIQnE72P3lUFRax1AHM-oJzhBoUh4aqeFzi4GsD1lv7kJbFCj28cO0\",\n
|
|
130
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
131
|
+
: \"97 Main Street, Edwards\",\n \"zagat_reviewed\" : true,\n \"zagat_selected\"
|
|
132
|
+
: true\n },\n {\n \"aspects\" : [\n {\n \"rating\"
|
|
133
|
+
: 23,\n \"type\" : \"food\"\n }\n ],\n \"geometry\"
|
|
134
|
+
: {\n \"location\" : {\n \"lat\" : 39.6435780,\n
|
|
135
|
+
\ \"lng\" : -106.5943150\n }\n },\n \"icon\"
|
|
136
|
+
: \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
137
|
+
\ \"id\" : \"116baa87a7dcfdd4a1fc0f71e97feafe15f443fd\",\n \"name\"
|
|
138
|
+
: \"Dish\",\n \"opening_hours\" : {\n \"open_now\" : false\n
|
|
139
|
+
\ },\n \"price_level\" : 1,\n \"rating\" : 4.30,\n
|
|
140
|
+
\ \"reference\" : \"CnRjAAAA4JztY-AgPVPDwztmkkTIGmdHummeZq-g0OalKN8Wb7dKyPxnKdT7KHQ-m_z-_r3VqaJk5qqSN6q0LWayZjf6uQStU18BB7DAjFQ16963WEVe5Pg2Ana-mDDPKxVCmkPfTbkpi80a-_oD97NQErDXiBIQhO7yE8eyaQgvwWbC-K90cBoUX9AQ7Tvo6M2eu-gWYHKooTw7MBg\",\n
|
|
141
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
142
|
+
: \"56 Edwards Village Boulevard, Edwards\",\n \"zagat_reviewed\"
|
|
143
|
+
: true,\n \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
144
|
+
: [\n {\n \"rating\" : 21,\n \"type\"
|
|
145
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
146
|
+
: {\n \"lat\" : 39.6482410,\n \"lng\" : -106.567340\n
|
|
147
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
148
|
+
\ \"id\" : \"fb0042518ced73fd1da56ca944275d06fa960e94\",\n \"name\"
|
|
149
|
+
: \"Balata\",\n \"price_level\" : 2,\n \"rating\" : 4.10,\n
|
|
150
|
+
\ \"reference\" : \"CnRkAAAAEkNrBBrX0YX5SQCFEaPG1GDmitHVqfcrvFqdc19uL-7qJQqEVuafU1zZzLMeS1Iwwn5TYkKlqeBIeT5NjuWJB3DXjFjQSq4Y0FMKL3DdL8ZlLj_xY7WD9e2jl49iGfj8fF2G9FXleZgJEXdqfmKrEBIQGm3jtqzcR1I2_JJFcEA4DBoURgoBduY6-v8a_pxfUGJ8YRjZLkI\",\n
|
|
151
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
152
|
+
: \"1265 Berry Creek Road, Edwards\",\n \"zagat_reviewed\" : true,\n
|
|
153
|
+
\ \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
154
|
+
: [\n {\n \"rating\" : 20,\n \"type\"
|
|
155
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
156
|
+
: {\n \"lat\" : 39.6031390,\n \"lng\" : -106.5175360\n
|
|
157
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
158
|
+
\ \"id\" : \"14463028e8d93195dd5846c6790be8b306b25ac4\",\n \"name\"
|
|
159
|
+
: \"Foxnut\",\n \"opening_hours\" : {\n \"open_now\" :
|
|
160
|
+
false\n },\n \"photos\" : [\n {\n \"height\"
|
|
161
|
+
: 3240,\n \"html_attributions\" : [ \"From a Google User\" ],\n
|
|
162
|
+
\ \"photo_reference\" : \"CoQBcgAAAMsMZxyxcghmrQTJoMpZvf0ut-LwzbPUj7PHmmwSt7UBVUi_vfdcWgMG4K15qb3aqRdCZfcu8ujSo1aOfpH_VYCO0yYtNRPM3-u0eGrt19QKvupzTFx4rvmfq6FEAU6lCeVKf_QCZ30YrnKOllr6h9CVnKTly5ddR4PLfDINpV2EEhCAYZy6smGOjlvCpYsVN-sNGhRgxT0qvRo8PXsgRpx_Eg7lcgMJIg\",\n
|
|
163
|
+
\ \"width\" : 4320\n }\n ],\n \"price_level\"
|
|
164
|
+
: 2,\n \"rating\" : 4.30,\n \"reference\" : \"CnRkAAAAs0ORUk9EW8eV0Bx6QfXNm4BQEdoZwvKS42CMQxJ-32OMSMGHBongruxHxpCU8mPxZxfBOptz9B5ZuKe8dbeYemt_wrHDY9CmyZEn0NGGDCmq0tPngrdBDFAQ3QWr9FU29vFQozckZZ3S5HZGOUIrkhIQqr4kNBabFAdi6kIjhU0zAxoU-q6tyKKvps_0WyTthZtdUT3iJAw\",\n
|
|
165
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
166
|
+
: \"15 West Thomas Place, Beaker Creek\",\n \"zagat_reviewed\" : true,\n
|
|
167
|
+
\ \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
168
|
+
: [\n {\n \"rating\" : 22,\n \"type\"
|
|
169
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
170
|
+
: {\n \"lat\" : 39.6044120,\n \"lng\" : -106.5168780\n
|
|
171
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
172
|
+
\ \"id\" : \"071f072af166090f81b3ab2bf4391e0fea9a8427\",\n \"name\"
|
|
173
|
+
: \"The Golden Eagle Inn Restaurant\",\n \"opening_hours\" : {\n \"open_now\"
|
|
174
|
+
: false\n },\n \"photos\" : [\n {\n \"height\"
|
|
175
|
+
: 426,\n \"html_attributions\" : [],\n \"photo_reference\"
|
|
176
|
+
: \"CqQBnAAAAHROPTw1jm-YTQPuCjiLHB6WqYNV7xzNrCXmc8NlN9Bfq2vXZMq6Uq8-MbHd9dDEMXcfgQyWRMx0NQ4Kdhn2BIkoRVOvmZJQ9Rpwl7HgZ-xv2Hbs4zPZOQCvQHiCPc29U3X4c-mU3kXAjwX1jjjqsOm2CisaB9OvzM0MQMWIBbvHQmVgN2RfBOiNeazN9b3qy9b9V6OMpexbhWVdF5tSSR4SEGeSZR_2eOSIES3hrZXvIm4aFG0ZRoExXWB9lvZIlEzIMPXoT-sX\",\n
|
|
177
|
+
\ \"width\" : 491\n }\n ],\n \"price_level\"
|
|
178
|
+
: 3,\n \"rating\" : 4.30,\n \"reference\" : \"CoQBfgAAAJFe7dQgNE3Qhdrgb3eX_UkQWcf5BU6fbs4lfuD9ql0AI15c-1ERvSe_H0jUzLkxsGKtUMtIjJfM8UkrLvNQvDocTycr5UW0bSRpJXb-0dPv6gnwP_88GKmInWG-mD_Jje-P9lISxRDjvDeht-qCiHLq1xMWLKRekz-MhMbe0IrjEhCkG4lIncXEaVX9cF5GnPp1GhSUhRjFEF9QWubgSu4-E3oY-aV_sA\",\n
|
|
179
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
180
|
+
: \"118 Beaver Creek Plaza, Beaver Creek\",\n \"zagat_reviewed\" :
|
|
181
|
+
true,\n \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
182
|
+
: [\n {\n \"rating\" : 25,\n \"type\"
|
|
183
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
184
|
+
: {\n \"lat\" : 39.6232020,\n \"lng\" : -106.5416710\n
|
|
185
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
186
|
+
\ \"id\" : \"9926d17ac7ec50dc1438c460c7b35783aac755e2\",\n \"name\"
|
|
187
|
+
: \"Spago\",\n \"reference\" : \"CnRiAAAACTn9W3smzdlUcVn8F6mObrw12y_4wdFHwoZZEScYgdoEpQOeiOOERVap_WlxR0gLpSq6dZQVBabiS-_1my6ZRTYG88J98vLvWCCVmToeRobJ_uAtnjC-_XRGmgmd7m4Y6ws0ct7-MajFfOysaYrTFxIQxGi8xOUi0KDBEfMWeF7tmBoUi9KaJOraFeGPvNFGJ0ddMXnacSc\",\n
|
|
188
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
189
|
+
: \"130 Daybreak Ridge, Avon, CO 81620, USA, Daybreak Ridge Road\",\n \"zagat_reviewed\"
|
|
190
|
+
: true,\n \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
191
|
+
: [\n {\n \"rating\" : 21,\n \"type\"
|
|
192
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
193
|
+
: {\n \"lat\" : 39.604820,\n \"lng\" : -106.5153910\n
|
|
194
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/bar-71.png\",\n
|
|
195
|
+
\ \"id\" : \"d5713b52ea7efdc3bc24fe0dee68459aa8f067b4\",\n \"name\"
|
|
196
|
+
: \"8100 Mountainside Bar and Grill\",\n \"opening_hours\" : {\n \"open_now\"
|
|
197
|
+
: true\n },\n \"price_level\" : 2,\n \"rating\" :
|
|
198
|
+
4.30,\n \"reference\" : \"CoQBfQAAAAqAf4Tz_34E-LRZXI09XrwAabpV_IG6ISwyz3bE458GDcTQQL2uyrbo6_21RiNn9NdGBtaFrnmqyeBK0X-ZXuOrc5q1rHOEVp5eIommqZZsSuPvRo6jh1j_SXGkvVH_1Bfrjd3KA0kd31rqBYp9l9pSFBy4gEH9e8kpiq1KPaU_EhBjCFXqBdu_WNcldNeHQOsIGhQoCuQxvKATTIbA4n9BEAt4X6VO5A\",\n
|
|
199
|
+
\ \"types\" : [ \"bar\", \"restaurant\", \"food\", \"establishment\"
|
|
200
|
+
],\n \"vicinity\" : \"136 East Thomas Place, Avon\",\n \"zagat_reviewed\"
|
|
201
|
+
: true,\n \"zagat_selected\" : true\n },\n {\n \"aspects\"
|
|
202
|
+
: [\n {\n \"rating\" : 29,\n \"type\"
|
|
203
|
+
: \"food\"\n }\n ],\n \"geometry\" : {\n \"location\"
|
|
204
|
+
: {\n \"lat\" : 39.6048720,\n \"lng\" : -106.5211950\n
|
|
205
|
+
\ }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png\",\n
|
|
206
|
+
\ \"id\" : \"c10bf5bb5310e17270dad4230e7b7879fcf827a3\",\n \"name\"
|
|
207
|
+
: \"Splendido At The Chateau\",\n \"opening_hours\" : {\n \"open_now\"
|
|
208
|
+
: false\n },\n \"photos\" : [\n {\n \"height\"
|
|
209
|
+
: 240,\n \"html_attributions\" : [],\n \"photo_reference\"
|
|
210
|
+
: \"CoQBfwAAAKl0iWzju3x7Yr7rQcrEYfIS3tS8c94Extsukb1Vf9W3lbRNPYJkrDkuLPURQpOKLeTLgDMkhkHBz5Nve57FHUY9k5xu0oaK1Ld0AQhgAbak0xmI0FZnL71Dw_g258XVijnxAbEzLX4K-ojsnH4a2Sj-Q_hahNSSB9zwqr8KdwnfEhBmZ7iaETXpWmACPUidpHarGhSpioZ8RsxC87ZSi1YxckwHkTNF9w\",\n
|
|
211
|
+
\ \"width\" : 360\n }\n ],\n \"price_level\"
|
|
212
|
+
: 3,\n \"rating\" : 4.70,\n \"reference\" : \"CoQBdgAAAHp2g4wlpG4OsCD4W6Il4czKEAc4DfNT0ItYWDfVj_kVyvqtO5xbUPlUX_-QyaBUSPcRWVhwU0vtAoLqjVkenkwwBda3-TBPjSC-PcwiQ48_nG3o2XwCQwm2no9hMFLfJKNdjuaIMAch4VqvGTqJOnFZpZ8D6JbxuvIT_EgrmbarEhBLenbQbT8QWWheSFz95EAfGhSPGveOSW3k7kY5YcHcVtZ-uIqCuA\",\n
|
|
213
|
+
\ \"types\" : [ \"restaurant\", \"food\", \"establishment\" ],\n \"vicinity\"
|
|
214
|
+
: \"17 Chateau Lane, Beaver Creek\",\n \"zagat_reviewed\" : true,\n
|
|
215
|
+
\ \"zagat_selected\" : true\n }\n ],\n \"status\" : \"OK\"\n}\n"
|
|
216
|
+
http_version: '1.1'
|
|
217
|
+
recorded_at: Wed, 13 Mar 2013 13:42:50 GMT
|
|
218
|
+
- request:
|
|
219
|
+
method: get
|
|
220
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?reference=CnRpAAAAhpyrLL36QODbvtq5TCkJYiEmvERhrg_slkSrLBgoh_7e196CxAG4abOlD8_YQkrbePwc6NQCYI14Hz5TuI0vDnMgha5dXedKVXKLw8125Qvk2DLOl2vYZlOdNdniGpXD1UxoaA-neTQsWSyittG_XBIQEXOrpxY8A7KUek2dRTT69RoUZMep0CZwtXWoA1E4E-oWQtl0m7s&sensor=false&key=DUMMY_KEY&language=&extensions=review_summary
|
|
221
|
+
body:
|
|
222
|
+
encoding: US-ASCII
|
|
223
|
+
string: ''
|
|
224
|
+
headers: {}
|
|
225
|
+
response:
|
|
226
|
+
status:
|
|
227
|
+
code: 200
|
|
228
|
+
message: OK
|
|
229
|
+
headers:
|
|
230
|
+
content-type:
|
|
231
|
+
- application/json; charset=UTF-8
|
|
232
|
+
vary:
|
|
233
|
+
- Accept-Language
|
|
234
|
+
date:
|
|
235
|
+
- Wed, 13 Mar 2013 13:42:51 GMT
|
|
236
|
+
server:
|
|
237
|
+
- mafe
|
|
238
|
+
cache-control:
|
|
239
|
+
- private
|
|
240
|
+
x-xss-protection:
|
|
241
|
+
- 1; mode=block
|
|
242
|
+
x-frame-options:
|
|
243
|
+
- SAMEORIGIN
|
|
244
|
+
connection:
|
|
245
|
+
- close
|
|
246
|
+
body:
|
|
247
|
+
encoding: ASCII-8BIT
|
|
248
|
+
string: !binary |-
|
|
249
|
+
ewogICAiaHRtbF9hdHRyaWJ1dGlvbnMiIDogW10sCiAgICJyZXN1bHQiIDog
|
|
250
|
+
ewogICAgICAiYWRkcmVzc19jb21wb25lbnRzIiA6IFsKICAgICAgICAgewog
|
|
251
|
+
ICAgICAgICAgICAibG9uZ19uYW1lIiA6ICIxOTMiLAogICAgICAgICAgICAi
|
|
252
|
+
c2hvcnRfbmFtZSIgOiAiMTkzIiwKICAgICAgICAgICAgInR5cGVzIiA6IFsg
|
|
253
|
+
InN0cmVldF9udW1iZXIiIF0KICAgICAgICAgfSwKICAgICAgICAgewogICAg
|
|
254
|
+
ICAgICAgICAibG9uZ19uYW1lIiA6ICJHb3JlIENyZWVrIERyaXZlIiwKICAg
|
|
255
|
+
ICAgICAgICAgInNob3J0X25hbWUiIDogIkdvcmUgQ3JlZWsgRHJpdmUiLAog
|
|
256
|
+
ICAgICAgICAgICAidHlwZXMiIDogWyAicm91dGUiIF0KICAgICAgICAgfSwK
|
|
257
|
+
ICAgICAgICAgewogICAgICAgICAgICAibG9uZ19uYW1lIiA6ICJWYWlsIiwK
|
|
258
|
+
ICAgICAgICAgICAgInNob3J0X25hbWUiIDogIlZhaWwiLAogICAgICAgICAg
|
|
259
|
+
ICAidHlwZXMiIDogWyAibG9jYWxpdHkiLCAicG9saXRpY2FsIiBdCiAgICAg
|
|
260
|
+
ICAgIH0sCiAgICAgICAgIHsKICAgICAgICAgICAgImxvbmdfbmFtZSIgOiAi
|
|
261
|
+
Q08iLAogICAgICAgICAgICAic2hvcnRfbmFtZSIgOiAiQ08iLAogICAgICAg
|
|
262
|
+
ICAgICAidHlwZXMiIDogWyAiYWRtaW5pc3RyYXRpdmVfYXJlYV9sZXZlbF8x
|
|
263
|
+
IiwgInBvbGl0aWNhbCIgXQogICAgICAgICB9LAogICAgICAgICB7CiAgICAg
|
|
264
|
+
ICAgICAgICJsb25nX25hbWUiIDogIlVTIiwKICAgICAgICAgICAgInNob3J0
|
|
265
|
+
X25hbWUiIDogIlVTIiwKICAgICAgICAgICAgInR5cGVzIiA6IFsgImNvdW50
|
|
266
|
+
cnkiLCAicG9saXRpY2FsIiBdCiAgICAgICAgIH0sCiAgICAgICAgIHsKICAg
|
|
267
|
+
ICAgICAgICAgImxvbmdfbmFtZSIgOiAiODE2NTciLAogICAgICAgICAgICAi
|
|
268
|
+
c2hvcnRfbmFtZSIgOiAiODE2NTciLAogICAgICAgICAgICAidHlwZXMiIDog
|
|
269
|
+
WyAicG9zdGFsX2NvZGUiIF0KICAgICAgICAgfQogICAgICBdLAogICAgICAi
|
|
270
|
+
YXNwZWN0cyIgOiBbCiAgICAgICAgIHsKICAgICAgICAgICAgInJhdGluZyIg
|
|
271
|
+
OiAyOCwKICAgICAgICAgICAgInR5cGUiIDogImZvb2QiCiAgICAgICAgIH0s
|
|
272
|
+
CiAgICAgICAgIHsKICAgICAgICAgICAgInJhdGluZyIgOiAyNSwKICAgICAg
|
|
273
|
+
ICAgICAgInR5cGUiIDogImRlY29yIgogICAgICAgICB9LAogICAgICAgICB7
|
|
274
|
+
CiAgICAgICAgICAgICJyYXRpbmciIDogMjYsCiAgICAgICAgICAgICJ0eXBl
|
|
275
|
+
IiA6ICJzZXJ2aWNlIgogICAgICAgICB9CiAgICAgIF0sCiAgICAgICJmb3Jt
|
|
276
|
+
YXR0ZWRfYWRkcmVzcyIgOiAiMTkzIEdvcmUgQ3JlZWsgRHJpdmUgIzIwMSwg
|
|
277
|
+
VmFpbCwgQ08sIFVuaXRlZCBTdGF0ZXMiLAogICAgICAiZm9ybWF0dGVkX3Bo
|
|
278
|
+
b25lX251bWJlciIgOiAiKDk3MCkgNDc2LTAxMjUiLAogICAgICAiZ2VvbWV0
|
|
279
|
+
cnkiIDogewogICAgICAgICAibG9jYXRpb24iIDogewogICAgICAgICAgICAi
|
|
280
|
+
bGF0IiA6IDM5LjY0MDY4NDAsCiAgICAgICAgICAgICJsbmciIDogLTEwNi4z
|
|
281
|
+
NzQ4NDQwCiAgICAgICAgIH0KICAgICAgfSwKICAgICAgImljb24iIDogImh0
|
|
282
|
+
dHA6Ly9tYXBzLmdzdGF0aWMuY29tL21hcGZpbGVzL3BsYWNlX2FwaS9pY29u
|
|
283
|
+
cy9yZXN0YXVyYW50LTcxLnBuZyIsCiAgICAgICJpZCIgOiAiMTk2ZjFlNDkx
|
|
284
|
+
NjU1MzUwZjIxYzIzZmE0YWI1NDMyNmJkNjZkNjVkMSIsCiAgICAgICJpbnRl
|
|
285
|
+
cm5hdGlvbmFsX3Bob25lX251bWJlciIgOiAiKzEgOTcwLTQ3Ni0wMTI1IiwK
|
|
286
|
+
ICAgICAgIm5hbWUiIDogIlN3ZWV0IEJhc2lsIiwKICAgICAgIm9wZW5pbmdf
|
|
287
|
+
aG91cnMiIDogewogICAgICAgICAib3Blbl9ub3ciIDogZmFsc2UsCiAgICAg
|
|
288
|
+
ICAgICJwZXJpb2RzIiA6IFsKICAgICAgICAgICAgewogICAgICAgICAgICAg
|
|
289
|
+
ICAiY2xvc2UiIDogewogICAgICAgICAgICAgICAgICAiZGF5IiA6IDAsCiAg
|
|
290
|
+
ICAgICAgICAgICAgICAgICJ0aW1lIiA6ICIyMjAwIgogICAgICAgICAgICAg
|
|
291
|
+
ICB9LAogICAgICAgICAgICAgICAib3BlbiIgOiB7CiAgICAgICAgICAgICAg
|
|
292
|
+
ICAgICJkYXkiIDogMCwKICAgICAgICAgICAgICAgICAgInRpbWUiIDogIjEx
|
|
293
|
+
MzAiCiAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAg
|
|
294
|
+
ICAgewogICAgICAgICAgICAgICAiY2xvc2UiIDogewogICAgICAgICAgICAg
|
|
295
|
+
ICAgICAiZGF5IiA6IDEsCiAgICAgICAgICAgICAgICAgICJ0aW1lIiA6ICIy
|
|
296
|
+
MjAwIgogICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAib3BlbiIg
|
|
297
|
+
OiB7CiAgICAgICAgICAgICAgICAgICJkYXkiIDogMSwKICAgICAgICAgICAg
|
|
298
|
+
ICAgICAgInRpbWUiIDogIjExMzAiCiAgICAgICAgICAgICAgIH0KICAgICAg
|
|
299
|
+
ICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAgICAiY2xvc2Ui
|
|
300
|
+
IDogewogICAgICAgICAgICAgICAgICAiZGF5IiA6IDIsCiAgICAgICAgICAg
|
|
301
|
+
ICAgICAgICJ0aW1lIiA6ICIyMjAwIgogICAgICAgICAgICAgICB9LAogICAg
|
|
302
|
+
ICAgICAgICAgICAib3BlbiIgOiB7CiAgICAgICAgICAgICAgICAgICJkYXki
|
|
303
|
+
IDogMiwKICAgICAgICAgICAgICAgICAgInRpbWUiIDogIjExMzAiCiAgICAg
|
|
304
|
+
ICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAg
|
|
305
|
+
ICAgICAgICAgICAiY2xvc2UiIDogewogICAgICAgICAgICAgICAgICAiZGF5
|
|
306
|
+
IiA6IDMsCiAgICAgICAgICAgICAgICAgICJ0aW1lIiA6ICIyMjAwIgogICAg
|
|
307
|
+
ICAgICAgICAgICB9LAogICAgICAgICAgICAgICAib3BlbiIgOiB7CiAgICAg
|
|
308
|
+
ICAgICAgICAgICAgICJkYXkiIDogMywKICAgICAgICAgICAgICAgICAgInRp
|
|
309
|
+
bWUiIDogIjExMzAiCiAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwK
|
|
310
|
+
ICAgICAgICAgICAgewogICAgICAgICAgICAgICAiY2xvc2UiIDogewogICAg
|
|
311
|
+
ICAgICAgICAgICAgICAiZGF5IiA6IDQsCiAgICAgICAgICAgICAgICAgICJ0
|
|
312
|
+
aW1lIiA6ICIyMjAwIgogICAgICAgICAgICAgICB9LAogICAgICAgICAgICAg
|
|
313
|
+
ICAib3BlbiIgOiB7CiAgICAgICAgICAgICAgICAgICJkYXkiIDogNCwKICAg
|
|
314
|
+
ICAgICAgICAgICAgICAgInRpbWUiIDogIjExMzAiCiAgICAgICAgICAgICAg
|
|
315
|
+
IH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgewogICAgICAgICAgICAg
|
|
316
|
+
ICAiY2xvc2UiIDogewogICAgICAgICAgICAgICAgICAiZGF5IiA6IDUsCiAg
|
|
317
|
+
ICAgICAgICAgICAgICAgICJ0aW1lIiA6ICIyMjAwIgogICAgICAgICAgICAg
|
|
318
|
+
ICB9LAogICAgICAgICAgICAgICAib3BlbiIgOiB7CiAgICAgICAgICAgICAg
|
|
319
|
+
ICAgICJkYXkiIDogNSwKICAgICAgICAgICAgICAgICAgInRpbWUiIDogIjEx
|
|
320
|
+
MzAiCiAgICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAg
|
|
321
|
+
ICAgewogICAgICAgICAgICAgICAiY2xvc2UiIDogewogICAgICAgICAgICAg
|
|
322
|
+
ICAgICAiZGF5IiA6IDYsCiAgICAgICAgICAgICAgICAgICJ0aW1lIiA6ICIy
|
|
323
|
+
MjAwIgogICAgICAgICAgICAgICB9LAogICAgICAgICAgICAgICAib3BlbiIg
|
|
324
|
+
OiB7CiAgICAgICAgICAgICAgICAgICJkYXkiIDogNiwKICAgICAgICAgICAg
|
|
325
|
+
ICAgICAgInRpbWUiIDogIjExMzAiCiAgICAgICAgICAgICAgIH0KICAgICAg
|
|
326
|
+
ICAgICAgfQogICAgICAgICBdCiAgICAgIH0sCiAgICAgICJwcmljZV9sZXZl
|
|
327
|
+
bCIgOiAzLAogICAgICAicmF0aW5nIiA6IDQuNTAsCiAgICAgICJyZWZlcmVu
|
|
328
|
+
Y2UiIDogIkNuUnBBQUFBeXZQRzFXVGtYLWdFM1pxSGtGOG1wUjA4bTFSTXhq
|
|
329
|
+
TDktS3lzTXFPOGJrVV9yTlBvMzd4dGV0ZkRaTVVoazdoeHpkTTlWQnhUV2RV
|
|
330
|
+
UFI5UTZrTWF5RDZSOGdmVE1lYzhka191ZFJRVEVMal9rczlWZ0E4WS1YbWtW
|
|
331
|
+
R1B0c19LcExtSzV6MThsM0h6aTdLRlhoODJEMll4SVF1QWNIMFNGTkdTeUVv
|
|
332
|
+
N1FadklOR254b1VWa25IWXc2VHRNT3hRcGdkQ1REbjFQV0dyM1UiLAogICAg
|
|
333
|
+
ICAicmV2aWV3X3N1bW1hcnkiIDogIlN0aWxsIHRoZSBcImdvbGQgc3RhbmRh
|
|
334
|
+
cmRcIiBpbiBWYWlsLCB0aGlzIFwicGlvbmVlclwiIG9mIFwiZm9yd2FyZC10
|
|
335
|
+
aGlua2luZ1wiIFwibHV4dXJ5XCIgcHJlc2VudHMgXCJmYWJcIiwgXCJjdXR0
|
|
336
|
+
aW5nLWVkZ2VcIiBOZXcgQW1lcmljYW4gY3Vpc2luZSBhbmQgXCJwYW1wZXJp
|
|
337
|
+
bmdcIiBzZXJ2aWNlIGluIGFuIFwiZW5lcmdpemluZ1wiLCBcInNleHlcIiBz
|
|
338
|
+
ZXR0aW5nIHdpdGggXCJzcGFya2xpbmcgdmlld3NcIiBvZiBHb3JlIENyZWVr
|
|
339
|
+
IHRocm91Z2ggXCJwaWN0dXJlIHdpbmRvd3NcIjsgXCJza3ktaGlnaCBwcmlj
|
|
340
|
+
ZXNcIiBhcmUgbm8gaXNzdWUgZm9yIHRoZSBcImdsaXR6eVwiIFwibW91bnRh
|
|
341
|
+
aW5lZXJzXCIgd2hvIGZyZXF1ZW50IGl0IOKAkyBpbiBmYWN0LCBcInRoZSBv
|
|
342
|
+
bmx5IGRvd25zaWRlIGlzIGl0cyBwb3B1bGFyaXR5XCIgKGl0J3MgXCJhY2hp
|
|
343
|
+
bmdseSBub2lzeVwiKS4iLAogICAgICAicmV2aWV3cyIgOiBbCiAgICAgICAg
|
|
344
|
+
IHsKICAgICAgICAgICAgImFzcGVjdHMiIDogWwogICAgICAgICAgICAgICB7
|
|
345
|
+
CiAgICAgICAgICAgICAgICAgICJyYXRpbmciIDogMywKICAgICAgICAgICAg
|
|
346
|
+
ICAgICAgInR5cGUiIDogImZvb2QiCiAgICAgICAgICAgICAgIH0sCiAgICAg
|
|
347
|
+
ICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgInJhdGluZyIgOiAyLAog
|
|
348
|
+
ICAgICAgICAgICAgICAgICAidHlwZSIgOiAiZGVjb3IiCiAgICAgICAgICAg
|
|
349
|
+
ICAgIH0sCiAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgInJh
|
|
350
|
+
dGluZyIgOiAxLAogICAgICAgICAgICAgICAgICAidHlwZSIgOiAic2Vydmlj
|
|
351
|
+
ZSIKICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdLAogICAgICAgICAg
|
|
352
|
+
ICAiYXV0aG9yX25hbWUiIDogImphbWVzIGhhbGwiLAogICAgICAgICAgICAi
|
|
353
|
+
YXV0aG9yX3VybCIgOiAiaHR0cHM6Ly9wbHVzLmdvb2dsZS5jb20vMTAyNDE3
|
|
354
|
+
ODIwMDc3MzgxNDY4MTc4IiwKICAgICAgICAgICAgInRleHQiIDogIkV2ZXJ5
|
|
355
|
+
b25lIGZvdW5kIHRoZSBmb29kIGRlbGljaW91cyBhbmQgdGhlIG1lbnUgaXMg
|
|
356
|
+
Y3JlYXRpdmUuIE1vcmUgdmVnZXRhcmlhbiBvcHRpb25zIHdvdWxkIGJlIG5p
|
|
357
|
+
Y2UuIFRoZSBzZXJ2aWNlIHdhcyBnb29kIGRlc3BpdGUgYmVpbmcgYml0IHBy
|
|
358
|
+
ZXRlbnRpb3VzLiBJIHdvdWxkIHJhdGUgaXQgdmVyeSBnb29kIGJ1dCB3ZSBl
|
|
359
|
+
eHBlcmllbmNlZCBhIG1pbm9yIHNlcnZlciBrbm93bGVkZ2UgcHJvYmxlbS4i
|
|
360
|
+
LAogICAgICAgICAgICAidGltZSIgOiAxMzQ4NDEyODcxCiAgICAgICAgIH0s
|
|
361
|
+
CiAgICAgICAgIHsKICAgICAgICAgICAgImFzcGVjdHMiIDogWwogICAgICAg
|
|
362
|
+
ICAgICAgICB7CiAgICAgICAgICAgICAgICAgICJyYXRpbmciIDogMCwKICAg
|
|
363
|
+
ICAgICAgICAgICAgICAgInR5cGUiIDogIm92ZXJhbGwiCiAgICAgICAgICAg
|
|
364
|
+
ICAgIH0KICAgICAgICAgICAgXSwKICAgICAgICAgICAgImF1dGhvcl9uYW1l
|
|
365
|
+
IiA6ICJBIEdvb2dsZSBVc2VyIiwKICAgICAgICAgICAgInRleHQiIDogIk9u
|
|
366
|
+
ZSBvZiB0aGUgbW9zdCBwcmV0ZW50aW91cyByZXN0YXVyYW50cyBJJiMzOTt2
|
|
367
|
+
ZSBldmVyIGJlZW4gdG8uLi4uSXQmIzM5O3Mgb25lIHRoaW5nIHRvIGJlIGNv
|
|
368
|
+
Y2t5IGlmIHlvdSBoYXZlIHRoZSBmb29kIGFuZCB0YWxlbnQgdG8gYmFjayBp
|
|
369
|
+
dCB1cC4uLlRoaXMgcGxhY2UgaGFzIG5laXRoZXIuIEFwcGV0aXplcnMgY2Ft
|
|
370
|
+
ZSBvdXQgbHVrZSB3YXJtIGFuZCB0dXJuZWQgY29sZCB3aXRoaW4gNSBtaW51
|
|
371
|
+
dGVzLiBIZWNrLCBldmVuIERlbm55JiMzOTtzIGhlYXRzIHRoZWlyIHBsYXRl
|
|
372
|
+
cyB1cC4gRW50cmVlJiMzOTtzIHdlcmUgbm90aGluZyBzcGVjaWFsLi4uLkkg
|
|
373
|
+
Y291bGQgaGF2ZSBwcmVwYXJlZCBhIGJldHRlciBtZWFsIGFuZCBJJiMzOTt2
|
|
374
|
+
ZSBuZXZlciBiZWVuIHRvIGN1bGluYXJ5IHNjaG9vbC4gSXQmIzM5O3MgYW1h
|
|
375
|
+
emluZyB0aGF0IHJlc3RhdXJhbnRzIGxpa2UgdGhpcyBtYW5hZ2UgdG8ga2Vl
|
|
376
|
+
cCB0aGVpciBkb29ycyBvcGVuLiIsCiAgICAgICAgICAgICJ0aW1lIiA6IDEz
|
|
377
|
+
MzY3NTM2NjUKICAgICAgICAgfSwKICAgICAgICAgewogICAgICAgICAgICAi
|
|
378
|
+
YXNwZWN0cyIgOiBbCiAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAg
|
|
379
|
+
ICAgInJhdGluZyIgOiAwLAogICAgICAgICAgICAgICAgICAidHlwZSIgOiAi
|
|
380
|
+
b3ZlcmFsbCIKICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdLAogICAg
|
|
381
|
+
ICAgICAgICAiYXV0aG9yX25hbWUiIDogIkEgR29vZ2xlIFVzZXIiLAogICAg
|
|
382
|
+
ICAgICAgICAidGV4dCIgOiAiSSBoYXZlIGJlZW4gZ29pbmcgdG8gU3dlZXQg
|
|
383
|
+
QmFzaWwgZm9yIHllYXJzIGFuZCB0aGlzIHBsYWNlIGhhcyBjZXJ0YWlubHkg
|
|
384
|
+
YmVjb21lIG1lZGlvY3JlIGF0IGJlc3QuIE91ciBmb29kIHdhcyBsdWtlIHdh
|
|
385
|
+
cm0gYW5kIG15IHdpZmUmIzM5O3MgZHVjayB3YXMgY29tcGxldGVseSByYXcg
|
|
386
|
+
ZGVzcGl0ZSBhc2tpbmcgZm9yIHdlbGwgZG9uZSEgTXkgYmVlZiB3YXMgbm90
|
|
387
|
+
aGluZyBzcGVjaWFsLiBUaGlzIHJlc3RhdXJhbnQgaXMgb3ZlcnByaWNlZCBm
|
|
388
|
+
b3Igd2hhdCB5b3UgZ2V0LiBJIGZvdW5kIHRoZSBzdGFmZiBydWRlIGFuZCBj
|
|
389
|
+
b21wbGFjZW50LiBUaGUgcnVkZXN0IHBlb3BsZSBJIGhhdmUgZW5jb3VudGVy
|
|
390
|
+
ZWQgaW4gcXVpdGUgc29tZSB0aW1lLiBTb21lIHNlcmlvdXMgZWdvIGlzc3Vl
|
|
391
|
+
cyBoZXJlLiBXZSB3aWxsIG5vdCBiZSByZXR1cm5pbmcuIEkgdGhpbmsgdGhl
|
|
392
|
+
eSBuZWVkIHRvIGNsZWFyIHRoZSBkZWNrIGFuZCBoaXJlIGEgbmV3IHRlYW0u
|
|
393
|
+
IiwKICAgICAgICAgICAgInRpbWUiIDogMTMyMTI5MzgzMAogICAgICAgICB9
|
|
394
|
+
LAogICAgICAgICB7CiAgICAgICAgICAgICJhc3BlY3RzIiA6IFsKICAgICAg
|
|
395
|
+
ICAgICAgICAgewogICAgICAgICAgICAgICAgICAicmF0aW5nIiA6IDAsCiAg
|
|
396
|
+
ICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJvdmVyYWxsIgogICAgICAgICAg
|
|
397
|
+
ICAgICB9CiAgICAgICAgICAgIF0sCiAgICAgICAgICAgICJhdXRob3JfbmFt
|
|
398
|
+
ZSIgOiAiQSBHb29nbGUgVXNlciIsCiAgICAgICAgICAgICJ0ZXh0IiA6ICJX
|
|
399
|
+
ZSBoZWFyZCBhIGxvdCBvZiBncmVhdCB0aGluZ3MgYWJvdXQgU3dlZXQgQmFz
|
|
400
|
+
aWwgYnV0IHdlcmUgcmVhbGx5IGRpc2FwcG9pbnRlZC4gVGhlIGZvb2Qgd2Fz
|
|
401
|
+
IG9rYXkgYnV0IGZvciB0aGUgcHJpY2Ugc2hvdWxkIGhhdmUgYmVlbiBleGNl
|
|
402
|
+
cHRpb25hbC4gVGhleSB3ZXJlIGluZmxleGlibGUgd2l0aCBzaWRlIHN1YnN0
|
|
403
|
+
aXR1dGlvbnMgYW5kIHRoZSBzZXJ2aWNlIHdhcyBtZWRpb2NyZS4gT3ZlcmFs
|
|
404
|
+
bCBleHBlcmllbmNlIHdhcyBmYWlyLiBXb3VsZCB0cnkgc29tZXdoZXJlIGVs
|
|
405
|
+
c2UgbmV4dCB0aW1lLiIsCiAgICAgICAgICAgICJ0aW1lIiA6IDEzMTMzMzkx
|
|
406
|
+
NzIKICAgICAgICAgfSwKICAgICAgICAgewogICAgICAgICAgICAiYXNwZWN0
|
|
407
|
+
cyIgOiBbCiAgICAgICAgICAgICAgIHsKICAgICAgICAgICAgICAgICAgInJh
|
|
408
|
+
dGluZyIgOiAzLAogICAgICAgICAgICAgICAgICAidHlwZSIgOiAib3ZlcmFs
|
|
409
|
+
bCIKICAgICAgICAgICAgICAgfQogICAgICAgICAgICBdLAogICAgICAgICAg
|
|
410
|
+
ICAiYXV0aG9yX25hbWUiIDogIkEgR29vZ2xlIFVzZXIiLAogICAgICAgICAg
|
|
411
|
+
ICAidGV4dCIgOiAiR3JlYXQgZXhwZXJpZW5jZSEgTXkgd2lmZSBhbmQgSSBz
|
|
412
|
+
dG9wcGVkIGJ5IFN3ZWV0IEJhc2lsIGJ5IGFjY2lkZW50IG9uIG91ciB3YXkg
|
|
413
|
+
YmFjayB0byBEZW52ZXIgZnJvbSBCZWF2ZXIgQ3JlZWsuIFdlIGRpZG4mIzM5
|
|
414
|
+
O3Qga25vdyB0aGUgYXJlYSBhbmQgaGFwcGVuZWQgdG8gc2VlIHRoZSByZXN0
|
|
415
|
+
YXVyYW50LiBXZSBzYXQgYXQgdGhlIGJhciBhbmQgd2VyZSBwcm92aWRlZCBn
|
|
416
|
+
cmVhdCBzZXJ2aWNlIGJ5IE5pY2ssIHRoZSBiYXJ0ZW5kZXIuIFRoZSB0dW5h
|
|
417
|
+
IGFwcGV0aXplciBhbmQgc3R1ZmZlZCBjaGlsZSB3ZXJlIHNlbnNhdGlvbmFs
|
|
418
|
+
LiBHcmVhdCBkcmlua3MgYXMgd2VsbC4gTG90cyBvZiBwZW9wbGUgY29taW5n
|
|
419
|
+
IGluIHNlZW1lZCB0byBrbm93IE5pY2sgYXMgaGUgbWFrZXMgcGVvcGxlIGZl
|
|
420
|
+
ZWwgd2VsY29tZS4gVGhlIHByaWNlIHNlZW1lZCBhYm91dCByaWdodCBjb21w
|
|
421
|
+
YXJlZCB0byBvdGhlciByZXN0YXVyYW50cyBpbiBhIHJlc29ydCB0b3duLiIs
|
|
422
|
+
CiAgICAgICAgICAgICJ0aW1lIiA6IDEzMjczMzQ2NTIKICAgICAgICAgfQog
|
|
423
|
+
ICAgICBdLAogICAgICAidHlwZXMiIDogWyAicmVzdGF1cmFudCIsICJmb29k
|
|
424
|
+
IiwgImVzdGFibGlzaG1lbnQiIF0sCiAgICAgICJ1cmwiIDogImh0dHBzOi8v
|
|
425
|
+
cGx1cy5nb29nbGUuY29tLzExMjY0MTI1NjAwMTU3MTE3ODM4My9hYm91dD9o
|
|
426
|
+
bD1lbi1VUyIsCiAgICAgICJ1dGNfb2Zmc2V0IiA6IC0zNjAsCiAgICAgICJ2
|
|
427
|
+
aWNpbml0eSIgOiAiMTkzIEdvcmUgQ3JlZWsgRHJpdmUgIzIwMSwgVmFpbCIs
|
|
428
|
+
CiAgICAgICJ3ZWJzaXRlIiA6ICJodHRwOi8vd3d3LnN3ZWV0YmFzaWwtdmFp
|
|
429
|
+
bC5jb20vIiwKICAgICAgInphZ2F0X3JldmlldyIgOiAiU3RpbGwgdGhlIFwi
|
|
430
|
+
Z29sZCBzdGFuZGFyZFwiIGluIFZhaWwsIHRoaXMgXCJwaW9uZWVyXCIgb2Yg
|
|
431
|
+
XCJmb3J3YXJkLXRoaW5raW5nXCIgXCJsdXh1cnlcIiBwcmVzZW50cyBcImZh
|
|
432
|
+
YlwiLCBcImN1dHRpbmctZWRnZVwiIE5ldyBBbWVyaWNhbiBjdWlzaW5lIGFu
|
|
433
|
+
ZCBcInBhbXBlcmluZ1wiIHNlcnZpY2UgaW4gYW4gXCJlbmVyZ2l6aW5nXCIs
|
|
434
|
+
IFwic2V4eVwiIHNldHRpbmcgd2l0aCBcInNwYXJrbGluZyB2aWV3c1wiIG9m
|
|
435
|
+
IEdvcmUgQ3JlZWsgdGhyb3VnaCBcInBpY3R1cmUgd2luZG93c1wiOyBcInNr
|
|
436
|
+
eS1oaWdoIHByaWNlc1wiIGFyZSBubyBpc3N1ZSBmb3IgdGhlIFwiZ2xpdHp5
|
|
437
|
+
XCIgXCJtb3VudGFpbmVlcnNcIiB3aG8gZnJlcXVlbnQgaXQg4oCTIGluIGZh
|
|
438
|
+
Y3QsIFwidGhlIG9ubHkgZG93bnNpZGUgaXMgaXRzIHBvcHVsYXJpdHlcIiAo
|
|
439
|
+
aXQncyBcImFjaGluZ2x5IG5vaXN5XCIpLiIsCiAgICAgICJ6YWdhdF9zZWxl
|
|
440
|
+
Y3RlZCIgOiB0cnVlCiAgIH0sCiAgICJzdGF0dXMiIDogIk9LIgp9Cg==
|
|
441
|
+
http_version: '1.1'
|
|
442
|
+
recorded_at: Wed, 13 Mar 2013 13:42:51 GMT
|
|
443
|
+
recorded_with: VCR 2.2.5
|
|
@@ -0,0 +1,497 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?reference=CnRsAAAASc4grenwL0h3X5VPNp5fkDNfqbjt3iQtWIPlKS-3ms9GbnCxR_FLHO0B0ZKCgJSg19qymkeHagjQFB4aUL87yhp4mhFTc17DopK1oiYDaeGthztSjERic8TmFNe-6zOpKSdiZWKE6xlQvcbSiWIJchIQOEYZqunSSZqNDoBSs77bWRoUJcMMVANtSlhy0llKI0MI6VcC7DU&sensor=false&key=DUMMY_KEY&language=&extensions=
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers: {}
|
|
10
|
+
response:
|
|
11
|
+
status:
|
|
12
|
+
code: 200
|
|
13
|
+
message: OK
|
|
14
|
+
headers:
|
|
15
|
+
content-type:
|
|
16
|
+
- application/json; charset=UTF-8
|
|
17
|
+
vary:
|
|
18
|
+
- Accept-Language
|
|
19
|
+
date:
|
|
20
|
+
- Wed, 13 Mar 2013 13:30:34 GMT
|
|
21
|
+
server:
|
|
22
|
+
- mafe
|
|
23
|
+
cache-control:
|
|
24
|
+
- private
|
|
25
|
+
x-xss-protection:
|
|
26
|
+
- 1; mode=block
|
|
27
|
+
x-frame-options:
|
|
28
|
+
- SAMEORIGIN
|
|
29
|
+
connection:
|
|
30
|
+
- close
|
|
31
|
+
body:
|
|
32
|
+
encoding: US-ASCII
|
|
33
|
+
string: ! "{\n \"html_attributions\" : [],\n \"result\" : {\n \"address_components\"
|
|
34
|
+
: [\n {\n \"long_name\" : \"48\",\n \"short_name\"
|
|
35
|
+
: \"48\",\n \"types\" : [ \"street_number\" ]\n },\n {\n
|
|
36
|
+
\ \"long_name\" : \"Pirrama Road\",\n \"short_name\"
|
|
37
|
+
: \"Pirrama Road\",\n \"types\" : [ \"route\" ]\n },\n
|
|
38
|
+
\ {\n \"long_name\" : \"Pyrmont\",\n \"short_name\"
|
|
39
|
+
: \"Pyrmont\",\n \"types\" : [ \"locality\", \"political\" ]\n
|
|
40
|
+
\ },\n {\n \"long_name\" : \"NSW\",\n \"short_name\"
|
|
41
|
+
: \"NSW\",\n \"types\" : [ \"administrative_area_level_1\", \"political\"
|
|
42
|
+
]\n },\n {\n \"long_name\" : \"AU\",\n \"short_name\"
|
|
43
|
+
: \"AU\",\n \"types\" : [ \"country\", \"political\" ]\n },\n
|
|
44
|
+
\ {\n \"long_name\" : \"2009\",\n \"short_name\"
|
|
45
|
+
: \"2009\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n
|
|
46
|
+
\ \"aspects\" : [\n {\n \"rating\" : 26,\n \"type\"
|
|
47
|
+
: \"overall\"\n }\n ],\n \"formatted_address\" : \"5/48
|
|
48
|
+
Pirrama Road, Pyrmont NSW, Australia\",\n \"formatted_phone_number\"
|
|
49
|
+
: \"(02) 9374 4000\",\n \"geometry\" : {\n \"location\" : {\n
|
|
50
|
+
\ \"lat\" : -33.8669750,\n \"lng\" : 151.1956770\n }\n
|
|
51
|
+
\ },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png\",\n
|
|
52
|
+
\ \"id\" : \"4f89212bf76dde31f092cfc14d7506555d85b5c7\",\n \"international_phone_number\"
|
|
53
|
+
: \"+61 2 9374 4000\",\n \"name\" : \"Google Sydney\",\n \"photos\"
|
|
54
|
+
: [\n {\n \"height\" : 1536,\n \"html_attributions\"
|
|
55
|
+
: [ \"From a Google User\" ],\n \"photo_reference\" : \"CoQBdQAAAOpjjMaphr6pD5-JwovK8-I9NKWe-JNO1SugARrTg8RitWztB_THOQY0MN6AJkRoGjsMqCyoyeB5bP_KLrVsJawrImMFf5AsqWmlmgE6lqMkxUCfdfHX6bvNCgmfdyw9nvIawcWHmeSXK-QlshyXPqf0ivgXPRiNGL1n0KGYXcOIEhCGooI3XdTgGkcqNtE2IuRnGhQpFtsRL8EkhVAkwvETMdWhKpK1sw\",\n
|
|
56
|
+
\ \"width\" : 2048\n },\n {\n \"height\"
|
|
57
|
+
: 480,\n \"html_attributions\" : [ \"From a Google User\" ],\n
|
|
58
|
+
\ \"photo_reference\" : \"CnRqAAAAA-PmKqecx0gTWr-8oJ_-3m-3rryseHducvarDymXzStokD0y1nwYu9yR5GzZUrl0hUG02Jes7Ygv2JDodgP0PuioJFl9yRN6ilyIAEhuSqLwmz93M_NnFh0AE2MMEtGXzwtGL1UyGr7E3_HZ-hVcfBIQdAq8C9bymgbghTUH52CHsxoUEGa9FtFJhkB-APRDeHMVY7RUqWY\",\n
|
|
59
|
+
\ \"width\" : 640\n }\n ],\n \"rating\" : 4.60,\n
|
|
60
|
+
\ \"reference\" : \"CnRsAAAAekNhjWYzXAZlVE5tm1jMeFlu_nuR_Z9ezqs-0fN50C0fRiNFuAS1co7ol0AvJia8HvBGMW9zriFkmq2dqaW9A4D3axu7jqmTeF3Nv7MeY2vAFtL-eBMRWCKrEWV_czTytz-_rgD3Q3yayKSrSXyclRIQzFJ6XsMSJvMpJ-o43V5KuBoUjv_GD46tYDJcp8CzQSGchlxaUdY\",\n
|
|
61
|
+
\ \"reviews\" : [\n {\n \"aspects\" : [\n {\n
|
|
62
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
63
|
+
\ }\n ],\n \"author_name\" : \"Albert Mai\",\n
|
|
64
|
+
\ \"author_url\" : \"https://plus.google.com/106558367962383756670\",\n
|
|
65
|
+
\ \"text\" : \"All Googlers are so nice and friendly. They will
|
|
66
|
+
always answer your questions, open to questions and willing to help you with
|
|
67
|
+
their best. The office locates at a very strategic place - in CBD and has
|
|
68
|
+
wonderful view over the harbor. Really enjoy having lunch outside to enjoy
|
|
69
|
+
the wind and fresh air for inspiration (but watch out for flying dishes because
|
|
70
|
+
of strong wind). However, food is kinda lack of the variety comparing to other
|
|
71
|
+
offices. The plus is food station is almost everywhere which feed you very
|
|
72
|
+
well (be careful of gaining so much weight). There will usually be surprise
|
|
73
|
+
when you work here: Ice Cream, Nexus 7, Chrome notebook, Nexus and many other
|
|
74
|
+
swags. There are a lot of trees inside the building which I really like it
|
|
75
|
+
- so fresh !\",\n \"time\" : 1358249804\n },\n {\n
|
|
76
|
+
\ \"aspects\" : [\n {\n \"rating\"
|
|
77
|
+
: 3,\n \"type\" : \"quality\"\n }\n ],\n
|
|
78
|
+
\ \"author_name\" : \"David Webb\",\n \"author_url\"
|
|
79
|
+
: \"https://plus.google.com/115578224090485355580\",\n \"text\"
|
|
80
|
+
: \"Awesome company! Great culture and food. A fantastic office indeed. Definitely
|
|
81
|
+
deserves the title "Best place to work".\",\n \"time\"
|
|
82
|
+
: 1358233693\n },\n {\n \"aspects\" : [\n {\n
|
|
83
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
84
|
+
\ }\n ],\n \"author_name\" : \"Lachlan
|
|
85
|
+
Archibald\",\n \"author_url\" : \"https://plus.google.com/115671446961475717459\",\n
|
|
86
|
+
\ \"text\" : \"Awesome building; many interesting and unique internal
|
|
87
|
+
structures and rooms. There are also a number of facilities including coffee
|
|
88
|
+
machines, rest and relaxation areas and research areas. Staff are extremely
|
|
89
|
+
friendly and willing to answer questions and engage in conversation.\",\n
|
|
90
|
+
\ \"time\" : 1361349581\n },\n {\n \"aspects\"
|
|
91
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
92
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
93
|
+
: \"Cindy Huang\",\n \"author_url\" : \"https://plus.google.com/107550491878142658504\",\n
|
|
94
|
+
\ \"text\" : \"There are few workplaces more desirable to work in
|
|
95
|
+
than Google. The facilities are incredible, and reflect the company's
|
|
96
|
+
dedication to innovation, inspiration and improvement. The interior design
|
|
97
|
+
is fun, flexible and definitely the ideal platform for employers and employees
|
|
98
|
+
alike to foster the great ideas of tomorrow. Should the opportunity arise,
|
|
99
|
+
I would definitely recommend everyone to seize the chance to experience Google
|
|
100
|
+
(and get a tour through those amazing and incredibly thoughtful micro kitchens).\",\n
|
|
101
|
+
\ \"time\" : 1361360490\n },\n {\n \"aspects\"
|
|
102
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
103
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
104
|
+
: \"Jared Winter\",\n \"author_url\" : \"https://plus.google.com/103549082258031873774\",\n
|
|
105
|
+
\ \"text\" : \"A brilliant atmosphere and welcoming people a great
|
|
106
|
+
place to visit or work. Definitely take a look at their unique reception with
|
|
107
|
+
the tyre swing and fernery.\",\n \"time\" : 1361349311\n }\n
|
|
108
|
+
\ ],\n \"types\" : [ \"establishment\" ],\n \"url\" : \"https://plus.google.com/111840715355681175070/about?hl=en-US\",\n
|
|
109
|
+
\ \"utc_offset\" : 660,\n \"vicinity\" : \"5/48 Pirrama Road, Pyrmont\",\n
|
|
110
|
+
\ \"website\" : \"http://www.google.com.au/\"\n },\n \"status\" :
|
|
111
|
+
\"OK\"\n}\n"
|
|
112
|
+
http_version: '1.1'
|
|
113
|
+
recorded_at: Wed, 13 Mar 2013 13:30:34 GMT
|
|
114
|
+
- request:
|
|
115
|
+
method: get
|
|
116
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?reference=CnRsAAAASc4grenwL0h3X5VPNp5fkDNfqbjt3iQtWIPlKS-3ms9GbnCxR_FLHO0B0ZKCgJSg19qymkeHagjQFB4aUL87yhp4mhFTc17DopK1oiYDaeGthztSjERic8TmFNe-6zOpKSdiZWKE6xlQvcbSiWIJchIQOEYZqunSSZqNDoBSs77bWRoUJcMMVANtSlhy0llKI0MI6VcC7DU&sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
117
|
+
body:
|
|
118
|
+
encoding: US-ASCII
|
|
119
|
+
string: ''
|
|
120
|
+
headers: {}
|
|
121
|
+
response:
|
|
122
|
+
status:
|
|
123
|
+
code: 200
|
|
124
|
+
message: OK
|
|
125
|
+
headers:
|
|
126
|
+
content-type:
|
|
127
|
+
- application/json; charset=UTF-8
|
|
128
|
+
vary:
|
|
129
|
+
- Accept-Language
|
|
130
|
+
date:
|
|
131
|
+
- Fri, 22 Mar 2013 10:57:57 GMT
|
|
132
|
+
server:
|
|
133
|
+
- mafe
|
|
134
|
+
cache-control:
|
|
135
|
+
- private
|
|
136
|
+
x-xss-protection:
|
|
137
|
+
- 1; mode=block
|
|
138
|
+
x-frame-options:
|
|
139
|
+
- SAMEORIGIN
|
|
140
|
+
connection:
|
|
141
|
+
- close
|
|
142
|
+
body:
|
|
143
|
+
encoding: US-ASCII
|
|
144
|
+
string: ! "{\n \"html_attributions\" : [],\n \"result\" : {\n \"address_components\"
|
|
145
|
+
: [\n {\n \"long_name\" : \"48\",\n \"short_name\"
|
|
146
|
+
: \"48\",\n \"types\" : [ \"street_number\" ]\n },\n {\n
|
|
147
|
+
\ \"long_name\" : \"Pirrama Road\",\n \"short_name\"
|
|
148
|
+
: \"Pirrama Road\",\n \"types\" : [ \"route\" ]\n },\n
|
|
149
|
+
\ {\n \"long_name\" : \"Pyrmont\",\n \"short_name\"
|
|
150
|
+
: \"Pyrmont\",\n \"types\" : [ \"locality\", \"political\" ]\n
|
|
151
|
+
\ },\n {\n \"long_name\" : \"NSW\",\n \"short_name\"
|
|
152
|
+
: \"NSW\",\n \"types\" : [ \"administrative_area_level_1\", \"political\"
|
|
153
|
+
]\n },\n {\n \"long_name\" : \"AU\",\n \"short_name\"
|
|
154
|
+
: \"AU\",\n \"types\" : [ \"country\", \"political\" ]\n },\n
|
|
155
|
+
\ {\n \"long_name\" : \"2009\",\n \"short_name\"
|
|
156
|
+
: \"2009\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n
|
|
157
|
+
\ \"formatted_address\" : \"5/48 Pirrama Road, Pyrmont NSW, Australia\",\n
|
|
158
|
+
\ \"formatted_phone_number\" : \"(02) 9374 4000\",\n \"geometry\"
|
|
159
|
+
: {\n \"location\" : {\n \"lat\" : -33.8669750,\n \"lng\"
|
|
160
|
+
: 151.1956770\n }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png\",\n
|
|
161
|
+
\ \"id\" : \"4f89212bf76dde31f092cfc14d7506555d85b5c7\",\n \"international_phone_number\"
|
|
162
|
+
: \"+61 2 9374 4000\",\n \"name\" : \"Google Sydney\",\n \"photos\"
|
|
163
|
+
: [\n {\n \"height\" : 1536,\n \"html_attributions\"
|
|
164
|
+
: [ \"From a Google User\" ],\n \"photo_reference\" : \"CoQBdQAAAByr0nEPbiQk8Hd775zejoDpYG-zk8fiRMdGFsy8Yj8Fz4K6xlgKVeksqmlFxwnF7KSc5JewyeK5MUcGqTft5OBOR1aO04mTFTjr-fcU83xjvSh9pIR7AAt4OEpjfCWW1GC9m4oQ8CkFRsmc9M2LKQRQFn-29sDJ2hKq6Ajbg0-oEhDTfY-WijhVX2aoYGXilrqYGhRLB9W7WexRPQ-t_h_QpF2f2b-6Dg\",\n
|
|
165
|
+
\ \"width\" : 2048\n },\n {\n \"height\"
|
|
166
|
+
: 480,\n \"html_attributions\" : [ \"From a Google User\" ],\n
|
|
167
|
+
\ \"photo_reference\" : \"CnRqAAAAUolqBKXyOAi1ZBcsVukJNgTHvbwxSc3iLtFZSngv8OEHr0GusCJaSVLILdOvLnoBuuq8S86RT4RVM1LCf2WFTIIDL7iq-6TXaFfh6r_-hVLmoLeqdqOUUvpegNuduM5tmikBkVjk4_WldkO1zHVjQhIQz0cD6Ck4ThQzfbq8lV7G5RoUT0NJenWvUUWCc19wVZY5Tzg1nFA\",\n
|
|
168
|
+
\ \"width\" : 640\n }\n ],\n \"rating\" : 4.60,\n
|
|
169
|
+
\ \"reference\" : \"CnRsAAAAAmgIhWbyxoqDSoeW85STIMnPvKsJiANNkhj4Dwl-kWoEhUop3LZLr1FCBomr15XtCDsLOlikbDlaeQU8Cu5h9tHDjQSG2F1-vcrxDLm-vkENwoMIHKGQkoAfwn5f5YM7oISeYw53F4WdFEk-F9PGSRIQOxnFB3u3uNRdsBLK9KTTrhoURNrvouAffcsfBxTJ8M8AUI7y7FE\",\n
|
|
170
|
+
\ \"reviews\" : [\n {\n \"aspects\" : [\n {\n
|
|
171
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
172
|
+
\ }\n ],\n \"author_name\" : \"Albert Mai\",\n
|
|
173
|
+
\ \"author_url\" : \"https://plus.google.com/106558367962383756670\",\n
|
|
174
|
+
\ \"text\" : \"All Googlers are so nice and friendly. They will
|
|
175
|
+
always answer your questions, open to questions and willing to help you with
|
|
176
|
+
their best. The office locates at a very strategic place - in CBD and has
|
|
177
|
+
wonderful view over the harbor. Really enjoy having lunch outside to enjoy
|
|
178
|
+
the wind and fresh air for inspiration (but watch out for flying dishes because
|
|
179
|
+
of strong wind). However, food is kinda lack of the variety comparing to other
|
|
180
|
+
offices. The plus is food station is almost everywhere which feed you very
|
|
181
|
+
well (be careful of gaining so much weight). There will usually be surprise
|
|
182
|
+
when you work here: Ice Cream, Nexus 7, Chrome notebook, Nexus and many other
|
|
183
|
+
swags. There are a lot of trees inside the building which I really like it
|
|
184
|
+
- so fresh !\",\n \"time\" : 1358249804\n },\n {\n
|
|
185
|
+
\ \"aspects\" : [\n {\n \"rating\"
|
|
186
|
+
: 3,\n \"type\" : \"quality\"\n }\n ],\n
|
|
187
|
+
\ \"author_name\" : \"David Webb\",\n \"author_url\"
|
|
188
|
+
: \"https://plus.google.com/115578224090485355580\",\n \"text\"
|
|
189
|
+
: \"Awesome company! Great culture and food. A fantastic office indeed. Definitely
|
|
190
|
+
deserves the title "Best place to work".\",\n \"time\"
|
|
191
|
+
: 1358233693\n },\n {\n \"aspects\" : [\n {\n
|
|
192
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
193
|
+
\ }\n ],\n \"author_name\" : \"Lachlan
|
|
194
|
+
Archibald\",\n \"author_url\" : \"https://plus.google.com/115671446961475717459\",\n
|
|
195
|
+
\ \"text\" : \"Awesome building; many interesting and unique internal
|
|
196
|
+
structures and rooms. There are also a number of facilities including coffee
|
|
197
|
+
machines, rest and relaxation areas and research areas. Staff are extremely
|
|
198
|
+
friendly and willing to answer questions and engage in conversation.\",\n
|
|
199
|
+
\ \"time\" : 1361349581\n },\n {\n \"aspects\"
|
|
200
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
201
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
202
|
+
: \"Cindy Huang\",\n \"author_url\" : \"https://plus.google.com/107550491878142658504\",\n
|
|
203
|
+
\ \"text\" : \"There are few workplaces more desirable to work in
|
|
204
|
+
than Google. The facilities are incredible, and reflect the company's
|
|
205
|
+
dedication to innovation, inspiration and improvement. The interior design
|
|
206
|
+
is fun, flexible and definitely the ideal platform for employers and employees
|
|
207
|
+
alike to foster the great ideas of tomorrow. Should the opportunity arise,
|
|
208
|
+
I would definitely recommend everyone to seize the chance to experience Google
|
|
209
|
+
(and get a tour through those amazing and incredibly thoughtful micro kitchens).\",\n
|
|
210
|
+
\ \"time\" : 1361360490\n },\n {\n \"aspects\"
|
|
211
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
212
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
213
|
+
: \"Jared Winter\",\n \"author_url\" : \"https://plus.google.com/103549082258031873774\",\n
|
|
214
|
+
\ \"text\" : \"A brilliant atmosphere and welcoming people a great
|
|
215
|
+
place to visit or work. Definitely take a look at their unique reception with
|
|
216
|
+
the tyre swing and fernery.\",\n \"time\" : 1361349311\n }\n
|
|
217
|
+
\ ],\n \"types\" : [ \"establishment\" ],\n \"url\" : \"https://plus.google.com/111840715355681175070/about?hl=en-US\",\n
|
|
218
|
+
\ \"utc_offset\" : 660,\n \"vicinity\" : \"5/48 Pirrama Road, Pyrmont\",\n
|
|
219
|
+
\ \"website\" : \"http://www.google.com.au/\"\n },\n \"status\" :
|
|
220
|
+
\"OK\"\n}\n"
|
|
221
|
+
http_version: '1.1'
|
|
222
|
+
recorded_at: Fri, 22 Mar 2013 10:59:47 GMT
|
|
223
|
+
- request:
|
|
224
|
+
method: get
|
|
225
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?reference=CnRsAAAASc4grenwL0h3X5VPNp5fkDNfqbjt3iQtWIPlKS-3ms9GbnCxR_FLHO0B0ZKCgJSg19qymkeHagjQFB4aUL87yhp4mhFTc17DopK1oiYDaeGthztSjERic8TmFNe-6zOpKSdiZWKE6xlQvcbSiWIJchIQOEYZqunSSZqNDoBSs77bWRoUJcMMVANtSlhy0llKI0MI6VcC7DU&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
226
|
+
body:
|
|
227
|
+
encoding: US-ASCII
|
|
228
|
+
string: ''
|
|
229
|
+
headers: {}
|
|
230
|
+
response:
|
|
231
|
+
status:
|
|
232
|
+
code: 200
|
|
233
|
+
message: OK
|
|
234
|
+
headers:
|
|
235
|
+
content-type:
|
|
236
|
+
- application/json; charset=UTF-8
|
|
237
|
+
vary:
|
|
238
|
+
- Accept-Language
|
|
239
|
+
date:
|
|
240
|
+
- Fri, 22 Mar 2013 10:57:57 GMT
|
|
241
|
+
server:
|
|
242
|
+
- mafe
|
|
243
|
+
cache-control:
|
|
244
|
+
- private
|
|
245
|
+
x-xss-protection:
|
|
246
|
+
- 1; mode=block
|
|
247
|
+
x-frame-options:
|
|
248
|
+
- SAMEORIGIN
|
|
249
|
+
connection:
|
|
250
|
+
- close
|
|
251
|
+
body:
|
|
252
|
+
encoding: US-ASCII
|
|
253
|
+
string: ! "{\n \"html_attributions\" : [],\n \"status\" : \"REQUEST_DENIED\"\n}\n"
|
|
254
|
+
http_version: '1.1'
|
|
255
|
+
recorded_at: Fri, 22 Mar 2013 10:59:47 GMT
|
|
256
|
+
- request:
|
|
257
|
+
method: get
|
|
258
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
259
|
+
body:
|
|
260
|
+
encoding: US-ASCII
|
|
261
|
+
string: ''
|
|
262
|
+
headers: {}
|
|
263
|
+
response:
|
|
264
|
+
status:
|
|
265
|
+
code: 200
|
|
266
|
+
message: OK
|
|
267
|
+
headers:
|
|
268
|
+
content-type:
|
|
269
|
+
- application/json; charset=UTF-8
|
|
270
|
+
vary:
|
|
271
|
+
- Accept-Language
|
|
272
|
+
date:
|
|
273
|
+
- Fri, 22 Mar 2013 10:57:57 GMT
|
|
274
|
+
server:
|
|
275
|
+
- mafe
|
|
276
|
+
cache-control:
|
|
277
|
+
- private
|
|
278
|
+
x-xss-protection:
|
|
279
|
+
- 1; mode=block
|
|
280
|
+
x-frame-options:
|
|
281
|
+
- SAMEORIGIN
|
|
282
|
+
connection:
|
|
283
|
+
- close
|
|
284
|
+
body:
|
|
285
|
+
encoding: US-ASCII
|
|
286
|
+
string: ! "{\n \"html_attributions\" : [],\n \"status\" : \"INVALID_REQUEST\"\n}\n"
|
|
287
|
+
http_version: '1.1'
|
|
288
|
+
recorded_at: Fri, 22 Mar 2013 10:59:47 GMT
|
|
289
|
+
- request:
|
|
290
|
+
method: get
|
|
291
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
292
|
+
body:
|
|
293
|
+
encoding: US-ASCII
|
|
294
|
+
string: ''
|
|
295
|
+
headers: {}
|
|
296
|
+
response:
|
|
297
|
+
status:
|
|
298
|
+
code: 200
|
|
299
|
+
message: OK
|
|
300
|
+
headers:
|
|
301
|
+
content-type:
|
|
302
|
+
- application/json; charset=UTF-8
|
|
303
|
+
vary:
|
|
304
|
+
- Accept-Language
|
|
305
|
+
date:
|
|
306
|
+
- Fri, 22 Mar 2013 10:57:58 GMT
|
|
307
|
+
server:
|
|
308
|
+
- mafe
|
|
309
|
+
cache-control:
|
|
310
|
+
- private
|
|
311
|
+
x-xss-protection:
|
|
312
|
+
- 1; mode=block
|
|
313
|
+
x-frame-options:
|
|
314
|
+
- SAMEORIGIN
|
|
315
|
+
connection:
|
|
316
|
+
- close
|
|
317
|
+
body:
|
|
318
|
+
encoding: US-ASCII
|
|
319
|
+
string: ! "{\n \"html_attributions\" : [],\n \"status\" : \"INVALID_REQUEST\"\n}\n"
|
|
320
|
+
http_version: '1.1'
|
|
321
|
+
recorded_at: Fri, 22 Mar 2013 10:59:48 GMT
|
|
322
|
+
- request:
|
|
323
|
+
method: get
|
|
324
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
325
|
+
body:
|
|
326
|
+
encoding: US-ASCII
|
|
327
|
+
string: ''
|
|
328
|
+
headers: {}
|
|
329
|
+
response:
|
|
330
|
+
status:
|
|
331
|
+
code: 200
|
|
332
|
+
message: OK
|
|
333
|
+
headers:
|
|
334
|
+
content-type:
|
|
335
|
+
- application/json; charset=UTF-8
|
|
336
|
+
vary:
|
|
337
|
+
- Accept-Language
|
|
338
|
+
date:
|
|
339
|
+
- Fri, 22 Mar 2013 10:57:59 GMT
|
|
340
|
+
server:
|
|
341
|
+
- mafe
|
|
342
|
+
cache-control:
|
|
343
|
+
- private
|
|
344
|
+
x-xss-protection:
|
|
345
|
+
- 1; mode=block
|
|
346
|
+
x-frame-options:
|
|
347
|
+
- SAMEORIGIN
|
|
348
|
+
connection:
|
|
349
|
+
- close
|
|
350
|
+
body:
|
|
351
|
+
encoding: US-ASCII
|
|
352
|
+
string: ! "{\n \"html_attributions\" : [],\n \"status\" : \"INVALID_REQUEST\"\n}\n"
|
|
353
|
+
http_version: '1.1'
|
|
354
|
+
recorded_at: Fri, 22 Mar 2013 10:59:49 GMT
|
|
355
|
+
- request:
|
|
356
|
+
method: get
|
|
357
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0
|
|
358
|
+
body:
|
|
359
|
+
encoding: US-ASCII
|
|
360
|
+
string: ''
|
|
361
|
+
headers: {}
|
|
362
|
+
response:
|
|
363
|
+
status:
|
|
364
|
+
code: 200
|
|
365
|
+
message: OK
|
|
366
|
+
headers:
|
|
367
|
+
content-type:
|
|
368
|
+
- application/json; charset=UTF-8
|
|
369
|
+
vary:
|
|
370
|
+
- Accept-Language
|
|
371
|
+
date:
|
|
372
|
+
- Fri, 22 Mar 2013 10:58:01 GMT
|
|
373
|
+
server:
|
|
374
|
+
- mafe
|
|
375
|
+
cache-control:
|
|
376
|
+
- private
|
|
377
|
+
x-xss-protection:
|
|
378
|
+
- 1; mode=block
|
|
379
|
+
x-frame-options:
|
|
380
|
+
- SAMEORIGIN
|
|
381
|
+
connection:
|
|
382
|
+
- close
|
|
383
|
+
body:
|
|
384
|
+
encoding: US-ASCII
|
|
385
|
+
string: ! "{\n \"html_attributions\" : [],\n \"status\" : \"INVALID_REQUEST\"\n}\n"
|
|
386
|
+
http_version: '1.1'
|
|
387
|
+
recorded_at: Fri, 22 Mar 2013 10:59:51 GMT
|
|
388
|
+
- request:
|
|
389
|
+
method: get
|
|
390
|
+
uri: https://maps.googleapis.com/maps/api/place/details/json?reference=CnRsAAAASc4grenwL0h3X5VPNp5fkDNfqbjt3iQtWIPlKS-3ms9GbnCxR_FLHO0B0ZKCgJSg19qymkeHagjQFB4aUL87yhp4mhFTc17DopK1oiYDaeGthztSjERic8TmFNe-6zOpKSdiZWKE6xlQvcbSiWIJchIQOEYZqunSSZqNDoBSs77bWRoUJcMMVANtSlhy0llKI0MI6VcC7DU&sensor=false&key=AIzaSyATGBjcfrRXQtNEMMyt8Fw7tSGEY8PQwv0&language=&extensions=
|
|
391
|
+
body:
|
|
392
|
+
encoding: US-ASCII
|
|
393
|
+
string: ''
|
|
394
|
+
headers: {}
|
|
395
|
+
response:
|
|
396
|
+
status:
|
|
397
|
+
code: 200
|
|
398
|
+
message: OK
|
|
399
|
+
headers:
|
|
400
|
+
content-type:
|
|
401
|
+
- application/json; charset=UTF-8
|
|
402
|
+
vary:
|
|
403
|
+
- Accept-Language
|
|
404
|
+
date:
|
|
405
|
+
- Fri, 22 Mar 2013 10:58:19 GMT
|
|
406
|
+
server:
|
|
407
|
+
- mafe
|
|
408
|
+
cache-control:
|
|
409
|
+
- private
|
|
410
|
+
x-xss-protection:
|
|
411
|
+
- 1; mode=block
|
|
412
|
+
x-frame-options:
|
|
413
|
+
- SAMEORIGIN
|
|
414
|
+
connection:
|
|
415
|
+
- close
|
|
416
|
+
body:
|
|
417
|
+
encoding: US-ASCII
|
|
418
|
+
string: ! "{\n \"html_attributions\" : [],\n \"result\" : {\n \"address_components\"
|
|
419
|
+
: [\n {\n \"long_name\" : \"48\",\n \"short_name\"
|
|
420
|
+
: \"48\",\n \"types\" : [ \"street_number\" ]\n },\n {\n
|
|
421
|
+
\ \"long_name\" : \"Pirrama Road\",\n \"short_name\"
|
|
422
|
+
: \"Pirrama Road\",\n \"types\" : [ \"route\" ]\n },\n
|
|
423
|
+
\ {\n \"long_name\" : \"Pyrmont\",\n \"short_name\"
|
|
424
|
+
: \"Pyrmont\",\n \"types\" : [ \"locality\", \"political\" ]\n
|
|
425
|
+
\ },\n {\n \"long_name\" : \"NSW\",\n \"short_name\"
|
|
426
|
+
: \"NSW\",\n \"types\" : [ \"administrative_area_level_1\", \"political\"
|
|
427
|
+
]\n },\n {\n \"long_name\" : \"AU\",\n \"short_name\"
|
|
428
|
+
: \"AU\",\n \"types\" : [ \"country\", \"political\" ]\n },\n
|
|
429
|
+
\ {\n \"long_name\" : \"2009\",\n \"short_name\"
|
|
430
|
+
: \"2009\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n
|
|
431
|
+
\ \"formatted_address\" : \"5/48 Pirrama Road, Pyrmont NSW, Australia\",\n
|
|
432
|
+
\ \"formatted_phone_number\" : \"(02) 9374 4000\",\n \"geometry\"
|
|
433
|
+
: {\n \"location\" : {\n \"lat\" : -33.8669750,\n \"lng\"
|
|
434
|
+
: 151.1956770\n }\n },\n \"icon\" : \"http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png\",\n
|
|
435
|
+
\ \"id\" : \"4f89212bf76dde31f092cfc14d7506555d85b5c7\",\n \"international_phone_number\"
|
|
436
|
+
: \"+61 2 9374 4000\",\n \"name\" : \"Google Sydney\",\n \"photos\"
|
|
437
|
+
: [\n {\n \"height\" : 1536,\n \"html_attributions\"
|
|
438
|
+
: [ \"From a Google User\" ],\n \"photo_reference\" : \"CoQBdQAAAGNdZJqusHc5B4LVjxuYJ2KqENHljBG18AhRA8lX8mz-ecU4id6on6DnHDHiz3mqZc5kzC-DKlUk7RwF-JK-64T5ymxPR468Kv9dC3y-LYgkylWdjtjJhKdpRZUGVWA7HgDK872ound9TMepTWts3uITy7kkOmBWabJBLnPHjoI3EhAit66MNvB5A5hfBSXGDqj5GhQv2MZhVAzFSYe-_9GX-673Ny3rNw\",\n
|
|
439
|
+
\ \"width\" : 2048\n },\n {\n \"height\"
|
|
440
|
+
: 480,\n \"html_attributions\" : [ \"From a Google User\" ],\n
|
|
441
|
+
\ \"photo_reference\" : \"CnRqAAAAl7gosH8p_IBwxIa5ddbgzkzqkM4DjGwSQsLPsE3jOnbelXNprRIJTkUBt_EpQYZdYoMP_vgGPmDiJcIDYPHdkRxGJi7PTKc1TB13pEv7M5y3ro8R7Seh0SlS74LmTR0NZ_vA-5CZkEMV_xO9TtllyxIQBz5R_Mx5NIMDnNnOi6VTRhoUQ8PcuoQBgCKc6mfpw4wgJ0JxoTY\",\n
|
|
442
|
+
\ \"width\" : 640\n }\n ],\n \"rating\" : 4.60,\n
|
|
443
|
+
\ \"reference\" : \"CnRsAAAAqBGxXt9xi63ce68WEga39WGClgzoJONFMj9YcPDSO3CIJu7i1cfvsflTqINYAEgZBif3sjUnf9QGPl9vvwC9L1tXFDa6wnIsMEnh6hP8wLQtm4VvWfq0oOACT_5EypBzGnZGwxggQNPinVGxiLMa3xIQPWNG49t_1SnpzQgl4JDaixoULaLv9w98tRsRtKxGiSf3vHzaHcg\",\n
|
|
444
|
+
\ \"reviews\" : [\n {\n \"aspects\" : [\n {\n
|
|
445
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
446
|
+
\ }\n ],\n \"author_name\" : \"Albert Mai\",\n
|
|
447
|
+
\ \"author_url\" : \"https://plus.google.com/106558367962383756670\",\n
|
|
448
|
+
\ \"text\" : \"All Googlers are so nice and friendly. They will
|
|
449
|
+
always answer your questions, open to questions and willing to help you with
|
|
450
|
+
their best. The office locates at a very strategic place - in CBD and has
|
|
451
|
+
wonderful view over the harbor. Really enjoy having lunch outside to enjoy
|
|
452
|
+
the wind and fresh air for inspiration (but watch out for flying dishes because
|
|
453
|
+
of strong wind). However, food is kinda lack of the variety comparing to other
|
|
454
|
+
offices. The plus is food station is almost everywhere which feed you very
|
|
455
|
+
well (be careful of gaining so much weight). There will usually be surprise
|
|
456
|
+
when you work here: Ice Cream, Nexus 7, Chrome notebook, Nexus and many other
|
|
457
|
+
swags. There are a lot of trees inside the building which I really like it
|
|
458
|
+
- so fresh !\",\n \"time\" : 1358249804\n },\n {\n
|
|
459
|
+
\ \"aspects\" : [\n {\n \"rating\"
|
|
460
|
+
: 3,\n \"type\" : \"quality\"\n }\n ],\n
|
|
461
|
+
\ \"author_name\" : \"David Webb\",\n \"author_url\"
|
|
462
|
+
: \"https://plus.google.com/115578224090485355580\",\n \"text\"
|
|
463
|
+
: \"Awesome company! Great culture and food. A fantastic office indeed. Definitely
|
|
464
|
+
deserves the title "Best place to work".\",\n \"time\"
|
|
465
|
+
: 1358233693\n },\n {\n \"aspects\" : [\n {\n
|
|
466
|
+
\ \"rating\" : 3,\n \"type\" : \"quality\"\n
|
|
467
|
+
\ }\n ],\n \"author_name\" : \"Lachlan
|
|
468
|
+
Archibald\",\n \"author_url\" : \"https://plus.google.com/115671446961475717459\",\n
|
|
469
|
+
\ \"text\" : \"Awesome building; many interesting and unique internal
|
|
470
|
+
structures and rooms. There are also a number of facilities including coffee
|
|
471
|
+
machines, rest and relaxation areas and research areas. Staff are extremely
|
|
472
|
+
friendly and willing to answer questions and engage in conversation.\",\n
|
|
473
|
+
\ \"time\" : 1361349581\n },\n {\n \"aspects\"
|
|
474
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
475
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
476
|
+
: \"Cindy Huang\",\n \"author_url\" : \"https://plus.google.com/107550491878142658504\",\n
|
|
477
|
+
\ \"text\" : \"There are few workplaces more desirable to work in
|
|
478
|
+
than Google. The facilities are incredible, and reflect the company's
|
|
479
|
+
dedication to innovation, inspiration and improvement. The interior design
|
|
480
|
+
is fun, flexible and definitely the ideal platform for employers and employees
|
|
481
|
+
alike to foster the great ideas of tomorrow. Should the opportunity arise,
|
|
482
|
+
I would definitely recommend everyone to seize the chance to experience Google
|
|
483
|
+
(and get a tour through those amazing and incredibly thoughtful micro kitchens).\",\n
|
|
484
|
+
\ \"time\" : 1361360490\n },\n {\n \"aspects\"
|
|
485
|
+
: [\n {\n \"rating\" : 3,\n \"type\"
|
|
486
|
+
: \"quality\"\n }\n ],\n \"author_name\"
|
|
487
|
+
: \"Jared Winter\",\n \"author_url\" : \"https://plus.google.com/103549082258031873774\",\n
|
|
488
|
+
\ \"text\" : \"A brilliant atmosphere and welcoming people a great
|
|
489
|
+
place to visit or work. Definitely take a look at their unique reception with
|
|
490
|
+
the tyre swing and fernery.\",\n \"time\" : 1361349311\n }\n
|
|
491
|
+
\ ],\n \"types\" : [ \"establishment\" ],\n \"url\" : \"https://plus.google.com/111840715355681175070/about?hl=en-US\",\n
|
|
492
|
+
\ \"utc_offset\" : 660,\n \"vicinity\" : \"5/48 Pirrama Road, Pyrmont\",\n
|
|
493
|
+
\ \"website\" : \"http://www.google.com.au/\"\n },\n \"status\" :
|
|
494
|
+
\"OK\"\n}\n"
|
|
495
|
+
http_version: '1.1'
|
|
496
|
+
recorded_at: Fri, 22 Mar 2013 11:00:08 GMT
|
|
497
|
+
recorded_with: VCR 2.2.5
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_places
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-03-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: httparty
|
|
@@ -84,6 +84,7 @@ extensions: []
|
|
|
84
84
|
extra_rdoc_files: []
|
|
85
85
|
files:
|
|
86
86
|
- .gitignore
|
|
87
|
+
- .travis.yml
|
|
87
88
|
- Gemfile
|
|
88
89
|
- Gemfile.lock
|
|
89
90
|
- README.rdoc
|
|
@@ -97,11 +98,14 @@ files:
|
|
|
97
98
|
- lib/google_places/review.rb
|
|
98
99
|
- lib/google_places/spot.rb
|
|
99
100
|
- spec/api_key.sample.rb
|
|
101
|
+
- spec/api_key.travis.rb
|
|
100
102
|
- spec/google_places/client_spec.rb
|
|
101
103
|
- spec/google_places/location_spec.rb
|
|
102
104
|
- spec/google_places/request_spec.rb
|
|
103
105
|
- spec/google_places/spot_spec.rb
|
|
104
106
|
- spec/spec_helper.rb
|
|
107
|
+
- spec/vcr_cassettes/premium_list_spots_with_data.yml
|
|
108
|
+
- spec/vcr_cassettes/single_spot.yml
|
|
105
109
|
- spec/vcr_setup.rb
|
|
106
110
|
homepage: https://github.com/marceldegraaf/google_places
|
|
107
111
|
licenses: []
|
|
@@ -129,10 +133,13 @@ specification_version: 3
|
|
|
129
133
|
summary: A Ruby wrapper around the Google Places API.
|
|
130
134
|
test_files:
|
|
131
135
|
- spec/api_key.sample.rb
|
|
136
|
+
- spec/api_key.travis.rb
|
|
132
137
|
- spec/google_places/client_spec.rb
|
|
133
138
|
- spec/google_places/location_spec.rb
|
|
134
139
|
- spec/google_places/request_spec.rb
|
|
135
140
|
- spec/google_places/spot_spec.rb
|
|
136
141
|
- spec/spec_helper.rb
|
|
142
|
+
- spec/vcr_cassettes/premium_list_spots_with_data.yml
|
|
143
|
+
- spec/vcr_cassettes/single_spot.yml
|
|
137
144
|
- spec/vcr_setup.rb
|
|
138
145
|
has_rdoc:
|