cartodb-rb-client 0.3.1 → 0.4.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/Gemfile +2 -2
- data/lib/cartodb-rb-client/cartodb/client/connection/cartodb.rb +1 -1
- data/lib/cartodb-rb-client/cartodb/model/base.rb +1 -1
- data/lib/cartodb-rb-client/cartodb/model/getters.rb +6 -9
- data/lib/cartodb-rb-client/cartodb/model/schema.rb +13 -2
- data/lib/cartodb-rb-client/cartodb/model/setters.rb +5 -9
- data/lib/cartodb-rb-client/version.rb +1 -1
- data/spec/client_spec.rb +3 -3
- data/spec/fixtures/cassettes/CartoDB_client/should_add_and_remove_colums_in_a_previously_created_table.yml +376 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_allow_reserved_words_in_columns_names.yml +121 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_change_a_previously_created_column.yml +174 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_and_get_its_table_definition.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_forcing_the_schema_and_get_its_table_definition.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_from_a_csv_file.yml +1971 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTILINESTRING_type_geometry.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTIPOLYGON_type_geometry.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_POINT_type_geometry.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_delete_a_table_s_row.yml +221 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_drop_a_table.yml +278 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_escape_properly_input_data_in_insert_queries.yml +121 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_execute_a_select_query_and_return_results.yml +615 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_get_a_table_by_its_name.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_import_any_kind_of_data_file.yml +6612 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_insert_a_row_in_a_table.yml +121 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_paginate_records.yml +2624 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_rename_an_existing_table.yml +123 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_errors_on_invalid_queries.yml +59 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_nil_when_requesting_a_table_which_does_not_exists.yml +68 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_user_s_table_list.yml +176 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_update_a_row_in_a_table.yml +170 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_destroy_a_previously_created_record.yml +1398 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_initialize_attributes_of_the_model_without_persisting_them.yml +223 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_save_method.yml +1406 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_static_create_method.yml +1299 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_update_an_existing_record.yml +2028 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_add_more_columns_if_the_table_previously_exists.yml +990 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_contain_an_array_of_columns.yml +1443 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_a_table_with_custom_name_if_specified.yml +270 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_custom_data_types_columns.yml +421 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_polygon_type_geometry_columns.yml +272 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_the_table_in_cartodb_if_it_doesn_t_exists.yml +780 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_CartoDB_Client_instance_as_a_connection_object.yml +682 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_table_name.yml +727 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_return_only_data_columns.yml +829 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_allow_to_select_the_specified_fiels.yml +17953 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_count_all_records.yml +15596 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_find_a_record_by_its_id.yml +15197 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_order_results.yml +16439 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_paginate_results.yml +24501 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_return_all_records_paginated.yml +16488 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_search_records_by_certain_filters.yml +4950 -0
- data/spec/fixtures/cassettes/cartodb_spec_models.yml +2467 -0
- data/spec/fixtures/cassettes/clean_tables.yml +266 -0
- data/spec/model/data_spec.rb +6 -6
- data/spec/model/metadata_spec.rb +11 -3
- data/spec/model/scopes_spec.rb +2 -2
- data/spec/model_specs_helper.rb +2 -0
- data/spec/spec_helper.rb +18 -5
- data/spec/support/cartodb_factories.rb +3 -3
- data/spec/support/cartodb_helpers.rb +1 -1
- data/spec/support/cartodb_models.rb +26 -19
- metadata +97 -7
- data/spec/support/data/ngos.xlsx +0 -0
@@ -0,0 +1,1398 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables?
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- &70259176453560 !ruby/object:MIME::Type
|
12
|
+
content_type: application/json
|
13
|
+
raw_media_type: application
|
14
|
+
raw_sub_type: json
|
15
|
+
simplified: application/json
|
16
|
+
media_type: application
|
17
|
+
sub_type: json
|
18
|
+
extensions:
|
19
|
+
- json
|
20
|
+
encoding: 8bit
|
21
|
+
system: !!null
|
22
|
+
registered: true
|
23
|
+
url:
|
24
|
+
- IANA
|
25
|
+
- RFC4627
|
26
|
+
obsolete: !!null
|
27
|
+
docs: !!null
|
28
|
+
Authorization:
|
29
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="fhERU9y33mvTErdafp79huhE1eQwdm5QtInPGykM",
|
30
|
+
oauth_signature="i6Pn5ZJ%2FkxnU9lA4OYedmR0JMAQ%3D", oauth_signature_method="HMAC-SHA1",
|
31
|
+
oauth_timestamp="1337784761", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
32
|
+
oauth_version="1.0"
|
33
|
+
response:
|
34
|
+
status:
|
35
|
+
code: 200
|
36
|
+
message: OK
|
37
|
+
headers:
|
38
|
+
Server:
|
39
|
+
- nginx
|
40
|
+
Date:
|
41
|
+
- Wed, 23 May 2012 14:52:41 GMT
|
42
|
+
Content-Type:
|
43
|
+
- application/json; charset=utf-8
|
44
|
+
Transfer-Encoding:
|
45
|
+
- chunked
|
46
|
+
Connection:
|
47
|
+
- keep-alive
|
48
|
+
Vary:
|
49
|
+
- Accept-Encoding
|
50
|
+
Status:
|
51
|
+
- 200 OK
|
52
|
+
Etag:
|
53
|
+
- ! '"f21160ca256cb20f0aab61dcae322401"'
|
54
|
+
Cache-Control:
|
55
|
+
- max-age=0, private, must-revalidate
|
56
|
+
X-Ua-Compatible:
|
57
|
+
- IE=Edge,chrome=1
|
58
|
+
Set-Cookie:
|
59
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZTBmNmY0NTdhMWE1YjFkYzZiODIyMmZjOWJkMTAyNDhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--fef2feb551dc2907a5a1576f40ce7317f4598f71;
|
60
|
+
domain=.cartodb.com; path=/; HttpOnly
|
61
|
+
X-Runtime:
|
62
|
+
- '0.013169'
|
63
|
+
Content-Encoding:
|
64
|
+
- gzip
|
65
|
+
body:
|
66
|
+
encoding: ASCII-8BIT
|
67
|
+
string: ! '{"total_entries":1,"tables":[{"id":4650,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]],"updated_at":"2012-05-23T16:52:35+02:00","rows_counted":0}]}'
|
68
|
+
http_version: '1.1'
|
69
|
+
recorded_at: Wed, 23 May 2012 14:52:41 GMT
|
70
|
+
- request:
|
71
|
+
method: delete
|
72
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
73
|
+
body:
|
74
|
+
encoding: US-ASCII
|
75
|
+
string: ''
|
76
|
+
headers:
|
77
|
+
Accept:
|
78
|
+
- *70259176453560
|
79
|
+
Authorization:
|
80
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="smTUJgyMjCOjpFUs6PbcDQmfhrV0wh56JslhvILmg4",
|
81
|
+
oauth_signature="bViQ3AYAR6eqdNXxqazNLhWzdKE%3D", oauth_signature_method="HMAC-SHA1",
|
82
|
+
oauth_timestamp="1337784761", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
83
|
+
oauth_version="1.0"
|
84
|
+
response:
|
85
|
+
status:
|
86
|
+
code: 200
|
87
|
+
message: OK
|
88
|
+
headers:
|
89
|
+
Server:
|
90
|
+
- nginx
|
91
|
+
Date:
|
92
|
+
- Wed, 23 May 2012 14:52:41 GMT
|
93
|
+
Content-Type:
|
94
|
+
- application/json; charset=utf-8
|
95
|
+
Transfer-Encoding:
|
96
|
+
- chunked
|
97
|
+
Connection:
|
98
|
+
- keep-alive
|
99
|
+
Vary:
|
100
|
+
- Accept-Encoding
|
101
|
+
Status:
|
102
|
+
- 200 OK
|
103
|
+
Cache-Control:
|
104
|
+
- no-cache
|
105
|
+
X-Ua-Compatible:
|
106
|
+
- IE=Edge,chrome=1
|
107
|
+
Set-Cookie:
|
108
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTRkZTBjNWY0NjIyODMzZmQyYTg3ODIxMjE5OGQ5ZjBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--45e7b28d42a48d10b27856498497070f513d961d;
|
109
|
+
domain=.cartodb.com; path=/; HttpOnly
|
110
|
+
X-Runtime:
|
111
|
+
- '0.280942'
|
112
|
+
Content-Encoding:
|
113
|
+
- gzip
|
114
|
+
body:
|
115
|
+
encoding: ASCII-8BIT
|
116
|
+
string: ! ' '
|
117
|
+
http_version: '1.1'
|
118
|
+
recorded_at: Wed, 23 May 2012 14:52:41 GMT
|
119
|
+
- request:
|
120
|
+
method: get
|
121
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
122
|
+
body:
|
123
|
+
encoding: US-ASCII
|
124
|
+
string: ''
|
125
|
+
headers:
|
126
|
+
Accept:
|
127
|
+
- *70259176453560
|
128
|
+
Authorization:
|
129
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="mSqkKGhLg3dNBZNeFoEoF5JIeTgMjsKOcUgfN8H7M8",
|
130
|
+
oauth_signature="lR863dpY7aY7HBJnxwqnS63Xxx4%3D", oauth_signature_method="HMAC-SHA1",
|
131
|
+
oauth_timestamp="1337784761", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
132
|
+
oauth_version="1.0"
|
133
|
+
response:
|
134
|
+
status:
|
135
|
+
code: 404
|
136
|
+
message: Not Found
|
137
|
+
headers:
|
138
|
+
Server:
|
139
|
+
- nginx
|
140
|
+
Date:
|
141
|
+
- Wed, 23 May 2012 14:52:41 GMT
|
142
|
+
Content-Type:
|
143
|
+
- application/json; charset=utf-8
|
144
|
+
Transfer-Encoding:
|
145
|
+
- chunked
|
146
|
+
Connection:
|
147
|
+
- keep-alive
|
148
|
+
Vary:
|
149
|
+
- Accept-Encoding
|
150
|
+
Status:
|
151
|
+
- 404 Not Found
|
152
|
+
Cache-Control:
|
153
|
+
- no-cache
|
154
|
+
X-Ua-Compatible:
|
155
|
+
- IE=Edge,chrome=1
|
156
|
+
Set-Cookie:
|
157
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZGUwNzUyYmYwOTU1NWE0NjVkMGRjZmU2MzZlNDliNzJJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--5d689d3e4c0e1f177fe3140da937f98c7d5eb711;
|
158
|
+
domain=.cartodb.com; path=/; HttpOnly
|
159
|
+
X-Runtime:
|
160
|
+
- '0.008989'
|
161
|
+
Content-Encoding:
|
162
|
+
- gzip
|
163
|
+
body:
|
164
|
+
encoding: ASCII-8BIT
|
165
|
+
string: ! ' '
|
166
|
+
http_version: '1.1'
|
167
|
+
recorded_at: Wed, 23 May 2012 14:52:41 GMT
|
168
|
+
- request:
|
169
|
+
method: get
|
170
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
171
|
+
body:
|
172
|
+
encoding: US-ASCII
|
173
|
+
string: ''
|
174
|
+
headers:
|
175
|
+
Accept:
|
176
|
+
- *70259176453560
|
177
|
+
Authorization:
|
178
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Stgdak7rx3zPMOX67Dh2N2pfSn6tUdCrAh21sHCnI",
|
179
|
+
oauth_signature="ssgQ1yCmd4f7PmUpOvAeN6vuYbA%3D", oauth_signature_method="HMAC-SHA1",
|
180
|
+
oauth_timestamp="1337784761", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
181
|
+
oauth_version="1.0"
|
182
|
+
response:
|
183
|
+
status:
|
184
|
+
code: 404
|
185
|
+
message: Not Found
|
186
|
+
headers:
|
187
|
+
Server:
|
188
|
+
- nginx
|
189
|
+
Date:
|
190
|
+
- Wed, 23 May 2012 14:52:42 GMT
|
191
|
+
Content-Type:
|
192
|
+
- application/json; charset=utf-8
|
193
|
+
Transfer-Encoding:
|
194
|
+
- chunked
|
195
|
+
Connection:
|
196
|
+
- keep-alive
|
197
|
+
Vary:
|
198
|
+
- Accept-Encoding
|
199
|
+
Status:
|
200
|
+
- 404 Not Found
|
201
|
+
Cache-Control:
|
202
|
+
- no-cache
|
203
|
+
X-Ua-Compatible:
|
204
|
+
- IE=Edge,chrome=1
|
205
|
+
Set-Cookie:
|
206
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTI0OWU4ZTZhNmM3ZjViY2U3NDI1YjdkM2NmOWU5NThJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--5cd8479fd032337ea35ff6dea542d3b682140d06;
|
207
|
+
domain=.cartodb.com; path=/; HttpOnly
|
208
|
+
X-Runtime:
|
209
|
+
- '0.009801'
|
210
|
+
Content-Encoding:
|
211
|
+
- gzip
|
212
|
+
body:
|
213
|
+
encoding: ASCII-8BIT
|
214
|
+
string: ! ' '
|
215
|
+
http_version: '1.1'
|
216
|
+
recorded_at: Wed, 23 May 2012 14:52:42 GMT
|
217
|
+
- request:
|
218
|
+
method: post
|
219
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
|
220
|
+
body:
|
221
|
+
encoding: US-ASCII
|
222
|
+
string: ''
|
223
|
+
headers:
|
224
|
+
Accept:
|
225
|
+
- *70259176453560
|
226
|
+
Authorization:
|
227
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="9YLNdfIuX6eVF7jMIPNGxWRTH5gjWbvE9PFTRE9nfw",
|
228
|
+
oauth_signature="8V2Kc0ufnSbnoTGZHgoRqAyawyg%3D", oauth_signature_method="HMAC-SHA1",
|
229
|
+
oauth_timestamp="1337784762", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
230
|
+
oauth_version="1.0"
|
231
|
+
response:
|
232
|
+
status:
|
233
|
+
code: 200
|
234
|
+
message: OK
|
235
|
+
headers:
|
236
|
+
Server:
|
237
|
+
- nginx
|
238
|
+
Date:
|
239
|
+
- Wed, 23 May 2012 14:52:42 GMT
|
240
|
+
Content-Type:
|
241
|
+
- application/json; charset=utf-8
|
242
|
+
Transfer-Encoding:
|
243
|
+
- chunked
|
244
|
+
Connection:
|
245
|
+
- keep-alive
|
246
|
+
Vary:
|
247
|
+
- Accept-Encoding
|
248
|
+
Status:
|
249
|
+
- 200 OK
|
250
|
+
Location:
|
251
|
+
- /tables/4651
|
252
|
+
Etag:
|
253
|
+
- ! '"d7f5196b7c75e28584bd14f47cb9fe4a"'
|
254
|
+
Cache-Control:
|
255
|
+
- max-age=0, private, must-revalidate
|
256
|
+
X-Ua-Compatible:
|
257
|
+
- IE=Edge,chrome=1
|
258
|
+
Set-Cookie:
|
259
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMDYzMDRjZmNlNjJiYTRkM2I1NzMzOGI1ZTVkNWJlOWVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--b35a5e0da13a9be707cc77d14819aef2a9de9208;
|
260
|
+
domain=.cartodb.com; path=/; HttpOnly
|
261
|
+
X-Runtime:
|
262
|
+
- '0.707750'
|
263
|
+
Content-Encoding:
|
264
|
+
- gzip
|
265
|
+
body:
|
266
|
+
encoding: ASCII-8BIT
|
267
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
|
268
|
+
http_version: '1.1'
|
269
|
+
recorded_at: Wed, 23 May 2012 14:52:42 GMT
|
270
|
+
- request:
|
271
|
+
method: post
|
272
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
273
|
+
body:
|
274
|
+
encoding: US-ASCII
|
275
|
+
string: ''
|
276
|
+
headers:
|
277
|
+
Accept:
|
278
|
+
- *70259176453560
|
279
|
+
Authorization:
|
280
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="5hBlAaTeWobwqYJ9Ln66hp0GUSWKJqWhhjvijgBo4",
|
281
|
+
oauth_signature="hUgWuDCScxbQaBNpLjXqTH8eIGY%3D", oauth_signature_method="HMAC-SHA1",
|
282
|
+
oauth_timestamp="1337784762", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
283
|
+
oauth_version="1.0"
|
284
|
+
response:
|
285
|
+
status:
|
286
|
+
code: 200
|
287
|
+
message: OK
|
288
|
+
headers:
|
289
|
+
Server:
|
290
|
+
- nginx
|
291
|
+
Date:
|
292
|
+
- Wed, 23 May 2012 14:52:42 GMT
|
293
|
+
Content-Type:
|
294
|
+
- application/json; charset=utf-8
|
295
|
+
Transfer-Encoding:
|
296
|
+
- chunked
|
297
|
+
Connection:
|
298
|
+
- keep-alive
|
299
|
+
Vary:
|
300
|
+
- Accept-Encoding
|
301
|
+
Status:
|
302
|
+
- 200 OK
|
303
|
+
Etag:
|
304
|
+
- ! '"1d8ec3575e09ff60ecad35605669b22c"'
|
305
|
+
Cache-Control:
|
306
|
+
- max-age=0, private, must-revalidate
|
307
|
+
X-Ua-Compatible:
|
308
|
+
- IE=Edge,chrome=1
|
309
|
+
Set-Cookie:
|
310
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMGMxNmU5ZTkyYWFmNTQ1NWFlNTYxMjQxNTBiYjYzZDFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--4ca0d5025c5c96e05cab456be4e944976e77e6a4;
|
311
|
+
domain=.cartodb.com; path=/; HttpOnly
|
312
|
+
X-Runtime:
|
313
|
+
- '0.110879'
|
314
|
+
Content-Encoding:
|
315
|
+
- gzip
|
316
|
+
body:
|
317
|
+
encoding: ASCII-8BIT
|
318
|
+
string: ! '{"name":"length","type":"text","cartodb_type":"string"}'
|
319
|
+
http_version: '1.1'
|
320
|
+
recorded_at: Wed, 23 May 2012 14:52:42 GMT
|
321
|
+
- request:
|
322
|
+
method: post
|
323
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
324
|
+
body:
|
325
|
+
encoding: US-ASCII
|
326
|
+
string: ''
|
327
|
+
headers:
|
328
|
+
Accept:
|
329
|
+
- *70259176453560
|
330
|
+
Authorization:
|
331
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="5a88wOI0zBWCz1fqFzFhOmxW2lJ6iTLW3s6CC25Ql9I",
|
332
|
+
oauth_signature="Gdkxf%2F5eGUgEfReJvKbclQ%2By0rU%3D", oauth_signature_method="HMAC-SHA1",
|
333
|
+
oauth_timestamp="1337784762", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
334
|
+
oauth_version="1.0"
|
335
|
+
response:
|
336
|
+
status:
|
337
|
+
code: 200
|
338
|
+
message: OK
|
339
|
+
headers:
|
340
|
+
Server:
|
341
|
+
- nginx
|
342
|
+
Date:
|
343
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
344
|
+
Content-Type:
|
345
|
+
- application/json; charset=utf-8
|
346
|
+
Transfer-Encoding:
|
347
|
+
- chunked
|
348
|
+
Connection:
|
349
|
+
- keep-alive
|
350
|
+
Vary:
|
351
|
+
- Accept-Encoding
|
352
|
+
Status:
|
353
|
+
- 200 OK
|
354
|
+
Etag:
|
355
|
+
- ! '"e82b080654b5df6f5d5f582aae439d58"'
|
356
|
+
Cache-Control:
|
357
|
+
- max-age=0, private, must-revalidate
|
358
|
+
X-Ua-Compatible:
|
359
|
+
- IE=Edge,chrome=1
|
360
|
+
Set-Cookie:
|
361
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMzQ4YjY2NTU1NmUwYTU2YjhhYzE0ZWJmNTkxYmU5MzhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--2c1ce952a9bba2a151b03673f3d44aaff8d24745;
|
362
|
+
domain=.cartodb.com; path=/; HttpOnly
|
363
|
+
X-Runtime:
|
364
|
+
- '0.035330'
|
365
|
+
Content-Encoding:
|
366
|
+
- gzip
|
367
|
+
body:
|
368
|
+
encoding: ASCII-8BIT
|
369
|
+
string: ! '{"name":"width","type":"text","cartodb_type":"string"}'
|
370
|
+
http_version: '1.1'
|
371
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
372
|
+
- request:
|
373
|
+
method: post
|
374
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
375
|
+
body:
|
376
|
+
encoding: US-ASCII
|
377
|
+
string: ''
|
378
|
+
headers:
|
379
|
+
Accept:
|
380
|
+
- *70259176453560
|
381
|
+
Authorization:
|
382
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="W7vmpjBumjTgycIyyWav6quDLxCgbAszd8R8npBQAY",
|
383
|
+
oauth_signature="DxAYdMjNdhiHBy4BnHD77DKsxvI%3D", oauth_signature_method="HMAC-SHA1",
|
384
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
385
|
+
oauth_version="1.0"
|
386
|
+
response:
|
387
|
+
status:
|
388
|
+
code: 200
|
389
|
+
message: OK
|
390
|
+
headers:
|
391
|
+
Server:
|
392
|
+
- nginx
|
393
|
+
Date:
|
394
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
395
|
+
Content-Type:
|
396
|
+
- application/json; charset=utf-8
|
397
|
+
Transfer-Encoding:
|
398
|
+
- chunked
|
399
|
+
Connection:
|
400
|
+
- keep-alive
|
401
|
+
Vary:
|
402
|
+
- Accept-Encoding
|
403
|
+
Status:
|
404
|
+
- 200 OK
|
405
|
+
Etag:
|
406
|
+
- ! '"72d9dc37fa77b74502b76efdaff059d5"'
|
407
|
+
Cache-Control:
|
408
|
+
- max-age=0, private, must-revalidate
|
409
|
+
X-Ua-Compatible:
|
410
|
+
- IE=Edge,chrome=1
|
411
|
+
Set-Cookie:
|
412
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTYyYjcxNDNkODZkOTliMWNhYTkyMzQyNDU0NTVjNDNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--0fbfc20a75acc44c909225bb24543b2f28ec0d22;
|
413
|
+
domain=.cartodb.com; path=/; HttpOnly
|
414
|
+
X-Runtime:
|
415
|
+
- '0.103593'
|
416
|
+
Content-Encoding:
|
417
|
+
- gzip
|
418
|
+
body:
|
419
|
+
encoding: ASCII-8BIT
|
420
|
+
string: ! '{"name":"longest_straight","type":"text","cartodb_type":"string"}'
|
421
|
+
http_version: '1.1'
|
422
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
423
|
+
- request:
|
424
|
+
method: post
|
425
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
426
|
+
body:
|
427
|
+
encoding: US-ASCII
|
428
|
+
string: ''
|
429
|
+
headers:
|
430
|
+
Accept:
|
431
|
+
- *70259176453560
|
432
|
+
Authorization:
|
433
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="dC2olm94K1nw6shLGAM28XmSu7ryrKXijo30ILKLc",
|
434
|
+
oauth_signature="43tHD9%2FXoTM8VkP0HGuF3ZpT%2FKo%3D", oauth_signature_method="HMAC-SHA1",
|
435
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
436
|
+
oauth_version="1.0"
|
437
|
+
response:
|
438
|
+
status:
|
439
|
+
code: 200
|
440
|
+
message: OK
|
441
|
+
headers:
|
442
|
+
Server:
|
443
|
+
- nginx
|
444
|
+
Date:
|
445
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
446
|
+
Content-Type:
|
447
|
+
- application/json; charset=utf-8
|
448
|
+
Transfer-Encoding:
|
449
|
+
- chunked
|
450
|
+
Connection:
|
451
|
+
- keep-alive
|
452
|
+
Vary:
|
453
|
+
- Accept-Encoding
|
454
|
+
Status:
|
455
|
+
- 200 OK
|
456
|
+
Etag:
|
457
|
+
- ! '"b602480fcc0e512dc48fc82a407d693c"'
|
458
|
+
Cache-Control:
|
459
|
+
- max-age=0, private, must-revalidate
|
460
|
+
X-Ua-Compatible:
|
461
|
+
- IE=Edge,chrome=1
|
462
|
+
Set-Cookie:
|
463
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMmM0OTkwOWMwZmFjOWZjNGExYWUxNjVkNGI2MDhhZDlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--760cc03b36fc81278fc53feae72782ddfd618eff;
|
464
|
+
domain=.cartodb.com; path=/; HttpOnly
|
465
|
+
X-Runtime:
|
466
|
+
- '0.129574'
|
467
|
+
Content-Encoding:
|
468
|
+
- gzip
|
469
|
+
body:
|
470
|
+
encoding: ASCII-8BIT
|
471
|
+
string: ! '{"name":"left_corners","type":"numeric","cartodb_type":"number"}'
|
472
|
+
http_version: '1.1'
|
473
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
474
|
+
- request:
|
475
|
+
method: post
|
476
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
477
|
+
body:
|
478
|
+
encoding: US-ASCII
|
479
|
+
string: ''
|
480
|
+
headers:
|
481
|
+
Accept:
|
482
|
+
- *70259176453560
|
483
|
+
Authorization:
|
484
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="AHipML3TXVrdfF4EFnRcY9mSXph5NJ18NKp0mx54I",
|
485
|
+
oauth_signature="obRHt008i5WFmOgKWK6P9Y5lqR4%3D", oauth_signature_method="HMAC-SHA1",
|
486
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
487
|
+
oauth_version="1.0"
|
488
|
+
response:
|
489
|
+
status:
|
490
|
+
code: 200
|
491
|
+
message: OK
|
492
|
+
headers:
|
493
|
+
Server:
|
494
|
+
- nginx
|
495
|
+
Date:
|
496
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
497
|
+
Content-Type:
|
498
|
+
- application/json; charset=utf-8
|
499
|
+
Transfer-Encoding:
|
500
|
+
- chunked
|
501
|
+
Connection:
|
502
|
+
- keep-alive
|
503
|
+
Vary:
|
504
|
+
- Accept-Encoding
|
505
|
+
Status:
|
506
|
+
- 200 OK
|
507
|
+
Etag:
|
508
|
+
- ! '"2830789a168cdfba40b91cbc98711d74"'
|
509
|
+
Cache-Control:
|
510
|
+
- max-age=0, private, must-revalidate
|
511
|
+
X-Ua-Compatible:
|
512
|
+
- IE=Edge,chrome=1
|
513
|
+
Set-Cookie:
|
514
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlODk5Yzk2YmMxMDdiNTVhNjk5Yzk3ZGJhNWFmN2E4ODBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--948d7ffbc414f5b908b7307d24d623cbc5aa00eb;
|
515
|
+
domain=.cartodb.com; path=/; HttpOnly
|
516
|
+
X-Runtime:
|
517
|
+
- '0.059702'
|
518
|
+
Content-Encoding:
|
519
|
+
- gzip
|
520
|
+
body:
|
521
|
+
encoding: ASCII-8BIT
|
522
|
+
string: ! '{"name":"right_corners","type":"numeric","cartodb_type":"number"}'
|
523
|
+
http_version: '1.1'
|
524
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
525
|
+
- request:
|
526
|
+
method: post
|
527
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
528
|
+
body:
|
529
|
+
encoding: US-ASCII
|
530
|
+
string: ''
|
531
|
+
headers:
|
532
|
+
Accept:
|
533
|
+
- *70259176453560
|
534
|
+
Authorization:
|
535
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="JgceZKwQJO7YceRpd4SLlEF2TIjH6fSRKN3pvhXTeA",
|
536
|
+
oauth_signature="Yy3XmeIptTe%2FJAq2pSCKQzBeOTw%3D", oauth_signature_method="HMAC-SHA1",
|
537
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
538
|
+
oauth_version="1.0"
|
539
|
+
response:
|
540
|
+
status:
|
541
|
+
code: 200
|
542
|
+
message: OK
|
543
|
+
headers:
|
544
|
+
Server:
|
545
|
+
- nginx
|
546
|
+
Date:
|
547
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
548
|
+
Content-Type:
|
549
|
+
- application/json; charset=utf-8
|
550
|
+
Transfer-Encoding:
|
551
|
+
- chunked
|
552
|
+
Connection:
|
553
|
+
- keep-alive
|
554
|
+
Vary:
|
555
|
+
- Accept-Encoding
|
556
|
+
Status:
|
557
|
+
- 200 OK
|
558
|
+
Etag:
|
559
|
+
- ! '"b4f11f170f581e46523ca91965371c28"'
|
560
|
+
Cache-Control:
|
561
|
+
- max-age=0, private, must-revalidate
|
562
|
+
X-Ua-Compatible:
|
563
|
+
- IE=Edge,chrome=1
|
564
|
+
Set-Cookie:
|
565
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlODRlNzcxZGFkZDBmOTk0MzEzYWEyNTIyNDRhZDQ1M2NJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--f3d8d1f8a938b2cb1b4a52e57eb48c4b6fa2b73d;
|
566
|
+
domain=.cartodb.com; path=/; HttpOnly
|
567
|
+
X-Runtime:
|
568
|
+
- '0.052136'
|
569
|
+
Content-Encoding:
|
570
|
+
- gzip
|
571
|
+
body:
|
572
|
+
encoding: ASCII-8BIT
|
573
|
+
string: ! '{"name":"constructed","type":"timestamp","cartodb_type":"date"}'
|
574
|
+
http_version: '1.1'
|
575
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
576
|
+
- request:
|
577
|
+
method: post
|
578
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
|
579
|
+
body:
|
580
|
+
encoding: US-ASCII
|
581
|
+
string: ''
|
582
|
+
headers:
|
583
|
+
Accept:
|
584
|
+
- *70259176453560
|
585
|
+
Authorization:
|
586
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="28v63YmSbN8yLLgwnWI9iF0S66eVUBjIj4mJwfeUWck",
|
587
|
+
oauth_signature="zJp3bJLiIrUDdECqEIWXm9RC7mc%3D", oauth_signature_method="HMAC-SHA1",
|
588
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
589
|
+
oauth_version="1.0"
|
590
|
+
response:
|
591
|
+
status:
|
592
|
+
code: 200
|
593
|
+
message: OK
|
594
|
+
headers:
|
595
|
+
Server:
|
596
|
+
- nginx
|
597
|
+
Date:
|
598
|
+
- Wed, 23 May 2012 14:52:43 GMT
|
599
|
+
Content-Type:
|
600
|
+
- application/json; charset=utf-8
|
601
|
+
Transfer-Encoding:
|
602
|
+
- chunked
|
603
|
+
Connection:
|
604
|
+
- keep-alive
|
605
|
+
Vary:
|
606
|
+
- Accept-Encoding
|
607
|
+
Status:
|
608
|
+
- 200 OK
|
609
|
+
Etag:
|
610
|
+
- ! '"5b673b3f4b869a800810f0a965941052"'
|
611
|
+
Cache-Control:
|
612
|
+
- max-age=0, private, must-revalidate
|
613
|
+
X-Ua-Compatible:
|
614
|
+
- IE=Edge,chrome=1
|
615
|
+
Set-Cookie:
|
616
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNmU1ZTE5Mjk5MGUxNTEyZGQ2MjE4MThlYWVhMGJjMWFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--7076dc7c8d476cd6d859f01be32b07b32dc50fa0;
|
617
|
+
domain=.cartodb.com; path=/; HttpOnly
|
618
|
+
X-Runtime:
|
619
|
+
- '0.068397'
|
620
|
+
Content-Encoding:
|
621
|
+
- gzip
|
622
|
+
body:
|
623
|
+
encoding: ASCII-8BIT
|
624
|
+
string: ! '{"name":"modified","type":"timestamp","cartodb_type":"date"}'
|
625
|
+
http_version: '1.1'
|
626
|
+
recorded_at: Wed, 23 May 2012 14:52:43 GMT
|
627
|
+
- request:
|
628
|
+
method: get
|
629
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
630
|
+
body:
|
631
|
+
encoding: US-ASCII
|
632
|
+
string: ''
|
633
|
+
headers:
|
634
|
+
Accept:
|
635
|
+
- *70259176453560
|
636
|
+
Authorization:
|
637
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="9ACUIjLnoRHFRBIpJ9RxAcsegfgJaWKA0ABcU36Bu4s",
|
638
|
+
oauth_signature="NlbjGMTn8rLrZXUVQaeWXRSPloU%3D", oauth_signature_method="HMAC-SHA1",
|
639
|
+
oauth_timestamp="1337784763", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
640
|
+
oauth_version="1.0"
|
641
|
+
response:
|
642
|
+
status:
|
643
|
+
code: 200
|
644
|
+
message: OK
|
645
|
+
headers:
|
646
|
+
Server:
|
647
|
+
- nginx
|
648
|
+
Date:
|
649
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
650
|
+
Content-Type:
|
651
|
+
- application/json; charset=utf-8
|
652
|
+
Transfer-Encoding:
|
653
|
+
- chunked
|
654
|
+
Connection:
|
655
|
+
- keep-alive
|
656
|
+
Vary:
|
657
|
+
- Accept-Encoding
|
658
|
+
Status:
|
659
|
+
- 200 OK
|
660
|
+
Etag:
|
661
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
662
|
+
Cache-Control:
|
663
|
+
- max-age=0, private, must-revalidate
|
664
|
+
X-Ua-Compatible:
|
665
|
+
- IE=Edge,chrome=1
|
666
|
+
Set-Cookie:
|
667
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZTNhZGYwODE3YTU5MGM1ZDVjNDdjODgyN2E2ODVkZWVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--5602f933d2ce6ee6775afea0888d6aed40fd6e48;
|
668
|
+
domain=.cartodb.com; path=/; HttpOnly
|
669
|
+
X-Runtime:
|
670
|
+
- '0.017354'
|
671
|
+
Content-Encoding:
|
672
|
+
- gzip
|
673
|
+
body:
|
674
|
+
encoding: ASCII-8BIT
|
675
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
676
|
+
http_version: '1.1'
|
677
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
678
|
+
- request:
|
679
|
+
method: get
|
680
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
681
|
+
body:
|
682
|
+
encoding: US-ASCII
|
683
|
+
string: ''
|
684
|
+
headers:
|
685
|
+
Accept:
|
686
|
+
- *70259176453560
|
687
|
+
Authorization:
|
688
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="42Ka8C7phYjZSVpXOolIeBPAIiUJsAs0DyDHcF2qM",
|
689
|
+
oauth_signature="ls%2BopjT1Y3eWKMrXVwAl154QLiA%3D", oauth_signature_method="HMAC-SHA1",
|
690
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
691
|
+
oauth_version="1.0"
|
692
|
+
response:
|
693
|
+
status:
|
694
|
+
code: 200
|
695
|
+
message: OK
|
696
|
+
headers:
|
697
|
+
Server:
|
698
|
+
- nginx
|
699
|
+
Date:
|
700
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
701
|
+
Content-Type:
|
702
|
+
- application/json; charset=utf-8
|
703
|
+
Transfer-Encoding:
|
704
|
+
- chunked
|
705
|
+
Connection:
|
706
|
+
- keep-alive
|
707
|
+
Vary:
|
708
|
+
- Accept-Encoding
|
709
|
+
Status:
|
710
|
+
- 200 OK
|
711
|
+
Etag:
|
712
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
713
|
+
Cache-Control:
|
714
|
+
- max-age=0, private, must-revalidate
|
715
|
+
X-Ua-Compatible:
|
716
|
+
- IE=Edge,chrome=1
|
717
|
+
Set-Cookie:
|
718
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYzZmMGU3YzFmMjljZjkzYWY0MWVkNDlhN2MxODA5MTRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--8818962453fda9ed66541fc3e0c1de613780314c;
|
719
|
+
domain=.cartodb.com; path=/; HttpOnly
|
720
|
+
X-Runtime:
|
721
|
+
- '0.017473'
|
722
|
+
Content-Encoding:
|
723
|
+
- gzip
|
724
|
+
body:
|
725
|
+
encoding: ASCII-8BIT
|
726
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
727
|
+
http_version: '1.1'
|
728
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
729
|
+
- request:
|
730
|
+
method: get
|
731
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
732
|
+
body:
|
733
|
+
encoding: US-ASCII
|
734
|
+
string: ''
|
735
|
+
headers:
|
736
|
+
Accept:
|
737
|
+
- *70259176453560
|
738
|
+
Authorization:
|
739
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="LAcfBVzvARcZqpzUgaPsB4YkgC0G73q9F5XNapQ44",
|
740
|
+
oauth_signature="R8ASM6xyaBxyFgQqjR%2BgOVPV3eA%3D", oauth_signature_method="HMAC-SHA1",
|
741
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
742
|
+
oauth_version="1.0"
|
743
|
+
response:
|
744
|
+
status:
|
745
|
+
code: 200
|
746
|
+
message: OK
|
747
|
+
headers:
|
748
|
+
Server:
|
749
|
+
- nginx
|
750
|
+
Date:
|
751
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
752
|
+
Content-Type:
|
753
|
+
- application/json; charset=utf-8
|
754
|
+
Transfer-Encoding:
|
755
|
+
- chunked
|
756
|
+
Connection:
|
757
|
+
- keep-alive
|
758
|
+
Vary:
|
759
|
+
- Accept-Encoding
|
760
|
+
Status:
|
761
|
+
- 200 OK
|
762
|
+
Etag:
|
763
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
764
|
+
Cache-Control:
|
765
|
+
- max-age=0, private, must-revalidate
|
766
|
+
X-Ua-Compatible:
|
767
|
+
- IE=Edge,chrome=1
|
768
|
+
Set-Cookie:
|
769
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYTNjMmEyNGU2ZWM3MjY1YjNhNzY4ZmJlOWNhZWI5NDBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--c1129691cde8bbdb3f47c339832cc7c1d47a42ca;
|
770
|
+
domain=.cartodb.com; path=/; HttpOnly
|
771
|
+
X-Runtime:
|
772
|
+
- '0.017125'
|
773
|
+
Content-Encoding:
|
774
|
+
- gzip
|
775
|
+
body:
|
776
|
+
encoding: ASCII-8BIT
|
777
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
778
|
+
http_version: '1.1'
|
779
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
780
|
+
- request:
|
781
|
+
method: get
|
782
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
783
|
+
body:
|
784
|
+
encoding: US-ASCII
|
785
|
+
string: ''
|
786
|
+
headers:
|
787
|
+
Accept:
|
788
|
+
- *70259176453560
|
789
|
+
Authorization:
|
790
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="sxlnIp4BnT2RJLnrxoMsvpnm6sK7E2aYYPOW1bXBsY",
|
791
|
+
oauth_signature="dRWcHEMtgCVG6a%2Be2gZCaM8c5Iw%3D", oauth_signature_method="HMAC-SHA1",
|
792
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
793
|
+
oauth_version="1.0"
|
794
|
+
response:
|
795
|
+
status:
|
796
|
+
code: 200
|
797
|
+
message: OK
|
798
|
+
headers:
|
799
|
+
Server:
|
800
|
+
- nginx
|
801
|
+
Date:
|
802
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
803
|
+
Content-Type:
|
804
|
+
- application/json; charset=utf-8
|
805
|
+
Transfer-Encoding:
|
806
|
+
- chunked
|
807
|
+
Connection:
|
808
|
+
- keep-alive
|
809
|
+
Vary:
|
810
|
+
- Accept-Encoding
|
811
|
+
Status:
|
812
|
+
- 200 OK
|
813
|
+
Etag:
|
814
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
815
|
+
Cache-Control:
|
816
|
+
- max-age=0, private, must-revalidate
|
817
|
+
X-Ua-Compatible:
|
818
|
+
- IE=Edge,chrome=1
|
819
|
+
Set-Cookie:
|
820
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYmU5MTgwNmQxNmIzNWFhODU5YTg0NTI2ZWRkNTAyM2FJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--56009f2c2d5434287ea0375a657c9b528cbb194d;
|
821
|
+
domain=.cartodb.com; path=/; HttpOnly
|
822
|
+
X-Runtime:
|
823
|
+
- '0.017092'
|
824
|
+
Content-Encoding:
|
825
|
+
- gzip
|
826
|
+
body:
|
827
|
+
encoding: ASCII-8BIT
|
828
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
829
|
+
http_version: '1.1'
|
830
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
831
|
+
- request:
|
832
|
+
method: get
|
833
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
834
|
+
body:
|
835
|
+
encoding: US-ASCII
|
836
|
+
string: ''
|
837
|
+
headers:
|
838
|
+
Accept:
|
839
|
+
- *70259176453560
|
840
|
+
Authorization:
|
841
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="RHzzxnkNvFsbQEKnqy7cMcAnPOfPqy6TWwGJOz4cqE",
|
842
|
+
oauth_signature="Z5drxqt7yFTH1Fx18XHcARxgUFw%3D", oauth_signature_method="HMAC-SHA1",
|
843
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
844
|
+
oauth_version="1.0"
|
845
|
+
response:
|
846
|
+
status:
|
847
|
+
code: 200
|
848
|
+
message: OK
|
849
|
+
headers:
|
850
|
+
Server:
|
851
|
+
- nginx
|
852
|
+
Date:
|
853
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
854
|
+
Content-Type:
|
855
|
+
- application/json; charset=utf-8
|
856
|
+
Transfer-Encoding:
|
857
|
+
- chunked
|
858
|
+
Connection:
|
859
|
+
- keep-alive
|
860
|
+
Vary:
|
861
|
+
- Accept-Encoding
|
862
|
+
Status:
|
863
|
+
- 200 OK
|
864
|
+
Etag:
|
865
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
866
|
+
Cache-Control:
|
867
|
+
- max-age=0, private, must-revalidate
|
868
|
+
X-Ua-Compatible:
|
869
|
+
- IE=Edge,chrome=1
|
870
|
+
Set-Cookie:
|
871
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlN2Y5MGMzM2Y3OGFlZWVkMzU2MzJhOTYzYWRiYmVmNDNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--afa5e6b25d0d68c505543d5d4f26de09457a6da5;
|
872
|
+
domain=.cartodb.com; path=/; HttpOnly
|
873
|
+
X-Runtime:
|
874
|
+
- '0.016895'
|
875
|
+
Content-Encoding:
|
876
|
+
- gzip
|
877
|
+
body:
|
878
|
+
encoding: ASCII-8BIT
|
879
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
880
|
+
http_version: '1.1'
|
881
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
882
|
+
- request:
|
883
|
+
method: get
|
884
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
885
|
+
body:
|
886
|
+
encoding: US-ASCII
|
887
|
+
string: ''
|
888
|
+
headers:
|
889
|
+
Accept:
|
890
|
+
- *70259176453560
|
891
|
+
Authorization:
|
892
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="LsmLNRF6d6qNW8IyBuS3V3GzypTSY5ZzC0dG6KhY",
|
893
|
+
oauth_signature="VRL3lSgpJ63tyfqIpANlWxGXlNQ%3D", oauth_signature_method="HMAC-SHA1",
|
894
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
895
|
+
oauth_version="1.0"
|
896
|
+
response:
|
897
|
+
status:
|
898
|
+
code: 200
|
899
|
+
message: OK
|
900
|
+
headers:
|
901
|
+
Server:
|
902
|
+
- nginx
|
903
|
+
Date:
|
904
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
905
|
+
Content-Type:
|
906
|
+
- application/json; charset=utf-8
|
907
|
+
Transfer-Encoding:
|
908
|
+
- chunked
|
909
|
+
Connection:
|
910
|
+
- keep-alive
|
911
|
+
Vary:
|
912
|
+
- Accept-Encoding
|
913
|
+
Status:
|
914
|
+
- 200 OK
|
915
|
+
Etag:
|
916
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
917
|
+
Cache-Control:
|
918
|
+
- max-age=0, private, must-revalidate
|
919
|
+
X-Ua-Compatible:
|
920
|
+
- IE=Edge,chrome=1
|
921
|
+
Set-Cookie:
|
922
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOWQ4ZWU5NDYwMGZkNmJiOWVkNGUzOWIyZGM0YjliODlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--1b9995be748d131eae35b9ed8a8e748259bdb9f3;
|
923
|
+
domain=.cartodb.com; path=/; HttpOnly
|
924
|
+
X-Runtime:
|
925
|
+
- '0.016565'
|
926
|
+
Content-Encoding:
|
927
|
+
- gzip
|
928
|
+
body:
|
929
|
+
encoding: ASCII-8BIT
|
930
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
931
|
+
http_version: '1.1'
|
932
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
933
|
+
- request:
|
934
|
+
method: get
|
935
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
936
|
+
body:
|
937
|
+
encoding: US-ASCII
|
938
|
+
string: ''
|
939
|
+
headers:
|
940
|
+
Accept:
|
941
|
+
- *70259176453560
|
942
|
+
Authorization:
|
943
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Nhf87W6F6OUBDzYMuE3GSydEKMLBA36zl3oIamGUA",
|
944
|
+
oauth_signature="RiWjPJ6QnwQNN%2B7JAyCbF2KXeG8%3D", oauth_signature_method="HMAC-SHA1",
|
945
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
946
|
+
oauth_version="1.0"
|
947
|
+
response:
|
948
|
+
status:
|
949
|
+
code: 200
|
950
|
+
message: OK
|
951
|
+
headers:
|
952
|
+
Server:
|
953
|
+
- nginx
|
954
|
+
Date:
|
955
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
956
|
+
Content-Type:
|
957
|
+
- application/json; charset=utf-8
|
958
|
+
Transfer-Encoding:
|
959
|
+
- chunked
|
960
|
+
Connection:
|
961
|
+
- keep-alive
|
962
|
+
Vary:
|
963
|
+
- Accept-Encoding
|
964
|
+
Status:
|
965
|
+
- 200 OK
|
966
|
+
Etag:
|
967
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
968
|
+
Cache-Control:
|
969
|
+
- max-age=0, private, must-revalidate
|
970
|
+
X-Ua-Compatible:
|
971
|
+
- IE=Edge,chrome=1
|
972
|
+
Set-Cookie:
|
973
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYWVmMTJmNzA5N2FhNjdkYjk2OWQyZjYwNTEzNmI2ODhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--14b22632108eb1d21b7a105612ddd22c255d034b;
|
974
|
+
domain=.cartodb.com; path=/; HttpOnly
|
975
|
+
X-Runtime:
|
976
|
+
- '0.017168'
|
977
|
+
Content-Encoding:
|
978
|
+
- gzip
|
979
|
+
body:
|
980
|
+
encoding: ASCII-8BIT
|
981
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
982
|
+
http_version: '1.1'
|
983
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
984
|
+
- request:
|
985
|
+
method: get
|
986
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
987
|
+
body:
|
988
|
+
encoding: US-ASCII
|
989
|
+
string: ''
|
990
|
+
headers:
|
991
|
+
Accept:
|
992
|
+
- *70259176453560
|
993
|
+
Authorization:
|
994
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Y3zGxNqzlFDi1edQnIANyCwxLvDI1LnWQF4qijcaU",
|
995
|
+
oauth_signature="dZ8KadtevmWRiRLMBnoJneO42yQ%3D", oauth_signature_method="HMAC-SHA1",
|
996
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
997
|
+
oauth_version="1.0"
|
998
|
+
response:
|
999
|
+
status:
|
1000
|
+
code: 200
|
1001
|
+
message: OK
|
1002
|
+
headers:
|
1003
|
+
Server:
|
1004
|
+
- nginx
|
1005
|
+
Date:
|
1006
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
1007
|
+
Content-Type:
|
1008
|
+
- application/json; charset=utf-8
|
1009
|
+
Transfer-Encoding:
|
1010
|
+
- chunked
|
1011
|
+
Connection:
|
1012
|
+
- keep-alive
|
1013
|
+
Vary:
|
1014
|
+
- Accept-Encoding
|
1015
|
+
Status:
|
1016
|
+
- 200 OK
|
1017
|
+
Etag:
|
1018
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
1019
|
+
Cache-Control:
|
1020
|
+
- max-age=0, private, must-revalidate
|
1021
|
+
X-Ua-Compatible:
|
1022
|
+
- IE=Edge,chrome=1
|
1023
|
+
Set-Cookie:
|
1024
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTIyZTZkYzU5NTViYWIwMzk4ZmU4MTc0ZjY4M2EzYTlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--f6b52711f07138805cc0b25c021b587a844108ed;
|
1025
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1026
|
+
X-Runtime:
|
1027
|
+
- '0.017467'
|
1028
|
+
Content-Encoding:
|
1029
|
+
- gzip
|
1030
|
+
body:
|
1031
|
+
encoding: ASCII-8BIT
|
1032
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
1033
|
+
http_version: '1.1'
|
1034
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
1035
|
+
- request:
|
1036
|
+
method: get
|
1037
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
1038
|
+
body:
|
1039
|
+
encoding: US-ASCII
|
1040
|
+
string: ''
|
1041
|
+
headers:
|
1042
|
+
Accept:
|
1043
|
+
- *70259176453560
|
1044
|
+
Authorization:
|
1045
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="3iai2KOmHeMOV6hMrMfmveGNXuEbXNopY9j97ZaWQ",
|
1046
|
+
oauth_signature="CMfR86QOlSLE%2FFRoWmOEjMcLUec%3D", oauth_signature_method="HMAC-SHA1",
|
1047
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1048
|
+
oauth_version="1.0"
|
1049
|
+
response:
|
1050
|
+
status:
|
1051
|
+
code: 200
|
1052
|
+
message: OK
|
1053
|
+
headers:
|
1054
|
+
Server:
|
1055
|
+
- nginx
|
1056
|
+
Date:
|
1057
|
+
- Wed, 23 May 2012 14:52:44 GMT
|
1058
|
+
Content-Type:
|
1059
|
+
- application/json; charset=utf-8
|
1060
|
+
Transfer-Encoding:
|
1061
|
+
- chunked
|
1062
|
+
Connection:
|
1063
|
+
- close
|
1064
|
+
Vary:
|
1065
|
+
- Accept-Encoding
|
1066
|
+
Status:
|
1067
|
+
- 200 OK
|
1068
|
+
Etag:
|
1069
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
1070
|
+
Cache-Control:
|
1071
|
+
- max-age=0, private, must-revalidate
|
1072
|
+
X-Ua-Compatible:
|
1073
|
+
- IE=Edge,chrome=1
|
1074
|
+
Set-Cookie:
|
1075
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZjczZmY0YTkwOGFmNDRlZWQ4YmZiYmMzMTI2ZmE2NGZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--5988271fdd050f855d3d983ad0b97ab6bfe79ecd;
|
1076
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1077
|
+
X-Runtime:
|
1078
|
+
- '0.016576'
|
1079
|
+
Content-Encoding:
|
1080
|
+
- gzip
|
1081
|
+
body:
|
1082
|
+
encoding: ASCII-8BIT
|
1083
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
1084
|
+
http_version: '1.1'
|
1085
|
+
recorded_at: Wed, 23 May 2012 14:52:44 GMT
|
1086
|
+
- request:
|
1087
|
+
method: get
|
1088
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
1089
|
+
body:
|
1090
|
+
encoding: US-ASCII
|
1091
|
+
string: ''
|
1092
|
+
headers:
|
1093
|
+
Accept:
|
1094
|
+
- *70259176453560
|
1095
|
+
Authorization:
|
1096
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="PAfrTmf4165fdxisTfdf305WlWgi0TMTYWMwYN4gQ",
|
1097
|
+
oauth_signature="lbc8zh9obPnmAUNciN4ZDb2BJzU%3D", oauth_signature_method="HMAC-SHA1",
|
1098
|
+
oauth_timestamp="1337784764", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1099
|
+
oauth_version="1.0"
|
1100
|
+
response:
|
1101
|
+
status:
|
1102
|
+
code: 200
|
1103
|
+
message: OK
|
1104
|
+
headers:
|
1105
|
+
Server:
|
1106
|
+
- nginx
|
1107
|
+
Date:
|
1108
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1109
|
+
Content-Type:
|
1110
|
+
- application/json; charset=utf-8
|
1111
|
+
Transfer-Encoding:
|
1112
|
+
- chunked
|
1113
|
+
Connection:
|
1114
|
+
- keep-alive
|
1115
|
+
Vary:
|
1116
|
+
- Accept-Encoding
|
1117
|
+
Status:
|
1118
|
+
- 200 OK
|
1119
|
+
Etag:
|
1120
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
1121
|
+
Cache-Control:
|
1122
|
+
- max-age=0, private, must-revalidate
|
1123
|
+
X-Ua-Compatible:
|
1124
|
+
- IE=Edge,chrome=1
|
1125
|
+
Set-Cookie:
|
1126
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlODBkMGJmY2EyYTRkOWQyNDRjZDc1ZTRkYWExYWMyZjlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--ae3acd1fa3daf01a13ad5e849deaf0dde78c9046;
|
1127
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1128
|
+
X-Runtime:
|
1129
|
+
- '0.017351'
|
1130
|
+
Content-Encoding:
|
1131
|
+
- gzip
|
1132
|
+
body:
|
1133
|
+
encoding: ASCII-8BIT
|
1134
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
1135
|
+
http_version: '1.1'
|
1136
|
+
recorded_at: Wed, 23 May 2012 14:52:45 GMT
|
1137
|
+
- request:
|
1138
|
+
method: get
|
1139
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
|
1140
|
+
body:
|
1141
|
+
encoding: US-ASCII
|
1142
|
+
string: ''
|
1143
|
+
headers:
|
1144
|
+
Accept:
|
1145
|
+
- *70259176453560
|
1146
|
+
Authorization:
|
1147
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="MphVaDqm9VGacQlTsj70lAIEkVg8koBshGF3qVREA",
|
1148
|
+
oauth_signature="aUxX9bZfz40GqzEg5WKYybcIMRU%3D", oauth_signature_method="HMAC-SHA1",
|
1149
|
+
oauth_timestamp="1337784765", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1150
|
+
oauth_version="1.0"
|
1151
|
+
response:
|
1152
|
+
status:
|
1153
|
+
code: 200
|
1154
|
+
message: OK
|
1155
|
+
headers:
|
1156
|
+
Server:
|
1157
|
+
- nginx
|
1158
|
+
Date:
|
1159
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1160
|
+
Content-Type:
|
1161
|
+
- application/json; charset=utf-8
|
1162
|
+
Transfer-Encoding:
|
1163
|
+
- chunked
|
1164
|
+
Connection:
|
1165
|
+
- keep-alive
|
1166
|
+
Vary:
|
1167
|
+
- Accept-Encoding
|
1168
|
+
Status:
|
1169
|
+
- 200 OK
|
1170
|
+
Etag:
|
1171
|
+
- ! '"48086d8c9057b1339dd0d2f49a501656"'
|
1172
|
+
Cache-Control:
|
1173
|
+
- max-age=0, private, must-revalidate
|
1174
|
+
X-Ua-Compatible:
|
1175
|
+
- IE=Edge,chrome=1
|
1176
|
+
Set-Cookie:
|
1177
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYmM3M2E1MTU1MjAxYmY5MjBkYTQwNjlkYjA0NTAxZTJJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--3862f4901e4350145e8f280299edf99695a4388a;
|
1178
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1179
|
+
X-Runtime:
|
1180
|
+
- '0.017050'
|
1181
|
+
Content-Encoding:
|
1182
|
+
- gzip
|
1183
|
+
body:
|
1184
|
+
encoding: ASCII-8BIT
|
1185
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
|
1186
|
+
http_version: '1.1'
|
1187
|
+
recorded_at: Wed, 23 May 2012 14:52:45 GMT
|
1188
|
+
- request:
|
1189
|
+
method: post
|
1190
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1191
|
+
body:
|
1192
|
+
encoding: US-ASCII
|
1193
|
+
string: ''
|
1194
|
+
headers:
|
1195
|
+
Accept:
|
1196
|
+
- *70259176453560
|
1197
|
+
Authorization:
|
1198
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="kAj9Ue7nglCejz3RmqISfH5ShPlVstUWDbksSzyDdis",
|
1199
|
+
oauth_signature="cdadV9T4k7ctg0e7Ht3oOF%2B7iUo%3D", oauth_signature_method="HMAC-SHA1",
|
1200
|
+
oauth_timestamp="1337784765", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1201
|
+
oauth_version="1.0"
|
1202
|
+
response:
|
1203
|
+
status:
|
1204
|
+
code: 200
|
1205
|
+
message: OK
|
1206
|
+
headers:
|
1207
|
+
Server:
|
1208
|
+
- nginx
|
1209
|
+
Date:
|
1210
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1211
|
+
Content-Type:
|
1212
|
+
- application/json; charset=utf-8
|
1213
|
+
Connection:
|
1214
|
+
- keep-alive
|
1215
|
+
X-Powered-By:
|
1216
|
+
- Express
|
1217
|
+
Content-Disposition:
|
1218
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 14:52:45
|
1219
|
+
GMT";
|
1220
|
+
Access-Control-Allow-Origin:
|
1221
|
+
- ! '*'
|
1222
|
+
Access-Control-Allow-Headers:
|
1223
|
+
- X-Requested-With
|
1224
|
+
Last-Modified:
|
1225
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1226
|
+
Cache-Control:
|
1227
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1228
|
+
X-Cache-Channel:
|
1229
|
+
- cartodb_user_384_db:moto_gp_circuit
|
1230
|
+
Content-Length:
|
1231
|
+
- '830'
|
1232
|
+
body:
|
1233
|
+
encoding: ASCII-8BIT
|
1234
|
+
string: ! '{"time":0.103,"total_rows":1,"rows":[{"id":1,"cartodb_id":1,"name":"Losail
|
1235
|
+
Circuit","description":"The fabulous Losail International Circuit lies on
|
1236
|
+
the outskirts of Doha, the capital city of Qatar. Built in little over a year,
|
1237
|
+
the track cost $58 million USD and required round-the-clock dedication from
|
1238
|
+
almost 1,000 workers in order to get it ready for the inaugural event - the
|
1239
|
+
Marlboro Grand Prix of Qatar on the 2nd October 2004.","created_at":"2012-05-23T16:52:45.484Z","updated_at":"2012-05-23T16:52:45.484Z","the_geom":"0101000020E6100000C1C9367007BA494005FA449E247D3940","the_geom_webmercator":"0101000020110F0000408B6E3C84D95541DF11F60B32664641","length":"5380m","width":"12m","longest_straight":"1068m","left_corners":6,"right_corners":10,"constructed":"2004-01-01T00:00:00.000Z","modified":"2004-01-01T00:00:00.000Z"}]}'
|
1240
|
+
http_version: '1.1'
|
1241
|
+
recorded_at: Wed, 23 May 2012 14:52:45 GMT
|
1242
|
+
- request:
|
1243
|
+
method: get
|
1244
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/records?
|
1245
|
+
body:
|
1246
|
+
encoding: US-ASCII
|
1247
|
+
string: ''
|
1248
|
+
headers:
|
1249
|
+
Accept:
|
1250
|
+
- *70259176453560
|
1251
|
+
Authorization:
|
1252
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="ujgq62n41naEuD52dsPSCSxAgkYLHD6kk50VQu9o28",
|
1253
|
+
oauth_signature="S2etNV4Q2q8lIbCWReQhie4h%2FMg%3D", oauth_signature_method="HMAC-SHA1",
|
1254
|
+
oauth_timestamp="1337784765", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1255
|
+
oauth_version="1.0"
|
1256
|
+
response:
|
1257
|
+
status:
|
1258
|
+
code: 200
|
1259
|
+
message: OK
|
1260
|
+
headers:
|
1261
|
+
Server:
|
1262
|
+
- nginx
|
1263
|
+
Date:
|
1264
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1265
|
+
Content-Type:
|
1266
|
+
- application/json; charset=utf-8
|
1267
|
+
Transfer-Encoding:
|
1268
|
+
- chunked
|
1269
|
+
Connection:
|
1270
|
+
- keep-alive
|
1271
|
+
Vary:
|
1272
|
+
- Accept-Encoding
|
1273
|
+
Status:
|
1274
|
+
- 200 OK
|
1275
|
+
Etag:
|
1276
|
+
- ! '"dacc8b15eaed2b4992d6d8337852a9ff"'
|
1277
|
+
Cache-Control:
|
1278
|
+
- max-age=0, private, must-revalidate
|
1279
|
+
X-Ua-Compatible:
|
1280
|
+
- IE=Edge,chrome=1
|
1281
|
+
Set-Cookie:
|
1282
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlM2U3YTYwNGI2MjUxYWVlOWFhOWJlMDRkZDdhYWViYmJJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--86a46aa17b41816aaa2197eff9d624ecda00c5d2;
|
1283
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1284
|
+
X-Runtime:
|
1285
|
+
- '0.020597'
|
1286
|
+
Content-Encoding:
|
1287
|
+
- gzip
|
1288
|
+
body:
|
1289
|
+
encoding: ASCII-8BIT
|
1290
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","total_rows":1,"rows":[{"modified":"2004-01-01T00:00:00+01:00","constructed":"2004-01-01T00:00:00+01:00","right_corners":"10.0","left_corners":"6.0","longest_straight":"1068m","width":"12m","length":"5380m","the_geom":"{\"type\":\"Point\",\"coordinates\":[51.453352,25.48884]}","updated_at":"2012-05-23T16:52:45+02:00","created_at":"2012-05-23T16:52:45+02:00","description":"The
|
1291
|
+
fabulous Losail International Circuit lies on the outskirts of Doha, the capital
|
1292
|
+
city of Qatar. Built in little over a year, the track cost $58 million USD
|
1293
|
+
and required round-the-clock dedication from almost 1,000 workers in order
|
1294
|
+
to get it ready for the inaugural event - the Marlboro Grand Prix of Qatar
|
1295
|
+
on the 2nd October 2004.","name":"Losail Circuit","cartodb_id":1}]}'
|
1296
|
+
http_version: '1.1'
|
1297
|
+
recorded_at: Wed, 23 May 2012 14:52:45 GMT
|
1298
|
+
- request:
|
1299
|
+
method: post
|
1300
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1301
|
+
body:
|
1302
|
+
encoding: US-ASCII
|
1303
|
+
string: ''
|
1304
|
+
headers:
|
1305
|
+
Accept:
|
1306
|
+
- *70259176453560
|
1307
|
+
Authorization:
|
1308
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="0owemQ4xPgoCxmnERQ6a6Nt87NX3pqAO81nhjsTLx0",
|
1309
|
+
oauth_signature="ymDU2W2u%2BFd7BjetnqNcIM6XPKM%3D", oauth_signature_method="HMAC-SHA1",
|
1310
|
+
oauth_timestamp="1337784765", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1311
|
+
oauth_version="1.0"
|
1312
|
+
response:
|
1313
|
+
status:
|
1314
|
+
code: 200
|
1315
|
+
message: OK
|
1316
|
+
headers:
|
1317
|
+
Server:
|
1318
|
+
- nginx
|
1319
|
+
Date:
|
1320
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1321
|
+
Content-Type:
|
1322
|
+
- application/json; charset=utf-8
|
1323
|
+
Connection:
|
1324
|
+
- keep-alive
|
1325
|
+
X-Powered-By:
|
1326
|
+
- Express
|
1327
|
+
Content-Disposition:
|
1328
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 14:52:45
|
1329
|
+
GMT";
|
1330
|
+
Access-Control-Allow-Origin:
|
1331
|
+
- ! '*'
|
1332
|
+
Access-Control-Allow-Headers:
|
1333
|
+
- X-Requested-With
|
1334
|
+
Last-Modified:
|
1335
|
+
- Wed, 23 May 2012 14:52:45 GMT
|
1336
|
+
Cache-Control:
|
1337
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1338
|
+
X-Cache-Channel:
|
1339
|
+
- cartodb_user_384_db:moto_gp_circuit,moto_gp_circuit
|
1340
|
+
Content-Length:
|
1341
|
+
- '39'
|
1342
|
+
body:
|
1343
|
+
encoding: ASCII-8BIT
|
1344
|
+
string: ! '{"time":0.199,"total_rows":0,"rows":[]}'
|
1345
|
+
http_version: '1.1'
|
1346
|
+
recorded_at: Wed, 23 May 2012 14:52:45 GMT
|
1347
|
+
- request:
|
1348
|
+
method: get
|
1349
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/records?
|
1350
|
+
body:
|
1351
|
+
encoding: US-ASCII
|
1352
|
+
string: ''
|
1353
|
+
headers:
|
1354
|
+
Accept:
|
1355
|
+
- *70259176453560
|
1356
|
+
Authorization:
|
1357
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="VKrFMee1qmrAoXKW6kClTqJyFGv6CRveAip6TmoFqA",
|
1358
|
+
oauth_signature="qwrZWZ8FDXXPgtYG6RyHV%2Fra78k%3D", oauth_signature_method="HMAC-SHA1",
|
1359
|
+
oauth_timestamp="1337784765", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1360
|
+
oauth_version="1.0"
|
1361
|
+
response:
|
1362
|
+
status:
|
1363
|
+
code: 200
|
1364
|
+
message: OK
|
1365
|
+
headers:
|
1366
|
+
Server:
|
1367
|
+
- nginx
|
1368
|
+
Date:
|
1369
|
+
- Wed, 23 May 2012 14:52:46 GMT
|
1370
|
+
Content-Type:
|
1371
|
+
- application/json; charset=utf-8
|
1372
|
+
Transfer-Encoding:
|
1373
|
+
- chunked
|
1374
|
+
Connection:
|
1375
|
+
- keep-alive
|
1376
|
+
Vary:
|
1377
|
+
- Accept-Encoding
|
1378
|
+
Status:
|
1379
|
+
- 200 OK
|
1380
|
+
Etag:
|
1381
|
+
- ! '"ee14c1b8b4639dcf5b95c2548b30526b"'
|
1382
|
+
Cache-Control:
|
1383
|
+
- max-age=0, private, must-revalidate
|
1384
|
+
X-Ua-Compatible:
|
1385
|
+
- IE=Edge,chrome=1
|
1386
|
+
Set-Cookie:
|
1387
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZWQzNDdkYjY3NzBhNzViZjE0ZmM0ZWRjZTc0NDQ1ZWJJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--00e1b9210e0b4710b39386d522636dcc34959173;
|
1388
|
+
domain=.cartodb.com; path=/; HttpOnly
|
1389
|
+
X-Runtime:
|
1390
|
+
- '0.020453'
|
1391
|
+
Content-Encoding:
|
1392
|
+
- gzip
|
1393
|
+
body:
|
1394
|
+
encoding: ASCII-8BIT
|
1395
|
+
string: ! '{"id":4651,"name":"moto_gp_circuit","total_rows":0,"rows":[]}'
|
1396
|
+
http_version: '1.1'
|
1397
|
+
recorded_at: Wed, 23 May 2012 14:52:46 GMT
|
1398
|
+
recorded_with: VCR 2.1.1
|