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,121 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- &70185769255400 !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="5SRqYWKOaMJ0RstfsYBax0A5bbnLE1eGBbBp8eTRkU",
|
30
|
+
oauth_signature="smkERQIMN%2Bf5kVlifVhOAQQrYR0%3D", oauth_signature_method="HMAC-SHA1",
|
31
|
+
oauth_timestamp="1337857503", 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
|
+
- Thu, 24 May 2012 11:05:05 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
|
+
Location:
|
53
|
+
- /tables/4753
|
54
|
+
Etag:
|
55
|
+
- ! '"07e63671976f7c73e985e58b68ba7aff"'
|
56
|
+
Cache-Control:
|
57
|
+
- max-age=0, private, must-revalidate
|
58
|
+
X-Ua-Compatible:
|
59
|
+
- IE=Edge,chrome=1
|
60
|
+
Set-Cookie:
|
61
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTlkZDVjYWVkOTM5OWIyMGZjOWNmMjhkMGEwNjM3OTVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--868122f4dfc04f208dd3814d7aafab5d93870c03;
|
62
|
+
domain=.cartodb.com; path=/; HttpOnly
|
63
|
+
X-Runtime:
|
64
|
+
- '1.317821'
|
65
|
+
Content-Encoding:
|
66
|
+
- gzip
|
67
|
+
body:
|
68
|
+
encoding: ASCII-8BIT
|
69
|
+
string: ! '{"id":4753,"name":"table_1","schema":[["cartodb_id","number"],["field1","string"],["field2","number"],["field3","date"],["field4","boolean"],["updated_at","date"],["created_at","date"]]}'
|
70
|
+
http_version: '1.1'
|
71
|
+
recorded_at: Thu, 24 May 2012 11:05:05 GMT
|
72
|
+
- request:
|
73
|
+
method: post
|
74
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
75
|
+
body:
|
76
|
+
encoding: US-ASCII
|
77
|
+
string: ''
|
78
|
+
headers:
|
79
|
+
Accept:
|
80
|
+
- *70185769255400
|
81
|
+
Authorization:
|
82
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="sbnfMOUkolk6wPbpTl7lFVffP0zQHOI937hrYFuUmg",
|
83
|
+
oauth_signature="NTCYqvhxs%2Fd4ENkP33UIYuvUgf4%3D", oauth_signature_method="HMAC-SHA1",
|
84
|
+
oauth_timestamp="1337857505", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
85
|
+
oauth_version="1.0"
|
86
|
+
response:
|
87
|
+
status:
|
88
|
+
code: 200
|
89
|
+
message: OK
|
90
|
+
headers:
|
91
|
+
Server:
|
92
|
+
- nginx
|
93
|
+
Date:
|
94
|
+
- Thu, 24 May 2012 11:05:05 GMT
|
95
|
+
Content-Type:
|
96
|
+
- application/json; charset=utf-8
|
97
|
+
Connection:
|
98
|
+
- keep-alive
|
99
|
+
X-Powered-By:
|
100
|
+
- Express
|
101
|
+
Content-Disposition:
|
102
|
+
- inline; filename=cartodb-query.json; modification-date="Thu, 24 May 2012 11:05:05
|
103
|
+
GMT";
|
104
|
+
Access-Control-Allow-Origin:
|
105
|
+
- ! '*'
|
106
|
+
Access-Control-Allow-Headers:
|
107
|
+
- X-Requested-With
|
108
|
+
Last-Modified:
|
109
|
+
- Thu, 24 May 2012 11:05:05 GMT
|
110
|
+
Cache-Control:
|
111
|
+
- no-cache,max-age=3600,must-revalidate, public
|
112
|
+
X-Cache-Channel:
|
113
|
+
- cartodb_user_384_db:table_1
|
114
|
+
Content-Length:
|
115
|
+
- '211'
|
116
|
+
body:
|
117
|
+
encoding: ASCII-8BIT
|
118
|
+
string: ! '{"time":0.114,"total_rows":1,"rows":[{"id":1,"updated_at":"2012-05-24T13:05:05.625Z","created_at":"2012-05-24T13:05:05.625Z","cartodb_id":1,"field1":"lorem","field2":100.99,"field3":"2004-01-01","field4":true}]}'
|
119
|
+
http_version: '1.1'
|
120
|
+
recorded_at: Thu, 24 May 2012 11:05:05 GMT
|
121
|
+
recorded_with: VCR 2.1.1
|
@@ -0,0 +1,2624 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- &70265673430640 !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="HXL7bmrXx5sgovgXrqZtmaIsQKh3ql9r8of8hCGB9s",
|
30
|
+
oauth_signature="E%2FAUPiO07IeVha2HXXpvxdEU8lw%3D", oauth_signature_method="HMAC-SHA1",
|
31
|
+
oauth_timestamp="1337787531", 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 15:38:51 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
|
+
Location:
|
53
|
+
- /tables/4715
|
54
|
+
Etag:
|
55
|
+
- ! '"223fc3603b66af2688a3a5eeeb66c18d"'
|
56
|
+
Cache-Control:
|
57
|
+
- max-age=0, private, must-revalidate
|
58
|
+
X-Ua-Compatible:
|
59
|
+
- IE=Edge,chrome=1
|
60
|
+
Set-Cookie:
|
61
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZTc2MGQ5ODFlM2Q4MWNiY2I2OWJjZWNmNjJiNmFiMWRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--dc2fca97ead93e447b1a1362d3071a1ade936440;
|
62
|
+
domain=.cartodb.com; path=/; HttpOnly
|
63
|
+
X-Runtime:
|
64
|
+
- '0.825035'
|
65
|
+
Content-Encoding:
|
66
|
+
- gzip
|
67
|
+
body:
|
68
|
+
encoding: ASCII-8BIT
|
69
|
+
string: ! '{"id":4715,"name":"table_1","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
|
70
|
+
http_version: '1.1'
|
71
|
+
recorded_at: Wed, 23 May 2012 15:38:51 GMT
|
72
|
+
- request:
|
73
|
+
method: post
|
74
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
75
|
+
body:
|
76
|
+
encoding: US-ASCII
|
77
|
+
string: ''
|
78
|
+
headers:
|
79
|
+
Accept:
|
80
|
+
- *70265673430640
|
81
|
+
Authorization:
|
82
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="AH0nt8TsQfLjFeQMZFPA4bD600eNmJLS8i2a2eLDw8",
|
83
|
+
oauth_signature="%2BXtAGzVqH5TAMMb7g5CdfOXWIVk%3D", oauth_signature_method="HMAC-SHA1",
|
84
|
+
oauth_timestamp="1337787531", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
85
|
+
oauth_version="1.0"
|
86
|
+
response:
|
87
|
+
status:
|
88
|
+
code: 200
|
89
|
+
message: OK
|
90
|
+
headers:
|
91
|
+
Server:
|
92
|
+
- nginx
|
93
|
+
Date:
|
94
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
95
|
+
Content-Type:
|
96
|
+
- application/json; charset=utf-8
|
97
|
+
Connection:
|
98
|
+
- keep-alive
|
99
|
+
X-Powered-By:
|
100
|
+
- Express
|
101
|
+
Content-Disposition:
|
102
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:52
|
103
|
+
GMT";
|
104
|
+
Access-Control-Allow-Origin:
|
105
|
+
- ! '*'
|
106
|
+
Access-Control-Allow-Headers:
|
107
|
+
- X-Requested-With
|
108
|
+
Last-Modified:
|
109
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
110
|
+
Cache-Control:
|
111
|
+
- no-cache,max-age=3600,must-revalidate, public
|
112
|
+
X-Cache-Channel:
|
113
|
+
- cartodb_user_384_db:table_1
|
114
|
+
Content-Length:
|
115
|
+
- '350'
|
116
|
+
body:
|
117
|
+
encoding: ASCII-8BIT
|
118
|
+
string: ! '{"time":0.101,"total_rows":1,"rows":[{"id":1,"cartodb_id":1,"name":"tadoqcubykfplvh","description":"mnfrozhspgxuclawbtdyekjvqi","created_at":"2012-05-23T17:38:52.033Z","updated_at":"2012-05-23T17:38:52.033Z","the_geom":"0101000020E61000000000000000C065400000000000003D40","the_geom_webmercator":"0101000020110F000048545E76E7787241673C78040FC14941"}]}'
|
119
|
+
http_version: '1.1'
|
120
|
+
recorded_at: Wed, 23 May 2012 15:38:52 GMT
|
121
|
+
- request:
|
122
|
+
method: post
|
123
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
124
|
+
body:
|
125
|
+
encoding: US-ASCII
|
126
|
+
string: ''
|
127
|
+
headers:
|
128
|
+
Accept:
|
129
|
+
- *70265673430640
|
130
|
+
Authorization:
|
131
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="5T7P5645prRMtI9YIsaJFBy9aqt6Mug7wEfekLs7Iw",
|
132
|
+
oauth_signature="COxCIGW13egBuGjOaCf8FQZrwPI%3D", oauth_signature_method="HMAC-SHA1",
|
133
|
+
oauth_timestamp="1337787532", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
134
|
+
oauth_version="1.0"
|
135
|
+
response:
|
136
|
+
status:
|
137
|
+
code: 200
|
138
|
+
message: OK
|
139
|
+
headers:
|
140
|
+
Server:
|
141
|
+
- nginx
|
142
|
+
Date:
|
143
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
144
|
+
Content-Type:
|
145
|
+
- application/json; charset=utf-8
|
146
|
+
Connection:
|
147
|
+
- keep-alive
|
148
|
+
X-Powered-By:
|
149
|
+
- Express
|
150
|
+
Content-Disposition:
|
151
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:52
|
152
|
+
GMT";
|
153
|
+
Access-Control-Allow-Origin:
|
154
|
+
- ! '*'
|
155
|
+
Access-Control-Allow-Headers:
|
156
|
+
- X-Requested-With
|
157
|
+
Last-Modified:
|
158
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
159
|
+
Cache-Control:
|
160
|
+
- no-cache,max-age=3600,must-revalidate, public
|
161
|
+
X-Cache-Channel:
|
162
|
+
- cartodb_user_384_db:table_1
|
163
|
+
Content-Length:
|
164
|
+
- '350'
|
165
|
+
body:
|
166
|
+
encoding: ASCII-8BIT
|
167
|
+
string: ! '{"time":0.262,"total_rows":1,"rows":[{"id":2,"cartodb_id":2,"name":"itovcqknuegwpyr","description":"ibokcsrdgthzenxyaqvmflwjpu","created_at":"2012-05-23T17:38:52.223Z","updated_at":"2012-05-23T17:38:52.223Z","the_geom":"0101000020E61000000000000000C05B400000000000003C40","the_geom_webmercator":"0101000020110F000094364CEF6D916741774813E5A6C94841"}]}'
|
168
|
+
http_version: '1.1'
|
169
|
+
recorded_at: Wed, 23 May 2012 15:38:52 GMT
|
170
|
+
- request:
|
171
|
+
method: post
|
172
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
173
|
+
body:
|
174
|
+
encoding: US-ASCII
|
175
|
+
string: ''
|
176
|
+
headers:
|
177
|
+
Accept:
|
178
|
+
- *70265673430640
|
179
|
+
Authorization:
|
180
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="bO8gml1dmYHu3OpFAPza58DfpxZfqqJ6Zbd5PCS6gZw",
|
181
|
+
oauth_signature="LYhEQwT%2B0%2B9PXh8FuSg1QvQ%2B%2FAA%3D", oauth_signature_method="HMAC-SHA1",
|
182
|
+
oauth_timestamp="1337787532", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
183
|
+
oauth_version="1.0"
|
184
|
+
response:
|
185
|
+
status:
|
186
|
+
code: 200
|
187
|
+
message: OK
|
188
|
+
headers:
|
189
|
+
Server:
|
190
|
+
- nginx
|
191
|
+
Date:
|
192
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
193
|
+
Content-Type:
|
194
|
+
- application/json; charset=utf-8
|
195
|
+
Connection:
|
196
|
+
- keep-alive
|
197
|
+
X-Powered-By:
|
198
|
+
- Express
|
199
|
+
Content-Disposition:
|
200
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:52
|
201
|
+
GMT";
|
202
|
+
Access-Control-Allow-Origin:
|
203
|
+
- ! '*'
|
204
|
+
Access-Control-Allow-Headers:
|
205
|
+
- X-Requested-With
|
206
|
+
Last-Modified:
|
207
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
208
|
+
Cache-Control:
|
209
|
+
- no-cache,max-age=3600,must-revalidate, public
|
210
|
+
X-Cache-Channel:
|
211
|
+
- cartodb_user_384_db:table_1
|
212
|
+
Content-Length:
|
213
|
+
- '350'
|
214
|
+
body:
|
215
|
+
encoding: ASCII-8BIT
|
216
|
+
string: ! '{"time":0.078,"total_rows":1,"rows":[{"id":3,"cartodb_id":3,"name":"sdkrzvnxfupwmio","description":"dqjfkeioawhplxmyrutncgbzvs","created_at":"2012-05-23T17:38:52.561Z","updated_at":"2012-05-23T17:38:52.561Z","the_geom":"0101000020E610000000000000004064400000000000004140","the_geom_webmercator":"0101000020110F0000B7DB22D8C53271414B5F5803C1BC4E41"}]}'
|
217
|
+
http_version: '1.1'
|
218
|
+
recorded_at: Wed, 23 May 2012 15:38:52 GMT
|
219
|
+
- request:
|
220
|
+
method: post
|
221
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
222
|
+
body:
|
223
|
+
encoding: US-ASCII
|
224
|
+
string: ''
|
225
|
+
headers:
|
226
|
+
Accept:
|
227
|
+
- *70265673430640
|
228
|
+
Authorization:
|
229
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="KpBfZbVBuf6Uv2biqJ5udTwaVboCB4szPVWJ94Ak",
|
230
|
+
oauth_signature="wlPh5FkatyDMtRHJ1iYCY1HaNEo%3D", oauth_signature_method="HMAC-SHA1",
|
231
|
+
oauth_timestamp="1337787532", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
232
|
+
oauth_version="1.0"
|
233
|
+
response:
|
234
|
+
status:
|
235
|
+
code: 200
|
236
|
+
message: OK
|
237
|
+
headers:
|
238
|
+
Server:
|
239
|
+
- nginx
|
240
|
+
Date:
|
241
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
242
|
+
Content-Type:
|
243
|
+
- application/json; charset=utf-8
|
244
|
+
Connection:
|
245
|
+
- keep-alive
|
246
|
+
X-Powered-By:
|
247
|
+
- Express
|
248
|
+
Content-Disposition:
|
249
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:52
|
250
|
+
GMT";
|
251
|
+
Access-Control-Allow-Origin:
|
252
|
+
- ! '*'
|
253
|
+
Access-Control-Allow-Headers:
|
254
|
+
- X-Requested-With
|
255
|
+
Last-Modified:
|
256
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
257
|
+
Cache-Control:
|
258
|
+
- no-cache,max-age=3600,must-revalidate, public
|
259
|
+
X-Cache-Channel:
|
260
|
+
- cartodb_user_384_db:table_1
|
261
|
+
Content-Length:
|
262
|
+
- '350'
|
263
|
+
body:
|
264
|
+
encoding: ASCII-8BIT
|
265
|
+
string: ! '{"time":0.077,"total_rows":1,"rows":[{"id":4,"cartodb_id":4,"name":"wtypnksxvaqougf","description":"ogpdcmervlqznwatkbhixjfsyu","created_at":"2012-05-23T17:38:52.717Z","updated_at":"2012-05-23T17:38:52.717Z","the_geom":"0101000020E610000000000000008045400000000000804B40","the_geom_webmercator":"0101000020110F000031C0A9868C4252410A3B3C8752155C41"}]}'
|
266
|
+
http_version: '1.1'
|
267
|
+
recorded_at: Wed, 23 May 2012 15:38:52 GMT
|
268
|
+
- request:
|
269
|
+
method: post
|
270
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
271
|
+
body:
|
272
|
+
encoding: US-ASCII
|
273
|
+
string: ''
|
274
|
+
headers:
|
275
|
+
Accept:
|
276
|
+
- *70265673430640
|
277
|
+
Authorization:
|
278
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="2kz9KebdCH2l2v3Mm9W9Jwey16vJMV6w04mxDDXNdM4",
|
279
|
+
oauth_signature="k2T7FetEqT1l%2FxGuBZL5dUbEXrE%3D", oauth_signature_method="HMAC-SHA1",
|
280
|
+
oauth_timestamp="1337787532", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
281
|
+
oauth_version="1.0"
|
282
|
+
response:
|
283
|
+
status:
|
284
|
+
code: 200
|
285
|
+
message: OK
|
286
|
+
headers:
|
287
|
+
Server:
|
288
|
+
- nginx
|
289
|
+
Date:
|
290
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
291
|
+
Content-Type:
|
292
|
+
- application/json; charset=utf-8
|
293
|
+
Connection:
|
294
|
+
- keep-alive
|
295
|
+
X-Powered-By:
|
296
|
+
- Express
|
297
|
+
Content-Disposition:
|
298
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:52
|
299
|
+
GMT";
|
300
|
+
Access-Control-Allow-Origin:
|
301
|
+
- ! '*'
|
302
|
+
Access-Control-Allow-Headers:
|
303
|
+
- X-Requested-With
|
304
|
+
Last-Modified:
|
305
|
+
- Wed, 23 May 2012 15:38:52 GMT
|
306
|
+
Cache-Control:
|
307
|
+
- no-cache,max-age=3600,must-revalidate, public
|
308
|
+
X-Cache-Channel:
|
309
|
+
- cartodb_user_384_db:table_1
|
310
|
+
Content-Length:
|
311
|
+
- '350'
|
312
|
+
body:
|
313
|
+
encoding: ASCII-8BIT
|
314
|
+
string: ! '{"time":0.089,"total_rows":1,"rows":[{"id":5,"cartodb_id":5,"name":"kotgmdzajhwiyvl","description":"wukpabegjhxsvnmrlfzyqcitod","created_at":"2012-05-23T17:38:52.867Z","updated_at":"2012-05-23T17:38:52.867Z","the_geom":"0101000020E610000000000000000045400000000000002C40","the_geom_webmercator":"0101000020110F0000019840A7D6D55141484F548C48053841"}]}'
|
315
|
+
http_version: '1.1'
|
316
|
+
recorded_at: Wed, 23 May 2012 15:38:52 GMT
|
317
|
+
- request:
|
318
|
+
method: post
|
319
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
320
|
+
body:
|
321
|
+
encoding: US-ASCII
|
322
|
+
string: ''
|
323
|
+
headers:
|
324
|
+
Accept:
|
325
|
+
- *70265673430640
|
326
|
+
Authorization:
|
327
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="hwPn4KSSw0ztZmU6CcwbGQyYnerAr84bS8CKZNasBP0",
|
328
|
+
oauth_signature="wS5KdTJsPdir8vbvnwBxyix%2BHyo%3D", oauth_signature_method="HMAC-SHA1",
|
329
|
+
oauth_timestamp="1337787532", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
330
|
+
oauth_version="1.0"
|
331
|
+
response:
|
332
|
+
status:
|
333
|
+
code: 200
|
334
|
+
message: OK
|
335
|
+
headers:
|
336
|
+
Server:
|
337
|
+
- nginx
|
338
|
+
Date:
|
339
|
+
- Wed, 23 May 2012 15:38:53 GMT
|
340
|
+
Content-Type:
|
341
|
+
- application/json; charset=utf-8
|
342
|
+
Connection:
|
343
|
+
- keep-alive
|
344
|
+
X-Powered-By:
|
345
|
+
- Express
|
346
|
+
Content-Disposition:
|
347
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:53
|
348
|
+
GMT";
|
349
|
+
Access-Control-Allow-Origin:
|
350
|
+
- ! '*'
|
351
|
+
Access-Control-Allow-Headers:
|
352
|
+
- X-Requested-With
|
353
|
+
Last-Modified:
|
354
|
+
- Wed, 23 May 2012 15:38:53 GMT
|
355
|
+
Cache-Control:
|
356
|
+
- no-cache,max-age=3600,must-revalidate, public
|
357
|
+
X-Cache-Channel:
|
358
|
+
- cartodb_user_384_db:table_1
|
359
|
+
Content-Length:
|
360
|
+
- '350'
|
361
|
+
body:
|
362
|
+
encoding: ASCII-8BIT
|
363
|
+
string: ! '{"time":0.049,"total_rows":1,"rows":[{"id":6,"cartodb_id":6,"name":"mzrdcayhtopfije","description":"epfwckvbgatqdxsmizjuorlynh","created_at":"2012-05-23T17:38:53.036Z","updated_at":"2012-05-23T17:38:53.036Z","the_geom":"0101000020E61000000000000000C052400000000000804C40","the_geom_webmercator":"0101000020110F00004CC6CE7348D95F4177D510AB3D9A5D41"}]}'
|
364
|
+
http_version: '1.1'
|
365
|
+
recorded_at: Wed, 23 May 2012 15:38:53 GMT
|
366
|
+
- request:
|
367
|
+
method: post
|
368
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
369
|
+
body:
|
370
|
+
encoding: US-ASCII
|
371
|
+
string: ''
|
372
|
+
headers:
|
373
|
+
Accept:
|
374
|
+
- *70265673430640
|
375
|
+
Authorization:
|
376
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="MtPEsNw6mWJobkS2iwpJdTgMPzq8o2cxPXRsxZQno",
|
377
|
+
oauth_signature="FWTItimF1dPU1OhEzGxIIDO4Gtg%3D", oauth_signature_method="HMAC-SHA1",
|
378
|
+
oauth_timestamp="1337787533", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
379
|
+
oauth_version="1.0"
|
380
|
+
response:
|
381
|
+
status:
|
382
|
+
code: 200
|
383
|
+
message: OK
|
384
|
+
headers:
|
385
|
+
Server:
|
386
|
+
- nginx
|
387
|
+
Date:
|
388
|
+
- Wed, 23 May 2012 15:38:53 GMT
|
389
|
+
Content-Type:
|
390
|
+
- application/json; charset=utf-8
|
391
|
+
Connection:
|
392
|
+
- keep-alive
|
393
|
+
X-Powered-By:
|
394
|
+
- Express
|
395
|
+
Content-Disposition:
|
396
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:53
|
397
|
+
GMT";
|
398
|
+
Access-Control-Allow-Origin:
|
399
|
+
- ! '*'
|
400
|
+
Access-Control-Allow-Headers:
|
401
|
+
- X-Requested-With
|
402
|
+
Last-Modified:
|
403
|
+
- Wed, 23 May 2012 15:38:53 GMT
|
404
|
+
Cache-Control:
|
405
|
+
- no-cache,max-age=3600,must-revalidate, public
|
406
|
+
X-Cache-Channel:
|
407
|
+
- cartodb_user_384_db:table_1
|
408
|
+
Content-Length:
|
409
|
+
- '350'
|
410
|
+
body:
|
411
|
+
encoding: ASCII-8BIT
|
412
|
+
string: ! '{"time":0.077,"total_rows":1,"rows":[{"id":7,"cartodb_id":7,"name":"nyxgbzcvahojitw","description":"vreozygdqaulpnxkwfihcjsmtb","created_at":"2012-05-23T17:38:53.175Z","updated_at":"2012-05-23T17:38:53.175Z","the_geom":"0101000020E61000000000000000C063400000000000003940","the_geom_webmercator":"0101000020110F000086B3B9F80FC6704137C6EA4FB0F04541"}]}'
|
413
|
+
http_version: '1.1'
|
414
|
+
recorded_at: Wed, 23 May 2012 15:38:53 GMT
|
415
|
+
- request:
|
416
|
+
method: post
|
417
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
418
|
+
body:
|
419
|
+
encoding: US-ASCII
|
420
|
+
string: ''
|
421
|
+
headers:
|
422
|
+
Accept:
|
423
|
+
- *70265673430640
|
424
|
+
Authorization:
|
425
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="UGAvZokrArD6EvzweK07FsdTOaY99XhVD7566jfQNE",
|
426
|
+
oauth_signature="zhXmUQXTqjX%2F1u76lkubYpZwtSM%3D", oauth_signature_method="HMAC-SHA1",
|
427
|
+
oauth_timestamp="1337787533", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
428
|
+
oauth_version="1.0"
|
429
|
+
response:
|
430
|
+
status:
|
431
|
+
code: 200
|
432
|
+
message: OK
|
433
|
+
headers:
|
434
|
+
Server:
|
435
|
+
- nginx
|
436
|
+
Date:
|
437
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
438
|
+
Content-Type:
|
439
|
+
- application/json; charset=utf-8
|
440
|
+
Connection:
|
441
|
+
- keep-alive
|
442
|
+
X-Powered-By:
|
443
|
+
- Express
|
444
|
+
Content-Disposition:
|
445
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:54
|
446
|
+
GMT";
|
447
|
+
Access-Control-Allow-Origin:
|
448
|
+
- ! '*'
|
449
|
+
Access-Control-Allow-Headers:
|
450
|
+
- X-Requested-With
|
451
|
+
Last-Modified:
|
452
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
453
|
+
Cache-Control:
|
454
|
+
- no-cache,max-age=3600,must-revalidate, public
|
455
|
+
X-Cache-Channel:
|
456
|
+
- cartodb_user_384_db:table_1
|
457
|
+
Content-Length:
|
458
|
+
- '350'
|
459
|
+
body:
|
460
|
+
encoding: ASCII-8BIT
|
461
|
+
string: ! '{"time":0.991,"total_rows":1,"rows":[{"id":8,"cartodb_id":8,"name":"rycxmhjuwgfziqk","description":"zbfayigkmdhuneojxrptqvwlcs","created_at":"2012-05-23T17:38:53.331Z","updated_at":"2012-05-23T17:38:53.331Z","the_geom":"0101000020E610000000000000000031400000000000003740","the_geom_webmercator":"0101000020110F0000FAACEE574FE03C41926E9C51A9144441"}]}'
|
462
|
+
http_version: '1.1'
|
463
|
+
recorded_at: Wed, 23 May 2012 15:38:54 GMT
|
464
|
+
- request:
|
465
|
+
method: post
|
466
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
467
|
+
body:
|
468
|
+
encoding: US-ASCII
|
469
|
+
string: ''
|
470
|
+
headers:
|
471
|
+
Accept:
|
472
|
+
- *70265673430640
|
473
|
+
Authorization:
|
474
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="SvfmAfYMnccR6doNO2oiguUvXfXlDq01bothLI37QY",
|
475
|
+
oauth_signature="PYcW9%2BquvLsogPpDqFvgBkWhBt0%3D", oauth_signature_method="HMAC-SHA1",
|
476
|
+
oauth_timestamp="1337787534", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
477
|
+
oauth_version="1.0"
|
478
|
+
response:
|
479
|
+
status:
|
480
|
+
code: 200
|
481
|
+
message: OK
|
482
|
+
headers:
|
483
|
+
Server:
|
484
|
+
- nginx
|
485
|
+
Date:
|
486
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
487
|
+
Content-Type:
|
488
|
+
- application/json; charset=utf-8
|
489
|
+
Connection:
|
490
|
+
- keep-alive
|
491
|
+
X-Powered-By:
|
492
|
+
- Express
|
493
|
+
Content-Disposition:
|
494
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:54
|
495
|
+
GMT";
|
496
|
+
Access-Control-Allow-Origin:
|
497
|
+
- ! '*'
|
498
|
+
Access-Control-Allow-Headers:
|
499
|
+
- X-Requested-With
|
500
|
+
Last-Modified:
|
501
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
502
|
+
Cache-Control:
|
503
|
+
- no-cache,max-age=3600,must-revalidate, public
|
504
|
+
X-Cache-Channel:
|
505
|
+
- cartodb_user_384_db:table_1
|
506
|
+
Content-Length:
|
507
|
+
- '349'
|
508
|
+
body:
|
509
|
+
encoding: ASCII-8BIT
|
510
|
+
string: ! '{"time":0.08,"total_rows":1,"rows":[{"id":9,"cartodb_id":9,"name":"wdljzvehmpiburn","description":"ldphbtgezncaoyrmujvwsqfkix","created_at":"2012-05-23T17:38:54.651Z","updated_at":"2012-05-23T17:38:54.651Z","the_geom":"0101000020E61000000000000000005F400000000000002840","the_geom_webmercator":"0101000020110F0000D1BB771B0C546A41D87F8D68AC883441"}]}'
|
511
|
+
http_version: '1.1'
|
512
|
+
recorded_at: Wed, 23 May 2012 15:38:54 GMT
|
513
|
+
- request:
|
514
|
+
method: post
|
515
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
516
|
+
body:
|
517
|
+
encoding: US-ASCII
|
518
|
+
string: ''
|
519
|
+
headers:
|
520
|
+
Accept:
|
521
|
+
- *70265673430640
|
522
|
+
Authorization:
|
523
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="1RR9I2ct6GmgwDNl0l4MZZwOs5DOPfLwSa9K4szg",
|
524
|
+
oauth_signature="VEqobfmkwfWHdwxIK9%2FglbFGQvM%3D", oauth_signature_method="HMAC-SHA1",
|
525
|
+
oauth_timestamp="1337787534", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
526
|
+
oauth_version="1.0"
|
527
|
+
response:
|
528
|
+
status:
|
529
|
+
code: 200
|
530
|
+
message: OK
|
531
|
+
headers:
|
532
|
+
Server:
|
533
|
+
- nginx
|
534
|
+
Date:
|
535
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
536
|
+
Content-Type:
|
537
|
+
- application/json; charset=utf-8
|
538
|
+
Connection:
|
539
|
+
- keep-alive
|
540
|
+
X-Powered-By:
|
541
|
+
- Express
|
542
|
+
Content-Disposition:
|
543
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:54
|
544
|
+
GMT";
|
545
|
+
Access-Control-Allow-Origin:
|
546
|
+
- ! '*'
|
547
|
+
Access-Control-Allow-Headers:
|
548
|
+
- X-Requested-With
|
549
|
+
Last-Modified:
|
550
|
+
- Wed, 23 May 2012 15:38:54 GMT
|
551
|
+
Cache-Control:
|
552
|
+
- no-cache,max-age=3600,must-revalidate, public
|
553
|
+
X-Cache-Channel:
|
554
|
+
- cartodb_user_384_db:table_1
|
555
|
+
Content-Length:
|
556
|
+
- '352'
|
557
|
+
body:
|
558
|
+
encoding: ASCII-8BIT
|
559
|
+
string: ! '{"time":0.069,"total_rows":1,"rows":[{"id":10,"cartodb_id":10,"name":"fgpqcnuwdabroje","description":"leqcgnyrfpktshuixadmbzjwvo","created_at":"2012-05-23T17:38:54.807Z","updated_at":"2012-05-23T17:38:54.807Z","the_geom":"0101000020E61000000000000000004F400000000000002E40","the_geom_webmercator":"0101000020110F0000D1BB771B0C545A41C457BD2370C63941"}]}'
|
560
|
+
http_version: '1.1'
|
561
|
+
recorded_at: Wed, 23 May 2012 15:38:54 GMT
|
562
|
+
- request:
|
563
|
+
method: post
|
564
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
565
|
+
body:
|
566
|
+
encoding: US-ASCII
|
567
|
+
string: ''
|
568
|
+
headers:
|
569
|
+
Accept:
|
570
|
+
- *70265673430640
|
571
|
+
Authorization:
|
572
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Nb1ElBZrBJZuzvIe0iOjaVRqqsqMQK4S6r9iaeARgQU",
|
573
|
+
oauth_signature="BgeQ2Ta34oxQ%2FdHtpxmjp0r%2F1II%3D", oauth_signature_method="HMAC-SHA1",
|
574
|
+
oauth_timestamp="1337787534", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
575
|
+
oauth_version="1.0"
|
576
|
+
response:
|
577
|
+
status:
|
578
|
+
code: 200
|
579
|
+
message: OK
|
580
|
+
headers:
|
581
|
+
Server:
|
582
|
+
- nginx
|
583
|
+
Date:
|
584
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
585
|
+
Content-Type:
|
586
|
+
- application/json; charset=utf-8
|
587
|
+
Connection:
|
588
|
+
- keep-alive
|
589
|
+
X-Powered-By:
|
590
|
+
- Express
|
591
|
+
Content-Disposition:
|
592
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
593
|
+
GMT";
|
594
|
+
Access-Control-Allow-Origin:
|
595
|
+
- ! '*'
|
596
|
+
Access-Control-Allow-Headers:
|
597
|
+
- X-Requested-With
|
598
|
+
Last-Modified:
|
599
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
600
|
+
Cache-Control:
|
601
|
+
- no-cache,max-age=3600,must-revalidate, public
|
602
|
+
X-Cache-Channel:
|
603
|
+
- cartodb_user_384_db:table_1
|
604
|
+
Content-Length:
|
605
|
+
- '352'
|
606
|
+
body:
|
607
|
+
encoding: ASCII-8BIT
|
608
|
+
string: ! '{"time":0.052,"total_rows":1,"rows":[{"id":11,"cartodb_id":11,"name":"cmqabkhlrgudeix","description":"rtxoughdzsfablmvqyipcnjewk","created_at":"2012-05-23T17:38:54.980Z","updated_at":"2012-05-23T17:38:54.980Z","the_geom":"0101000020E610000000000000004063400000000000804340","the_geom_webmercator":"0101000020110F0000558B50195A5970410827A5E401035241"}]}'
|
609
|
+
http_version: '1.1'
|
610
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
611
|
+
- request:
|
612
|
+
method: post
|
613
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
614
|
+
body:
|
615
|
+
encoding: US-ASCII
|
616
|
+
string: ''
|
617
|
+
headers:
|
618
|
+
Accept:
|
619
|
+
- *70265673430640
|
620
|
+
Authorization:
|
621
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="sZPz0rx7IHkmnv6y6HKWUOGg6TTIeqgyqQpvZPJrpxw",
|
622
|
+
oauth_signature="ZmjB8IzEFmoUdfbaVL55l%2F2dGhQ%3D", oauth_signature_method="HMAC-SHA1",
|
623
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
624
|
+
oauth_version="1.0"
|
625
|
+
response:
|
626
|
+
status:
|
627
|
+
code: 200
|
628
|
+
message: OK
|
629
|
+
headers:
|
630
|
+
Server:
|
631
|
+
- nginx
|
632
|
+
Date:
|
633
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
634
|
+
Content-Type:
|
635
|
+
- application/json; charset=utf-8
|
636
|
+
Connection:
|
637
|
+
- keep-alive
|
638
|
+
X-Powered-By:
|
639
|
+
- Express
|
640
|
+
Content-Disposition:
|
641
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
642
|
+
GMT";
|
643
|
+
Access-Control-Allow-Origin:
|
644
|
+
- ! '*'
|
645
|
+
Access-Control-Allow-Headers:
|
646
|
+
- X-Requested-With
|
647
|
+
Last-Modified:
|
648
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
649
|
+
Cache-Control:
|
650
|
+
- no-cache,max-age=3600,must-revalidate, public
|
651
|
+
X-Cache-Channel:
|
652
|
+
- cartodb_user_384_db:table_1
|
653
|
+
Content-Length:
|
654
|
+
- '352'
|
655
|
+
body:
|
656
|
+
encoding: ASCII-8BIT
|
657
|
+
string: ! '{"time":0.058,"total_rows":1,"rows":[{"id":12,"cartodb_id":12,"name":"craqjivemwlpsyx","description":"akxjftilhcydosrpqgvenmzubw","created_at":"2012-05-23T17:38:55.106Z","updated_at":"2012-05-23T17:38:55.106Z","the_geom":"0101000020E610000000000000000056400000000000002440","the_geom_webmercator":"0101000020110F000063E8126642AF62418F4A90F9A9123141"}]}'
|
658
|
+
http_version: '1.1'
|
659
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
660
|
+
- request:
|
661
|
+
method: post
|
662
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
663
|
+
body:
|
664
|
+
encoding: US-ASCII
|
665
|
+
string: ''
|
666
|
+
headers:
|
667
|
+
Accept:
|
668
|
+
- *70265673430640
|
669
|
+
Authorization:
|
670
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="xEFsNZ3LXhjTqvsKlZiSaAFuvuA3U7tyWqcEfuExmc",
|
671
|
+
oauth_signature="qsTJVGFZsImCikbXeZiRRIVgoh4%3D", oauth_signature_method="HMAC-SHA1",
|
672
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
673
|
+
oauth_version="1.0"
|
674
|
+
response:
|
675
|
+
status:
|
676
|
+
code: 200
|
677
|
+
message: OK
|
678
|
+
headers:
|
679
|
+
Server:
|
680
|
+
- nginx
|
681
|
+
Date:
|
682
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
683
|
+
Content-Type:
|
684
|
+
- application/json; charset=utf-8
|
685
|
+
Connection:
|
686
|
+
- keep-alive
|
687
|
+
X-Powered-By:
|
688
|
+
- Express
|
689
|
+
Content-Disposition:
|
690
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
691
|
+
GMT";
|
692
|
+
Access-Control-Allow-Origin:
|
693
|
+
- ! '*'
|
694
|
+
Access-Control-Allow-Headers:
|
695
|
+
- X-Requested-With
|
696
|
+
Last-Modified:
|
697
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
698
|
+
Cache-Control:
|
699
|
+
- no-cache,max-age=3600,must-revalidate, public
|
700
|
+
X-Cache-Channel:
|
701
|
+
- cartodb_user_384_db:table_1
|
702
|
+
Content-Length:
|
703
|
+
- '352'
|
704
|
+
body:
|
705
|
+
encoding: ASCII-8BIT
|
706
|
+
string: ! '{"time":0.043,"total_rows":1,"rows":[{"id":13,"cartodb_id":13,"name":"pwuasqnevijrzgx","description":"aujoweiqhmnsvxtfdgkzcyrlpb","created_at":"2012-05-23T17:38:55.238Z","updated_at":"2012-05-23T17:38:55.238Z","the_geom":"0101000020E61000000000000000002A400000000000003740","the_geom_webmercator":"0101000020110F0000EB295C61F1143641926E9C51A9144441"}]}'
|
707
|
+
http_version: '1.1'
|
708
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
709
|
+
- request:
|
710
|
+
method: post
|
711
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
712
|
+
body:
|
713
|
+
encoding: US-ASCII
|
714
|
+
string: ''
|
715
|
+
headers:
|
716
|
+
Accept:
|
717
|
+
- *70265673430640
|
718
|
+
Authorization:
|
719
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="82t7PRZ2UdgrnoHyjF3LkGe7vwK9MII9evWZxVbn6Jw",
|
720
|
+
oauth_signature="9vGQdnahEELCOwW8rdbG%2BIRKj1U%3D", oauth_signature_method="HMAC-SHA1",
|
721
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
722
|
+
oauth_version="1.0"
|
723
|
+
response:
|
724
|
+
status:
|
725
|
+
code: 200
|
726
|
+
message: OK
|
727
|
+
headers:
|
728
|
+
Server:
|
729
|
+
- nginx
|
730
|
+
Date:
|
731
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
732
|
+
Content-Type:
|
733
|
+
- application/json; charset=utf-8
|
734
|
+
Connection:
|
735
|
+
- keep-alive
|
736
|
+
X-Powered-By:
|
737
|
+
- Express
|
738
|
+
Content-Disposition:
|
739
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
740
|
+
GMT";
|
741
|
+
Access-Control-Allow-Origin:
|
742
|
+
- ! '*'
|
743
|
+
Access-Control-Allow-Headers:
|
744
|
+
- X-Requested-With
|
745
|
+
Last-Modified:
|
746
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
747
|
+
Cache-Control:
|
748
|
+
- no-cache,max-age=3600,must-revalidate, public
|
749
|
+
X-Cache-Channel:
|
750
|
+
- cartodb_user_384_db:table_1
|
751
|
+
Content-Length:
|
752
|
+
- '352'
|
753
|
+
body:
|
754
|
+
encoding: ASCII-8BIT
|
755
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":14,"cartodb_id":14,"name":"lyhdzsmtcnqxefw","description":"rpfubvjngwsmzhxecdtoaykqil","created_at":"2012-05-23T17:38:55.356Z","updated_at":"2012-05-23T17:38:55.356Z","the_geom":"0101000020E610000000000000000032400000000000804540","the_geom_webmercator":"0101000020110F0000B74D93D526933E41C75A34F678435441"}]}'
|
756
|
+
http_version: '1.1'
|
757
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
758
|
+
- request:
|
759
|
+
method: post
|
760
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
761
|
+
body:
|
762
|
+
encoding: US-ASCII
|
763
|
+
string: ''
|
764
|
+
headers:
|
765
|
+
Accept:
|
766
|
+
- *70265673430640
|
767
|
+
Authorization:
|
768
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="opcgLH5Ywgn7J9VwTXeoIrBmMIpFshXKzx7EjmvjXE",
|
769
|
+
oauth_signature="bNm5ptRY24stm57tIdmTnU51pBI%3D", oauth_signature_method="HMAC-SHA1",
|
770
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
771
|
+
oauth_version="1.0"
|
772
|
+
response:
|
773
|
+
status:
|
774
|
+
code: 200
|
775
|
+
message: OK
|
776
|
+
headers:
|
777
|
+
Server:
|
778
|
+
- nginx
|
779
|
+
Date:
|
780
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
781
|
+
Content-Type:
|
782
|
+
- application/json; charset=utf-8
|
783
|
+
Connection:
|
784
|
+
- keep-alive
|
785
|
+
X-Powered-By:
|
786
|
+
- Express
|
787
|
+
Content-Disposition:
|
788
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
789
|
+
GMT";
|
790
|
+
Access-Control-Allow-Origin:
|
791
|
+
- ! '*'
|
792
|
+
Access-Control-Allow-Headers:
|
793
|
+
- X-Requested-With
|
794
|
+
Last-Modified:
|
795
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
796
|
+
Cache-Control:
|
797
|
+
- no-cache,max-age=3600,must-revalidate, public
|
798
|
+
X-Cache-Channel:
|
799
|
+
- cartodb_user_384_db:table_1
|
800
|
+
Content-Length:
|
801
|
+
- '352'
|
802
|
+
body:
|
803
|
+
encoding: ASCII-8BIT
|
804
|
+
string: ! '{"time":0.034,"total_rows":1,"rows":[{"id":15,"cartodb_id":15,"name":"trfipykjxzndhlw","description":"shqgcliuvnyzafrxwekbdtjmop","created_at":"2012-05-23T17:38:55.465Z","updated_at":"2012-05-23T17:38:55.465Z","the_geom":"0101000020E610000000000000008050400000000000405140","the_geom_webmercator":"0101000020110F0000955C1C99E3065C4131711B5168816441"}]}'
|
805
|
+
http_version: '1.1'
|
806
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
807
|
+
- request:
|
808
|
+
method: post
|
809
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
810
|
+
body:
|
811
|
+
encoding: US-ASCII
|
812
|
+
string: ''
|
813
|
+
headers:
|
814
|
+
Accept:
|
815
|
+
- *70265673430640
|
816
|
+
Authorization:
|
817
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="eLXW0ZncRiQf4h8D2HtYIpiLnOTWFuJ9yN88GlPrfI",
|
818
|
+
oauth_signature="oYxn4%2BUeNPwKsG5etMR%2BlW1hf8s%3D", oauth_signature_method="HMAC-SHA1",
|
819
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
820
|
+
oauth_version="1.0"
|
821
|
+
response:
|
822
|
+
status:
|
823
|
+
code: 200
|
824
|
+
message: OK
|
825
|
+
headers:
|
826
|
+
Server:
|
827
|
+
- nginx
|
828
|
+
Date:
|
829
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
830
|
+
Content-Type:
|
831
|
+
- application/json; charset=utf-8
|
832
|
+
Connection:
|
833
|
+
- keep-alive
|
834
|
+
X-Powered-By:
|
835
|
+
- Express
|
836
|
+
Content-Disposition:
|
837
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
838
|
+
GMT";
|
839
|
+
Access-Control-Allow-Origin:
|
840
|
+
- ! '*'
|
841
|
+
Access-Control-Allow-Headers:
|
842
|
+
- X-Requested-With
|
843
|
+
Last-Modified:
|
844
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
845
|
+
Cache-Control:
|
846
|
+
- no-cache,max-age=3600,must-revalidate, public
|
847
|
+
X-Cache-Channel:
|
848
|
+
- cartodb_user_384_db:table_1
|
849
|
+
Content-Length:
|
850
|
+
- '352'
|
851
|
+
body:
|
852
|
+
encoding: ASCII-8BIT
|
853
|
+
string: ! '{"time":0.034,"total_rows":1,"rows":[{"id":16,"cartodb_id":16,"name":"bjmdgnavqfuypkx","description":"lngcshmrfudbaewvykzxqipojt","created_at":"2012-05-23T17:38:55.598Z","updated_at":"2012-05-23T17:38:55.598Z","the_geom":"0101000020E610000000000000004055400000000000405340","the_geom_webmercator":"0101000020110F0000192CF596310C62410DA38553B16C6A41"}]}'
|
854
|
+
http_version: '1.1'
|
855
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
856
|
+
- request:
|
857
|
+
method: post
|
858
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
859
|
+
body:
|
860
|
+
encoding: US-ASCII
|
861
|
+
string: ''
|
862
|
+
headers:
|
863
|
+
Accept:
|
864
|
+
- *70265673430640
|
865
|
+
Authorization:
|
866
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="CQ0V3JXmcRviWbjbKgizqWRERKbLpm2VGBZXPSNL8t4",
|
867
|
+
oauth_signature="zVT6IBGcknVCDahaILfgfmJUbAE%3D", oauth_signature_method="HMAC-SHA1",
|
868
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
869
|
+
oauth_version="1.0"
|
870
|
+
response:
|
871
|
+
status:
|
872
|
+
code: 200
|
873
|
+
message: OK
|
874
|
+
headers:
|
875
|
+
Server:
|
876
|
+
- nginx
|
877
|
+
Date:
|
878
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
879
|
+
Content-Type:
|
880
|
+
- application/json; charset=utf-8
|
881
|
+
Connection:
|
882
|
+
- keep-alive
|
883
|
+
X-Powered-By:
|
884
|
+
- Express
|
885
|
+
Content-Disposition:
|
886
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
887
|
+
GMT";
|
888
|
+
Access-Control-Allow-Origin:
|
889
|
+
- ! '*'
|
890
|
+
Access-Control-Allow-Headers:
|
891
|
+
- X-Requested-With
|
892
|
+
Last-Modified:
|
893
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
894
|
+
Cache-Control:
|
895
|
+
- no-cache,max-age=3600,must-revalidate, public
|
896
|
+
X-Cache-Channel:
|
897
|
+
- cartodb_user_384_db:table_1
|
898
|
+
Content-Length:
|
899
|
+
- '352'
|
900
|
+
body:
|
901
|
+
encoding: ASCII-8BIT
|
902
|
+
string: ! '{"time":0.051,"total_rows":1,"rows":[{"id":17,"cartodb_id":17,"name":"cmfliqyvoakjprx","description":"gbjiamxervzuqwcypdklotfhns","created_at":"2012-05-23T17:38:55.706Z","updated_at":"2012-05-23T17:38:55.706Z","the_geom":"0101000020E610000000000000000010400000000000405540","the_geom_webmercator":"0101000020110F00003C0C4ADA772D1B414A2716CEF10B7341"}]}'
|
903
|
+
http_version: '1.1'
|
904
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
905
|
+
- request:
|
906
|
+
method: post
|
907
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
908
|
+
body:
|
909
|
+
encoding: US-ASCII
|
910
|
+
string: ''
|
911
|
+
headers:
|
912
|
+
Accept:
|
913
|
+
- *70265673430640
|
914
|
+
Authorization:
|
915
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="ol55XNPz9s1mMIkGSj8AcTvvzqEE2ZVJ96Uo9u9jzQ",
|
916
|
+
oauth_signature="s6XebyV4RwVQ1Cc1g%2Fdow%2Fculsc%3D", oauth_signature_method="HMAC-SHA1",
|
917
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
918
|
+
oauth_version="1.0"
|
919
|
+
response:
|
920
|
+
status:
|
921
|
+
code: 200
|
922
|
+
message: OK
|
923
|
+
headers:
|
924
|
+
Server:
|
925
|
+
- nginx
|
926
|
+
Date:
|
927
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
928
|
+
Content-Type:
|
929
|
+
- application/json; charset=utf-8
|
930
|
+
Connection:
|
931
|
+
- keep-alive
|
932
|
+
X-Powered-By:
|
933
|
+
- Express
|
934
|
+
Content-Disposition:
|
935
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:55
|
936
|
+
GMT";
|
937
|
+
Access-Control-Allow-Origin:
|
938
|
+
- ! '*'
|
939
|
+
Access-Control-Allow-Headers:
|
940
|
+
- X-Requested-With
|
941
|
+
Last-Modified:
|
942
|
+
- Wed, 23 May 2012 15:38:55 GMT
|
943
|
+
Cache-Control:
|
944
|
+
- no-cache,max-age=3600,must-revalidate, public
|
945
|
+
X-Cache-Channel:
|
946
|
+
- cartodb_user_384_db:table_1
|
947
|
+
Content-Length:
|
948
|
+
- '351'
|
949
|
+
body:
|
950
|
+
encoding: ASCII-8BIT
|
951
|
+
string: ! '{"time":0.06,"total_rows":1,"rows":[{"id":18,"cartodb_id":18,"name":"gxnbaehkvywrjlu","description":"juvhpkleysfcwdiatzobxqmgrn","created_at":"2012-05-23T17:38:55.833Z","updated_at":"2012-05-23T17:38:55.833Z","the_geom":"0101000020E6100000000000000000F03F0000000000002E40","the_geom_webmercator":"0101000020110F0000DB0B4ADA772DFB40C457BD2370C63941"}]}'
|
952
|
+
http_version: '1.1'
|
953
|
+
recorded_at: Wed, 23 May 2012 15:38:55 GMT
|
954
|
+
- request:
|
955
|
+
method: post
|
956
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
957
|
+
body:
|
958
|
+
encoding: US-ASCII
|
959
|
+
string: ''
|
960
|
+
headers:
|
961
|
+
Accept:
|
962
|
+
- *70265673430640
|
963
|
+
Authorization:
|
964
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="W1dyZfVys7ky7KmT5NxyTCIFBF44LQ8mWOaZwPvBuA",
|
965
|
+
oauth_signature="FTqIDoc5Q3ujvemf5Jc7qTMf2bg%3D", oauth_signature_method="HMAC-SHA1",
|
966
|
+
oauth_timestamp="1337787535", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
967
|
+
oauth_version="1.0"
|
968
|
+
response:
|
969
|
+
status:
|
970
|
+
code: 200
|
971
|
+
message: OK
|
972
|
+
headers:
|
973
|
+
Server:
|
974
|
+
- nginx
|
975
|
+
Date:
|
976
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
977
|
+
Content-Type:
|
978
|
+
- application/json; charset=utf-8
|
979
|
+
Connection:
|
980
|
+
- keep-alive
|
981
|
+
X-Powered-By:
|
982
|
+
- Express
|
983
|
+
Content-Disposition:
|
984
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
985
|
+
GMT";
|
986
|
+
Access-Control-Allow-Origin:
|
987
|
+
- ! '*'
|
988
|
+
Access-Control-Allow-Headers:
|
989
|
+
- X-Requested-With
|
990
|
+
Last-Modified:
|
991
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
992
|
+
Cache-Control:
|
993
|
+
- no-cache,max-age=3600,must-revalidate, public
|
994
|
+
X-Cache-Channel:
|
995
|
+
- cartodb_user_384_db:table_1
|
996
|
+
Content-Length:
|
997
|
+
- '352'
|
998
|
+
body:
|
999
|
+
encoding: ASCII-8BIT
|
1000
|
+
string: ! '{"time":0.107,"total_rows":1,"rows":[{"id":19,"cartodb_id":19,"name":"brcsixglnzekfqo","description":"kqacgnvjmdylueiopzxfhswtbr","created_at":"2012-05-23T17:38:55.967Z","updated_at":"2012-05-23T17:38:55.967Z","the_geom":"0101000020E61000000000000000005C400000000000804D40","the_geom_webmercator":"0101000020110F0000ABCA00DFC8C76741C129B3B8A8345F41"}]}'
|
1001
|
+
http_version: '1.1'
|
1002
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1003
|
+
- request:
|
1004
|
+
method: post
|
1005
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1006
|
+
body:
|
1007
|
+
encoding: US-ASCII
|
1008
|
+
string: ''
|
1009
|
+
headers:
|
1010
|
+
Accept:
|
1011
|
+
- *70265673430640
|
1012
|
+
Authorization:
|
1013
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="mCpE8PZ2pj4yIPdmZUGYPKfdg1hfUsdwAXKfGf1zk",
|
1014
|
+
oauth_signature="zEzXvf0C7bSAc0q2PvMc96bRxaE%3D", oauth_signature_method="HMAC-SHA1",
|
1015
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1016
|
+
oauth_version="1.0"
|
1017
|
+
response:
|
1018
|
+
status:
|
1019
|
+
code: 200
|
1020
|
+
message: OK
|
1021
|
+
headers:
|
1022
|
+
Server:
|
1023
|
+
- nginx
|
1024
|
+
Date:
|
1025
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1026
|
+
Content-Type:
|
1027
|
+
- application/json; charset=utf-8
|
1028
|
+
Connection:
|
1029
|
+
- keep-alive
|
1030
|
+
X-Powered-By:
|
1031
|
+
- Express
|
1032
|
+
Content-Disposition:
|
1033
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1034
|
+
GMT";
|
1035
|
+
Access-Control-Allow-Origin:
|
1036
|
+
- ! '*'
|
1037
|
+
Access-Control-Allow-Headers:
|
1038
|
+
- X-Requested-With
|
1039
|
+
Last-Modified:
|
1040
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1041
|
+
Cache-Control:
|
1042
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1043
|
+
X-Cache-Channel:
|
1044
|
+
- cartodb_user_384_db:table_1
|
1045
|
+
Content-Length:
|
1046
|
+
- '351'
|
1047
|
+
body:
|
1048
|
+
encoding: ASCII-8BIT
|
1049
|
+
string: ! '{"time":0.04,"total_rows":1,"rows":[{"id":20,"cartodb_id":20,"name":"cfuqxbyzmnjshel","description":"zhqbgtnorivmkfdepujscxyawl","created_at":"2012-05-23T17:38:56.148Z","updated_at":"2012-05-23T17:38:56.148Z","the_geom":"0101000020E610000000000000000054400000000000001040","the_geom_webmercator":"0101000020110F00009F476EE86AFC604160AB497020331B41"}]}'
|
1050
|
+
http_version: '1.1'
|
1051
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1052
|
+
- request:
|
1053
|
+
method: post
|
1054
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1055
|
+
body:
|
1056
|
+
encoding: US-ASCII
|
1057
|
+
string: ''
|
1058
|
+
headers:
|
1059
|
+
Accept:
|
1060
|
+
- *70265673430640
|
1061
|
+
Authorization:
|
1062
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="JpcD06pzPTbzMDFBVG5Anufmvh2Prr4xhM68UIs",
|
1063
|
+
oauth_signature="FKfgGYQe6Vtvh5c7KaGZBblxILQ%3D", oauth_signature_method="HMAC-SHA1",
|
1064
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1065
|
+
oauth_version="1.0"
|
1066
|
+
response:
|
1067
|
+
status:
|
1068
|
+
code: 200
|
1069
|
+
message: OK
|
1070
|
+
headers:
|
1071
|
+
Server:
|
1072
|
+
- nginx
|
1073
|
+
Date:
|
1074
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1075
|
+
Content-Type:
|
1076
|
+
- application/json; charset=utf-8
|
1077
|
+
Connection:
|
1078
|
+
- keep-alive
|
1079
|
+
X-Powered-By:
|
1080
|
+
- Express
|
1081
|
+
Content-Disposition:
|
1082
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1083
|
+
GMT";
|
1084
|
+
Access-Control-Allow-Origin:
|
1085
|
+
- ! '*'
|
1086
|
+
Access-Control-Allow-Headers:
|
1087
|
+
- X-Requested-With
|
1088
|
+
Last-Modified:
|
1089
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1090
|
+
Cache-Control:
|
1091
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1092
|
+
X-Cache-Channel:
|
1093
|
+
- cartodb_user_384_db:table_1
|
1094
|
+
Content-Length:
|
1095
|
+
- '352'
|
1096
|
+
body:
|
1097
|
+
encoding: ASCII-8BIT
|
1098
|
+
string: ! '{"time":0.055,"total_rows":1,"rows":[{"id":21,"cartodb_id":21,"name":"kzcjqigudbnhyel","description":"fxosmwpknbrhuzvtcajeqiglyd","created_at":"2012-05-23T17:38:56.262Z","updated_at":"2012-05-23T17:38:56.262Z","the_geom":"0101000020E610000000000000000059400000000000804440","the_geom_webmercator":"0101000020110F000086D989A2853B6541497A7C6ADD1E5341"}]}'
|
1099
|
+
http_version: '1.1'
|
1100
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1101
|
+
- request:
|
1102
|
+
method: post
|
1103
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1104
|
+
body:
|
1105
|
+
encoding: US-ASCII
|
1106
|
+
string: ''
|
1107
|
+
headers:
|
1108
|
+
Accept:
|
1109
|
+
- *70265673430640
|
1110
|
+
Authorization:
|
1111
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="wBWdQuWFRJN5Uo2uuROCLVDOpZAUPSsKvf8DBrgwvk",
|
1112
|
+
oauth_signature="7YJksR8YVAHn0eTJkGv6M4BleDY%3D", oauth_signature_method="HMAC-SHA1",
|
1113
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1114
|
+
oauth_version="1.0"
|
1115
|
+
response:
|
1116
|
+
status:
|
1117
|
+
code: 200
|
1118
|
+
message: OK
|
1119
|
+
headers:
|
1120
|
+
Server:
|
1121
|
+
- nginx
|
1122
|
+
Date:
|
1123
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1124
|
+
Content-Type:
|
1125
|
+
- application/json; charset=utf-8
|
1126
|
+
Connection:
|
1127
|
+
- keep-alive
|
1128
|
+
X-Powered-By:
|
1129
|
+
- Express
|
1130
|
+
Content-Disposition:
|
1131
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1132
|
+
GMT";
|
1133
|
+
Access-Control-Allow-Origin:
|
1134
|
+
- ! '*'
|
1135
|
+
Access-Control-Allow-Headers:
|
1136
|
+
- X-Requested-With
|
1137
|
+
Last-Modified:
|
1138
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1139
|
+
Cache-Control:
|
1140
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1141
|
+
X-Cache-Channel:
|
1142
|
+
- cartodb_user_384_db:table_1
|
1143
|
+
Content-Length:
|
1144
|
+
- '352'
|
1145
|
+
body:
|
1146
|
+
encoding: ASCII-8BIT
|
1147
|
+
string: ! '{"time":0.113,"total_rows":1,"rows":[{"id":22,"cartodb_id":22,"name":"gabujnypxcikefz","description":"otuhvcdjygrizmfqapskexnwlb","created_at":"2012-05-23T17:38:56.393Z","updated_at":"2012-05-23T17:38:56.393Z","the_geom":"0101000020E610000000000000002064400000000000002C40","the_geom_webmercator":"0101000020110F0000AB91486098177141484F548C48053841"}]}'
|
1148
|
+
http_version: '1.1'
|
1149
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1150
|
+
- request:
|
1151
|
+
method: post
|
1152
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1153
|
+
body:
|
1154
|
+
encoding: US-ASCII
|
1155
|
+
string: ''
|
1156
|
+
headers:
|
1157
|
+
Accept:
|
1158
|
+
- *70265673430640
|
1159
|
+
Authorization:
|
1160
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="a1YVaCD3OcsyByto1722QGWBFMS2uBhAxFcKE57In0",
|
1161
|
+
oauth_signature="k1VYv%2BHn%2BaUWmfbyfJs%2BaQkoP%2BA%3D", oauth_signature_method="HMAC-SHA1",
|
1162
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1163
|
+
oauth_version="1.0"
|
1164
|
+
response:
|
1165
|
+
status:
|
1166
|
+
code: 200
|
1167
|
+
message: OK
|
1168
|
+
headers:
|
1169
|
+
Server:
|
1170
|
+
- nginx
|
1171
|
+
Date:
|
1172
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1173
|
+
Content-Type:
|
1174
|
+
- application/json; charset=utf-8
|
1175
|
+
Connection:
|
1176
|
+
- keep-alive
|
1177
|
+
X-Powered-By:
|
1178
|
+
- Express
|
1179
|
+
Content-Disposition:
|
1180
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1181
|
+
GMT";
|
1182
|
+
Access-Control-Allow-Origin:
|
1183
|
+
- ! '*'
|
1184
|
+
Access-Control-Allow-Headers:
|
1185
|
+
- X-Requested-With
|
1186
|
+
Last-Modified:
|
1187
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1188
|
+
Cache-Control:
|
1189
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1190
|
+
X-Cache-Channel:
|
1191
|
+
- cartodb_user_384_db:table_1
|
1192
|
+
Content-Length:
|
1193
|
+
- '352'
|
1194
|
+
body:
|
1195
|
+
encoding: ASCII-8BIT
|
1196
|
+
string: ! '{"time":0.037,"total_rows":1,"rows":[{"id":23,"cartodb_id":23,"name":"cxszulgrakehpdy","description":"jfovikmxnuzrlhptbsyedqcgaw","created_at":"2012-05-23T17:38:56.602Z","updated_at":"2012-05-23T17:38:56.602Z","the_geom":"0101000020E610000000000000006066400000000000004740","the_geom_webmercator":"0101000020110F000087C6A1CDCA00734118AE184EDF0C5641"}]}'
|
1197
|
+
http_version: '1.1'
|
1198
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1199
|
+
- request:
|
1200
|
+
method: post
|
1201
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1202
|
+
body:
|
1203
|
+
encoding: US-ASCII
|
1204
|
+
string: ''
|
1205
|
+
headers:
|
1206
|
+
Accept:
|
1207
|
+
- *70265673430640
|
1208
|
+
Authorization:
|
1209
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="J4ReVhpTztAvVh7f1GZpCGAuFpJr96U6Kae6hzPTBg8",
|
1210
|
+
oauth_signature="Ase4jMxOuqErdwEXGgHqluOQPFc%3D", oauth_signature_method="HMAC-SHA1",
|
1211
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1212
|
+
oauth_version="1.0"
|
1213
|
+
response:
|
1214
|
+
status:
|
1215
|
+
code: 200
|
1216
|
+
message: OK
|
1217
|
+
headers:
|
1218
|
+
Server:
|
1219
|
+
- nginx
|
1220
|
+
Date:
|
1221
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1222
|
+
Content-Type:
|
1223
|
+
- application/json; charset=utf-8
|
1224
|
+
Connection:
|
1225
|
+
- keep-alive
|
1226
|
+
X-Powered-By:
|
1227
|
+
- Express
|
1228
|
+
Content-Disposition:
|
1229
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1230
|
+
GMT";
|
1231
|
+
Access-Control-Allow-Origin:
|
1232
|
+
- ! '*'
|
1233
|
+
Access-Control-Allow-Headers:
|
1234
|
+
- X-Requested-With
|
1235
|
+
Last-Modified:
|
1236
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1237
|
+
Cache-Control:
|
1238
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1239
|
+
X-Cache-Channel:
|
1240
|
+
- cartodb_user_384_db:table_1
|
1241
|
+
Content-Length:
|
1242
|
+
- '352'
|
1243
|
+
body:
|
1244
|
+
encoding: ASCII-8BIT
|
1245
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":24,"cartodb_id":24,"name":"efmnygvxcusakpb","description":"oqnalpeyuxfdcvbihskjmzgtwr","created_at":"2012-05-23T17:38:56.723Z","updated_at":"2012-05-23T17:38:56.723Z","the_geom":"0101000020E61000000000000000001C40000000000000F03F","the_geom_webmercator":"0101000020110F0000A8CA00DFC8C727412B432E49D22DFB40"}]}'
|
1246
|
+
http_version: '1.1'
|
1247
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1248
|
+
- request:
|
1249
|
+
method: post
|
1250
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1251
|
+
body:
|
1252
|
+
encoding: US-ASCII
|
1253
|
+
string: ''
|
1254
|
+
headers:
|
1255
|
+
Accept:
|
1256
|
+
- *70265673430640
|
1257
|
+
Authorization:
|
1258
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="jDFu0ffd57eNLJDDB8Brd6B7N7pXTt1indpXEjNKk",
|
1259
|
+
oauth_signature="ELWDRhRbKaEuhoQLzSXVkB1tHUo%3D", oauth_signature_method="HMAC-SHA1",
|
1260
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1261
|
+
oauth_version="1.0"
|
1262
|
+
response:
|
1263
|
+
status:
|
1264
|
+
code: 200
|
1265
|
+
message: OK
|
1266
|
+
headers:
|
1267
|
+
Server:
|
1268
|
+
- nginx
|
1269
|
+
Date:
|
1270
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1271
|
+
Content-Type:
|
1272
|
+
- application/json; charset=utf-8
|
1273
|
+
Connection:
|
1274
|
+
- keep-alive
|
1275
|
+
X-Powered-By:
|
1276
|
+
- Express
|
1277
|
+
Content-Disposition:
|
1278
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:56
|
1279
|
+
GMT";
|
1280
|
+
Access-Control-Allow-Origin:
|
1281
|
+
- ! '*'
|
1282
|
+
Access-Control-Allow-Headers:
|
1283
|
+
- X-Requested-With
|
1284
|
+
Last-Modified:
|
1285
|
+
- Wed, 23 May 2012 15:38:56 GMT
|
1286
|
+
Cache-Control:
|
1287
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1288
|
+
X-Cache-Channel:
|
1289
|
+
- cartodb_user_384_db:table_1
|
1290
|
+
Content-Length:
|
1291
|
+
- '352'
|
1292
|
+
body:
|
1293
|
+
encoding: ASCII-8BIT
|
1294
|
+
string: ! '{"time":0.035,"total_rows":1,"rows":[{"id":25,"cartodb_id":25,"name":"traugclvzpsdhik","description":"drycxwuonhzlkitvgfpmaqjsbe","created_at":"2012-05-23T17:38:56.855Z","updated_at":"2012-05-23T17:38:56.855Z","the_geom":"0101000020E610000000000000008056400000000000004840","the_geom_webmercator":"0101000020110F000093107C45F81B6341CFC16EB5B94B5741"}]}'
|
1295
|
+
http_version: '1.1'
|
1296
|
+
recorded_at: Wed, 23 May 2012 15:38:56 GMT
|
1297
|
+
- request:
|
1298
|
+
method: post
|
1299
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1300
|
+
body:
|
1301
|
+
encoding: US-ASCII
|
1302
|
+
string: ''
|
1303
|
+
headers:
|
1304
|
+
Accept:
|
1305
|
+
- *70265673430640
|
1306
|
+
Authorization:
|
1307
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="vrji7jK99l9kqggJrtDlplaErqYo1qDZ0EmmTuPN4",
|
1308
|
+
oauth_signature="WefnSd2kdHNSbHynTbHsSKgpC84%3D", oauth_signature_method="HMAC-SHA1",
|
1309
|
+
oauth_timestamp="1337787536", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1310
|
+
oauth_version="1.0"
|
1311
|
+
response:
|
1312
|
+
status:
|
1313
|
+
code: 200
|
1314
|
+
message: OK
|
1315
|
+
headers:
|
1316
|
+
Server:
|
1317
|
+
- nginx
|
1318
|
+
Date:
|
1319
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1320
|
+
Content-Type:
|
1321
|
+
- application/json; charset=utf-8
|
1322
|
+
Connection:
|
1323
|
+
- keep-alive
|
1324
|
+
X-Powered-By:
|
1325
|
+
- Express
|
1326
|
+
Content-Disposition:
|
1327
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1328
|
+
GMT";
|
1329
|
+
Access-Control-Allow-Origin:
|
1330
|
+
- ! '*'
|
1331
|
+
Access-Control-Allow-Headers:
|
1332
|
+
- X-Requested-With
|
1333
|
+
Last-Modified:
|
1334
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1335
|
+
Cache-Control:
|
1336
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1337
|
+
X-Cache-Channel:
|
1338
|
+
- cartodb_user_384_db:table_1
|
1339
|
+
Content-Length:
|
1340
|
+
- '352'
|
1341
|
+
body:
|
1342
|
+
encoding: ASCII-8BIT
|
1343
|
+
string: ! '{"time":0.067,"total_rows":1,"rows":[{"id":26,"cartodb_id":26,"name":"ifmdjkzrhslvunc","description":"zxqsrtdeyawokgfipjmunlbcvh","created_at":"2012-05-23T17:38:56.965Z","updated_at":"2012-05-23T17:38:56.965Z","the_geom":"0101000020E61000000000000000005A400000000000003840","the_geom_webmercator":"0101000020110F0000E8295C61F1146641F2ABFF0DC0014541"}]}'
|
1344
|
+
http_version: '1.1'
|
1345
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1346
|
+
- request:
|
1347
|
+
method: post
|
1348
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1349
|
+
body:
|
1350
|
+
encoding: US-ASCII
|
1351
|
+
string: ''
|
1352
|
+
headers:
|
1353
|
+
Accept:
|
1354
|
+
- *70265673430640
|
1355
|
+
Authorization:
|
1356
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="pFuSrQi570erBKhyciYz5d1LqhzHQAAVcUNAAuFNZHA",
|
1357
|
+
oauth_signature="SVduazmxE6E9FNzhG%2B%2FlBadN3QQ%3D", oauth_signature_method="HMAC-SHA1",
|
1358
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1359
|
+
oauth_version="1.0"
|
1360
|
+
response:
|
1361
|
+
status:
|
1362
|
+
code: 200
|
1363
|
+
message: OK
|
1364
|
+
headers:
|
1365
|
+
Server:
|
1366
|
+
- nginx
|
1367
|
+
Date:
|
1368
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1369
|
+
Content-Type:
|
1370
|
+
- application/json; charset=utf-8
|
1371
|
+
Connection:
|
1372
|
+
- keep-alive
|
1373
|
+
X-Powered-By:
|
1374
|
+
- Express
|
1375
|
+
Content-Disposition:
|
1376
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1377
|
+
GMT";
|
1378
|
+
Access-Control-Allow-Origin:
|
1379
|
+
- ! '*'
|
1380
|
+
Access-Control-Allow-Headers:
|
1381
|
+
- X-Requested-With
|
1382
|
+
Last-Modified:
|
1383
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1384
|
+
Cache-Control:
|
1385
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1386
|
+
X-Cache-Channel:
|
1387
|
+
- cartodb_user_384_db:table_1
|
1388
|
+
Content-Length:
|
1389
|
+
- '351'
|
1390
|
+
body:
|
1391
|
+
encoding: ASCII-8BIT
|
1392
|
+
string: ! '{"time":0.05,"total_rows":1,"rows":[{"id":27,"cartodb_id":27,"name":"qrsguxpwceztkjl","description":"drnkbqmsoyhfpaxzglwuivtejc","created_at":"2012-05-23T17:38:57.113Z","updated_at":"2012-05-23T17:38:57.113Z","the_geom":"0101000020E610000000000000000026400000000000805140","the_geom_webmercator":"0101000020110F000063E8126642AF324104A31975A51C6541"}]}'
|
1393
|
+
http_version: '1.1'
|
1394
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1395
|
+
- request:
|
1396
|
+
method: post
|
1397
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1398
|
+
body:
|
1399
|
+
encoding: US-ASCII
|
1400
|
+
string: ''
|
1401
|
+
headers:
|
1402
|
+
Accept:
|
1403
|
+
- *70265673430640
|
1404
|
+
Authorization:
|
1405
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="qNi0oLAvje5KrQ55nG8IJmZ15WrNWfa692BEkRo",
|
1406
|
+
oauth_signature="G55qHDEUkpuX6xWtgsYKproUmso%3D", oauth_signature_method="HMAC-SHA1",
|
1407
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1408
|
+
oauth_version="1.0"
|
1409
|
+
response:
|
1410
|
+
status:
|
1411
|
+
code: 200
|
1412
|
+
message: OK
|
1413
|
+
headers:
|
1414
|
+
Server:
|
1415
|
+
- nginx
|
1416
|
+
Date:
|
1417
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1418
|
+
Content-Type:
|
1419
|
+
- application/json; charset=utf-8
|
1420
|
+
Connection:
|
1421
|
+
- keep-alive
|
1422
|
+
X-Powered-By:
|
1423
|
+
- Express
|
1424
|
+
Content-Disposition:
|
1425
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1426
|
+
GMT";
|
1427
|
+
Access-Control-Allow-Origin:
|
1428
|
+
- ! '*'
|
1429
|
+
Access-Control-Allow-Headers:
|
1430
|
+
- X-Requested-With
|
1431
|
+
Last-Modified:
|
1432
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1433
|
+
Cache-Control:
|
1434
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1435
|
+
X-Cache-Channel:
|
1436
|
+
- cartodb_user_384_db:table_1
|
1437
|
+
Content-Length:
|
1438
|
+
- '352'
|
1439
|
+
body:
|
1440
|
+
encoding: ASCII-8BIT
|
1441
|
+
string: ! '{"time":0.057,"total_rows":1,"rows":[{"id":28,"cartodb_id":28,"name":"vforcjptiqzunya","description":"uijgptomrcyzqlwdxvsnahkbef","created_at":"2012-05-23T17:38:57.233Z","updated_at":"2012-05-23T17:38:57.233Z","the_geom":"0101000020E610000000000000002066400000000000000840","the_geom_webmercator":"0101000020110F00006D32EDDD6FCA7241CEFE83AF7C641441"}]}'
|
1442
|
+
http_version: '1.1'
|
1443
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1444
|
+
- request:
|
1445
|
+
method: post
|
1446
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1447
|
+
body:
|
1448
|
+
encoding: US-ASCII
|
1449
|
+
string: ''
|
1450
|
+
headers:
|
1451
|
+
Accept:
|
1452
|
+
- *70265673430640
|
1453
|
+
Authorization:
|
1454
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="ld6dOV7qGb7DDAHGqRrH37QpmmE5goU9sBtAHxXBMM",
|
1455
|
+
oauth_signature="F9AMgpqXanLLVhOa2nlQfKjEujA%3D", oauth_signature_method="HMAC-SHA1",
|
1456
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1457
|
+
oauth_version="1.0"
|
1458
|
+
response:
|
1459
|
+
status:
|
1460
|
+
code: 200
|
1461
|
+
message: OK
|
1462
|
+
headers:
|
1463
|
+
Server:
|
1464
|
+
- nginx
|
1465
|
+
Date:
|
1466
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1467
|
+
Content-Type:
|
1468
|
+
- application/json; charset=utf-8
|
1469
|
+
Connection:
|
1470
|
+
- keep-alive
|
1471
|
+
X-Powered-By:
|
1472
|
+
- Express
|
1473
|
+
Content-Disposition:
|
1474
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1475
|
+
GMT";
|
1476
|
+
Access-Control-Allow-Origin:
|
1477
|
+
- ! '*'
|
1478
|
+
Access-Control-Allow-Headers:
|
1479
|
+
- X-Requested-With
|
1480
|
+
Last-Modified:
|
1481
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1482
|
+
Cache-Control:
|
1483
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1484
|
+
X-Cache-Channel:
|
1485
|
+
- cartodb_user_384_db:table_1
|
1486
|
+
Content-Length:
|
1487
|
+
- '352'
|
1488
|
+
body:
|
1489
|
+
encoding: ASCII-8BIT
|
1490
|
+
string: ! '{"time":0.053,"total_rows":1,"rows":[{"id":29,"cartodb_id":29,"name":"xydtnbiwhgzvpje","description":"uyrvzbpntlfdjagexiqwcmhkos","created_at":"2012-05-23T17:38:57.364Z","updated_at":"2012-05-23T17:38:57.364Z","the_geom":"0101000020E61000000000000000C052400000000000003D40","the_geom_webmercator":"0101000020110F00004CC6CE7348D95F41673C78040FC14941"}]}'
|
1491
|
+
http_version: '1.1'
|
1492
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1493
|
+
- request:
|
1494
|
+
method: post
|
1495
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1496
|
+
body:
|
1497
|
+
encoding: US-ASCII
|
1498
|
+
string: ''
|
1499
|
+
headers:
|
1500
|
+
Accept:
|
1501
|
+
- *70265673430640
|
1502
|
+
Authorization:
|
1503
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="QMHdW4X5jeTRWz2Hbjet4Xx22YkZLCeDrkhPn6dixpg",
|
1504
|
+
oauth_signature="Lufx4CDcCp4zM%2B0IX9sDjw6WZqQ%3D", oauth_signature_method="HMAC-SHA1",
|
1505
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1506
|
+
oauth_version="1.0"
|
1507
|
+
response:
|
1508
|
+
status:
|
1509
|
+
code: 200
|
1510
|
+
message: OK
|
1511
|
+
headers:
|
1512
|
+
Server:
|
1513
|
+
- nginx
|
1514
|
+
Date:
|
1515
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1516
|
+
Content-Type:
|
1517
|
+
- application/json; charset=utf-8
|
1518
|
+
Connection:
|
1519
|
+
- keep-alive
|
1520
|
+
X-Powered-By:
|
1521
|
+
- Express
|
1522
|
+
Content-Disposition:
|
1523
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1524
|
+
GMT";
|
1525
|
+
Access-Control-Allow-Origin:
|
1526
|
+
- ! '*'
|
1527
|
+
Access-Control-Allow-Headers:
|
1528
|
+
- X-Requested-With
|
1529
|
+
Last-Modified:
|
1530
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1531
|
+
Cache-Control:
|
1532
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1533
|
+
X-Cache-Channel:
|
1534
|
+
- cartodb_user_384_db:table_1
|
1535
|
+
Content-Length:
|
1536
|
+
- '352'
|
1537
|
+
body:
|
1538
|
+
encoding: ASCII-8BIT
|
1539
|
+
string: ! '{"time":0.069,"total_rows":1,"rows":[{"id":30,"cartodb_id":30,"name":"vygpbuxzqrdltjo","description":"pxyvdwrzekgtmacqfbulnsihjo","created_at":"2012-05-23T17:38:57.499Z","updated_at":"2012-05-23T17:38:57.499Z","the_geom":"0101000020E610000000000000000020400000000000405140","the_geom_webmercator":"0101000020110F00003C0C4ADA772D2B4131711B5168816441"}]}'
|
1540
|
+
http_version: '1.1'
|
1541
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1542
|
+
- request:
|
1543
|
+
method: post
|
1544
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1545
|
+
body:
|
1546
|
+
encoding: US-ASCII
|
1547
|
+
string: ''
|
1548
|
+
headers:
|
1549
|
+
Accept:
|
1550
|
+
- *70265673430640
|
1551
|
+
Authorization:
|
1552
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="okI9ufDurqfBc680dL7ltcFdXTAD8bz2u7e7FcaU4c",
|
1553
|
+
oauth_signature="BlSvHU4XJxX%2BrI5r3zOgN%2BxK4jo%3D", oauth_signature_method="HMAC-SHA1",
|
1554
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1555
|
+
oauth_version="1.0"
|
1556
|
+
response:
|
1557
|
+
status:
|
1558
|
+
code: 200
|
1559
|
+
message: OK
|
1560
|
+
headers:
|
1561
|
+
Server:
|
1562
|
+
- nginx
|
1563
|
+
Date:
|
1564
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1565
|
+
Content-Type:
|
1566
|
+
- application/json; charset=utf-8
|
1567
|
+
Connection:
|
1568
|
+
- keep-alive
|
1569
|
+
X-Powered-By:
|
1570
|
+
- Express
|
1571
|
+
Content-Disposition:
|
1572
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1573
|
+
GMT";
|
1574
|
+
Access-Control-Allow-Origin:
|
1575
|
+
- ! '*'
|
1576
|
+
Access-Control-Allow-Headers:
|
1577
|
+
- X-Requested-With
|
1578
|
+
Last-Modified:
|
1579
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1580
|
+
Cache-Control:
|
1581
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1582
|
+
X-Cache-Channel:
|
1583
|
+
- cartodb_user_384_db:table_1
|
1584
|
+
Content-Length:
|
1585
|
+
- '352'
|
1586
|
+
body:
|
1587
|
+
encoding: ASCII-8BIT
|
1588
|
+
string: ! '{"time":0.038,"total_rows":1,"rows":[{"id":31,"cartodb_id":31,"name":"qtgskhmvpwjbnzy","description":"lciypmqsezvkbarnfdwgotjuhx","created_at":"2012-05-23T17:38:57.643Z","updated_at":"2012-05-23T17:38:57.643Z","the_geom":"0101000020E61000000000000000805E400000000000C05440","the_geom_webmercator":"0101000020110F00009F930E3C56E769417EDA597F0DFF7041"}]}'
|
1589
|
+
http_version: '1.1'
|
1590
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1591
|
+
- request:
|
1592
|
+
method: post
|
1593
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1594
|
+
body:
|
1595
|
+
encoding: US-ASCII
|
1596
|
+
string: ''
|
1597
|
+
headers:
|
1598
|
+
Accept:
|
1599
|
+
- *70265673430640
|
1600
|
+
Authorization:
|
1601
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="47KASq27ZTVRTaq58z06w2XiRJvhxcns9pG8Jup5E",
|
1602
|
+
oauth_signature="9oLYWe6pay%2FT5LhujDgmIsxUk1k%3D", oauth_signature_method="HMAC-SHA1",
|
1603
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1604
|
+
oauth_version="1.0"
|
1605
|
+
response:
|
1606
|
+
status:
|
1607
|
+
code: 200
|
1608
|
+
message: OK
|
1609
|
+
headers:
|
1610
|
+
Server:
|
1611
|
+
- nginx
|
1612
|
+
Date:
|
1613
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1614
|
+
Content-Type:
|
1615
|
+
- application/json; charset=utf-8
|
1616
|
+
Connection:
|
1617
|
+
- keep-alive
|
1618
|
+
X-Powered-By:
|
1619
|
+
- Express
|
1620
|
+
Content-Disposition:
|
1621
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1622
|
+
GMT";
|
1623
|
+
Access-Control-Allow-Origin:
|
1624
|
+
- ! '*'
|
1625
|
+
Access-Control-Allow-Headers:
|
1626
|
+
- X-Requested-With
|
1627
|
+
Last-Modified:
|
1628
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1629
|
+
Cache-Control:
|
1630
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1631
|
+
X-Cache-Channel:
|
1632
|
+
- cartodb_user_384_db:table_1
|
1633
|
+
Content-Length:
|
1634
|
+
- '352'
|
1635
|
+
body:
|
1636
|
+
encoding: ASCII-8BIT
|
1637
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":32,"cartodb_id":32,"name":"gpmoyxifcazuwej","description":"fryzethspbkawmoxnqudvjcilg","created_at":"2012-05-23T17:38:57.755Z","updated_at":"2012-05-23T17:38:57.755Z","the_geom":"0101000020E610000000000000008041400000000000000840","the_geom_webmercator":"0101000020110F000058FDC016BBB94D41CEFE83AF7C641441"}]}'
|
1638
|
+
http_version: '1.1'
|
1639
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1640
|
+
- request:
|
1641
|
+
method: post
|
1642
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1643
|
+
body:
|
1644
|
+
encoding: US-ASCII
|
1645
|
+
string: ''
|
1646
|
+
headers:
|
1647
|
+
Accept:
|
1648
|
+
- *70265673430640
|
1649
|
+
Authorization:
|
1650
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="2Uw6LflQqI9RRJENK1TndDvmYAF0Vav2YdO2jfRzY",
|
1651
|
+
oauth_signature="TZuTpUqxWvZywAUrcO89qLSdsM8%3D", oauth_signature_method="HMAC-SHA1",
|
1652
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1653
|
+
oauth_version="1.0"
|
1654
|
+
response:
|
1655
|
+
status:
|
1656
|
+
code: 200
|
1657
|
+
message: OK
|
1658
|
+
headers:
|
1659
|
+
Server:
|
1660
|
+
- nginx
|
1661
|
+
Date:
|
1662
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1663
|
+
Content-Type:
|
1664
|
+
- application/json; charset=utf-8
|
1665
|
+
Connection:
|
1666
|
+
- keep-alive
|
1667
|
+
X-Powered-By:
|
1668
|
+
- Express
|
1669
|
+
Content-Disposition:
|
1670
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:57
|
1671
|
+
GMT";
|
1672
|
+
Access-Control-Allow-Origin:
|
1673
|
+
- ! '*'
|
1674
|
+
Access-Control-Allow-Headers:
|
1675
|
+
- X-Requested-With
|
1676
|
+
Last-Modified:
|
1677
|
+
- Wed, 23 May 2012 15:38:57 GMT
|
1678
|
+
Cache-Control:
|
1679
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1680
|
+
X-Cache-Channel:
|
1681
|
+
- cartodb_user_384_db:table_1
|
1682
|
+
Content-Length:
|
1683
|
+
- '352'
|
1684
|
+
body:
|
1685
|
+
encoding: ASCII-8BIT
|
1686
|
+
string: ! '{"time":0.035,"total_rows":1,"rows":[{"id":33,"cartodb_id":33,"name":"mudbsvhtcaqrfgx","description":"azglskdcqtmxupjrewbhiyovnf","created_at":"2012-05-23T17:38:57.863Z","updated_at":"2012-05-23T17:38:57.863Z","the_geom":"0101000020E61000000000000000005A400000000000C05340","the_geom_webmercator":"0101000020110F0000E8295C61F1146641130A0F88C4786C41"}]}'
|
1687
|
+
http_version: '1.1'
|
1688
|
+
recorded_at: Wed, 23 May 2012 15:38:57 GMT
|
1689
|
+
- request:
|
1690
|
+
method: post
|
1691
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1692
|
+
body:
|
1693
|
+
encoding: US-ASCII
|
1694
|
+
string: ''
|
1695
|
+
headers:
|
1696
|
+
Accept:
|
1697
|
+
- *70265673430640
|
1698
|
+
Authorization:
|
1699
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="elkNrfJUhu75AD8PlzzcAuGUC07RQgQr2DsBT8F8jE",
|
1700
|
+
oauth_signature="V8fg1La4%2F329ye9COI%2F0%2FDZfNhw%3D", oauth_signature_method="HMAC-SHA1",
|
1701
|
+
oauth_timestamp="1337787537", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1702
|
+
oauth_version="1.0"
|
1703
|
+
response:
|
1704
|
+
status:
|
1705
|
+
code: 200
|
1706
|
+
message: OK
|
1707
|
+
headers:
|
1708
|
+
Server:
|
1709
|
+
- nginx
|
1710
|
+
Date:
|
1711
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1712
|
+
Content-Type:
|
1713
|
+
- application/json; charset=utf-8
|
1714
|
+
Connection:
|
1715
|
+
- keep-alive
|
1716
|
+
X-Powered-By:
|
1717
|
+
- Express
|
1718
|
+
Content-Disposition:
|
1719
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1720
|
+
GMT";
|
1721
|
+
Access-Control-Allow-Origin:
|
1722
|
+
- ! '*'
|
1723
|
+
Access-Control-Allow-Headers:
|
1724
|
+
- X-Requested-With
|
1725
|
+
Last-Modified:
|
1726
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1727
|
+
Cache-Control:
|
1728
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1729
|
+
X-Cache-Channel:
|
1730
|
+
- cartodb_user_384_db:table_1
|
1731
|
+
Content-Length:
|
1732
|
+
- '352'
|
1733
|
+
body:
|
1734
|
+
encoding: ASCII-8BIT
|
1735
|
+
string: ! '{"time":0.034,"total_rows":1,"rows":[{"id":34,"cartodb_id":34,"name":"qmszwohtlrpifau","description":"cijudaeynrmostqhblfgkpxzvw","created_at":"2012-05-23T17:38:57.972Z","updated_at":"2012-05-23T17:38:57.972Z","the_geom":"0101000020E610000000000000008054400000000000805440","the_geom_webmercator":"0101000020110F0000CF6FD7C720696141919E184F872E7041"}]}'
|
1736
|
+
http_version: '1.1'
|
1737
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1738
|
+
- request:
|
1739
|
+
method: post
|
1740
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1741
|
+
body:
|
1742
|
+
encoding: US-ASCII
|
1743
|
+
string: ''
|
1744
|
+
headers:
|
1745
|
+
Accept:
|
1746
|
+
- *70265673430640
|
1747
|
+
Authorization:
|
1748
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="eKGaG1iXMGcjH9ec57lZwsFa9nHiPvhWXblw8kUSg",
|
1749
|
+
oauth_signature="ki4XkTACZzVFx5l%2BEJ%2B3gc6OhWw%3D", oauth_signature_method="HMAC-SHA1",
|
1750
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1751
|
+
oauth_version="1.0"
|
1752
|
+
response:
|
1753
|
+
status:
|
1754
|
+
code: 200
|
1755
|
+
message: OK
|
1756
|
+
headers:
|
1757
|
+
Server:
|
1758
|
+
- nginx
|
1759
|
+
Date:
|
1760
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1761
|
+
Content-Type:
|
1762
|
+
- application/json; charset=utf-8
|
1763
|
+
Connection:
|
1764
|
+
- keep-alive
|
1765
|
+
X-Powered-By:
|
1766
|
+
- Express
|
1767
|
+
Content-Disposition:
|
1768
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1769
|
+
GMT";
|
1770
|
+
Access-Control-Allow-Origin:
|
1771
|
+
- ! '*'
|
1772
|
+
Access-Control-Allow-Headers:
|
1773
|
+
- X-Requested-With
|
1774
|
+
Last-Modified:
|
1775
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1776
|
+
Cache-Control:
|
1777
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1778
|
+
X-Cache-Channel:
|
1779
|
+
- cartodb_user_384_db:table_1
|
1780
|
+
Content-Length:
|
1781
|
+
- '352'
|
1782
|
+
body:
|
1783
|
+
encoding: ASCII-8BIT
|
1784
|
+
string: ! '{"time":0.034,"total_rows":1,"rows":[{"id":35,"cartodb_id":35,"name":"bxsarwqjgfkhndp","description":"faowjuzmeysqvghndxtbcpkril","created_at":"2012-05-23T17:38:58.080Z","updated_at":"2012-05-23T17:38:58.080Z","the_geom":"0101000020E610000000000000000031400000000000002640","the_geom_webmercator":"0101000020110F0000FAACEE574FE03C41271B49CDEACC3241"}]}'
|
1785
|
+
http_version: '1.1'
|
1786
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1787
|
+
- request:
|
1788
|
+
method: post
|
1789
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1790
|
+
body:
|
1791
|
+
encoding: US-ASCII
|
1792
|
+
string: ''
|
1793
|
+
headers:
|
1794
|
+
Accept:
|
1795
|
+
- *70265673430640
|
1796
|
+
Authorization:
|
1797
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="MOD5077LhoW0HNLVtiJeXSqTYu82zAiynTfSIWCBPM",
|
1798
|
+
oauth_signature="2XxIx06cxro00o5bzv8lMSIMZ1A%3D", oauth_signature_method="HMAC-SHA1",
|
1799
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1800
|
+
oauth_version="1.0"
|
1801
|
+
response:
|
1802
|
+
status:
|
1803
|
+
code: 200
|
1804
|
+
message: OK
|
1805
|
+
headers:
|
1806
|
+
Server:
|
1807
|
+
- nginx
|
1808
|
+
Date:
|
1809
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1810
|
+
Content-Type:
|
1811
|
+
- application/json; charset=utf-8
|
1812
|
+
Connection:
|
1813
|
+
- keep-alive
|
1814
|
+
X-Powered-By:
|
1815
|
+
- Express
|
1816
|
+
Content-Disposition:
|
1817
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1818
|
+
GMT";
|
1819
|
+
Access-Control-Allow-Origin:
|
1820
|
+
- ! '*'
|
1821
|
+
Access-Control-Allow-Headers:
|
1822
|
+
- X-Requested-With
|
1823
|
+
Last-Modified:
|
1824
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1825
|
+
Cache-Control:
|
1826
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1827
|
+
X-Cache-Channel:
|
1828
|
+
- cartodb_user_384_db:table_1
|
1829
|
+
Content-Length:
|
1830
|
+
- '352'
|
1831
|
+
body:
|
1832
|
+
encoding: ASCII-8BIT
|
1833
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":36,"cartodb_id":36,"name":"eobdamrpzqgjnxl","description":"extpojldcvyzribmhangkqufsw","created_at":"2012-05-23T17:38:58.188Z","updated_at":"2012-05-23T17:38:58.188Z","the_geom":"0101000020E61000000000000000002E400000000000004340","the_geom_webmercator":"0101000020110F0000726BA55CA07A39414D10067418785141"}]}'
|
1834
|
+
http_version: '1.1'
|
1835
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1836
|
+
- request:
|
1837
|
+
method: post
|
1838
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1839
|
+
body:
|
1840
|
+
encoding: US-ASCII
|
1841
|
+
string: ''
|
1842
|
+
headers:
|
1843
|
+
Accept:
|
1844
|
+
- *70265673430640
|
1845
|
+
Authorization:
|
1846
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="4goWIcn9QY1k8QSECHseH0M4ynMOPClpnxshtE4jE0",
|
1847
|
+
oauth_signature="hRivcYGywuWvChvlTIisFjz8%2FwQ%3D", oauth_signature_method="HMAC-SHA1",
|
1848
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1849
|
+
oauth_version="1.0"
|
1850
|
+
response:
|
1851
|
+
status:
|
1852
|
+
code: 200
|
1853
|
+
message: OK
|
1854
|
+
headers:
|
1855
|
+
Server:
|
1856
|
+
- nginx
|
1857
|
+
Date:
|
1858
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1859
|
+
Content-Type:
|
1860
|
+
- application/json; charset=utf-8
|
1861
|
+
Connection:
|
1862
|
+
- keep-alive
|
1863
|
+
X-Powered-By:
|
1864
|
+
- Express
|
1865
|
+
Content-Disposition:
|
1866
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1867
|
+
GMT";
|
1868
|
+
Access-Control-Allow-Origin:
|
1869
|
+
- ! '*'
|
1870
|
+
Access-Control-Allow-Headers:
|
1871
|
+
- X-Requested-With
|
1872
|
+
Last-Modified:
|
1873
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1874
|
+
Cache-Control:
|
1875
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1876
|
+
X-Cache-Channel:
|
1877
|
+
- cartodb_user_384_db:table_1
|
1878
|
+
Content-Length:
|
1879
|
+
- '352'
|
1880
|
+
body:
|
1881
|
+
encoding: ASCII-8BIT
|
1882
|
+
string: ! '{"time":0.046,"total_rows":1,"rows":[{"id":37,"cartodb_id":37,"name":"rixvsylbjdqngzc","description":"obmchjrtzxvfwagluqekidpnys","created_at":"2012-05-23T17:38:58.308Z","updated_at":"2012-05-23T17:38:58.308Z","the_geom":"0101000020E610000000000000000060400000000000405440","the_geom_webmercator":"0101000020110F0000300C4ADA772D6B41DAA52922E5EC6E41"}]}'
|
1883
|
+
http_version: '1.1'
|
1884
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1885
|
+
- request:
|
1886
|
+
method: post
|
1887
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1888
|
+
body:
|
1889
|
+
encoding: US-ASCII
|
1890
|
+
string: ''
|
1891
|
+
headers:
|
1892
|
+
Accept:
|
1893
|
+
- *70265673430640
|
1894
|
+
Authorization:
|
1895
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Nkf9QSiYTDpTMAx6wutrt9diOEM2twZ0vszgKk8PLQ",
|
1896
|
+
oauth_signature="7emTJwI%2F00hjOzIAQjOm%2BAohCIM%3D", oauth_signature_method="HMAC-SHA1",
|
1897
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1898
|
+
oauth_version="1.0"
|
1899
|
+
response:
|
1900
|
+
status:
|
1901
|
+
code: 200
|
1902
|
+
message: OK
|
1903
|
+
headers:
|
1904
|
+
Server:
|
1905
|
+
- nginx
|
1906
|
+
Date:
|
1907
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1908
|
+
Content-Type:
|
1909
|
+
- application/json; charset=utf-8
|
1910
|
+
Connection:
|
1911
|
+
- keep-alive
|
1912
|
+
X-Powered-By:
|
1913
|
+
- Express
|
1914
|
+
Content-Disposition:
|
1915
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1916
|
+
GMT";
|
1917
|
+
Access-Control-Allow-Origin:
|
1918
|
+
- ! '*'
|
1919
|
+
Access-Control-Allow-Headers:
|
1920
|
+
- X-Requested-With
|
1921
|
+
Last-Modified:
|
1922
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1923
|
+
Cache-Control:
|
1924
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1925
|
+
X-Cache-Channel:
|
1926
|
+
- cartodb_user_384_db:table_1
|
1927
|
+
Content-Length:
|
1928
|
+
- '352'
|
1929
|
+
body:
|
1930
|
+
encoding: ASCII-8BIT
|
1931
|
+
string: ! '{"time":0.068,"total_rows":1,"rows":[{"id":38,"cartodb_id":38,"name":"ogyhcipkvldbzqs","description":"stfcwjauxoqiylvgmbenprhdkz","created_at":"2012-05-23T17:38:58.428Z","updated_at":"2012-05-23T17:38:58.428Z","the_geom":"0101000020E61000000000000000C05D400000000000405640","the_geom_webmercator":"0101000020110F000057D7F06C45446941C68C55BF0CD77C41"}]}'
|
1932
|
+
http_version: '1.1'
|
1933
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1934
|
+
- request:
|
1935
|
+
method: post
|
1936
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1937
|
+
body:
|
1938
|
+
encoding: US-ASCII
|
1939
|
+
string: ''
|
1940
|
+
headers:
|
1941
|
+
Accept:
|
1942
|
+
- *70265673430640
|
1943
|
+
Authorization:
|
1944
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="iZAUq4xDK8wTTOnWlE1ZirjM1VKkD88xu3iSAhYhNug",
|
1945
|
+
oauth_signature="5Tv38ZUXYIpFHH7dP%2B0G9BdnGNo%3D", oauth_signature_method="HMAC-SHA1",
|
1946
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1947
|
+
oauth_version="1.0"
|
1948
|
+
response:
|
1949
|
+
status:
|
1950
|
+
code: 200
|
1951
|
+
message: OK
|
1952
|
+
headers:
|
1953
|
+
Server:
|
1954
|
+
- nginx
|
1955
|
+
Date:
|
1956
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1957
|
+
Content-Type:
|
1958
|
+
- application/json; charset=utf-8
|
1959
|
+
Connection:
|
1960
|
+
- keep-alive
|
1961
|
+
X-Powered-By:
|
1962
|
+
- Express
|
1963
|
+
Content-Disposition:
|
1964
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
1965
|
+
GMT";
|
1966
|
+
Access-Control-Allow-Origin:
|
1967
|
+
- ! '*'
|
1968
|
+
Access-Control-Allow-Headers:
|
1969
|
+
- X-Requested-With
|
1970
|
+
Last-Modified:
|
1971
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
1972
|
+
Cache-Control:
|
1973
|
+
- no-cache,max-age=3600,must-revalidate, public
|
1974
|
+
X-Cache-Channel:
|
1975
|
+
- cartodb_user_384_db:table_1
|
1976
|
+
Content-Length:
|
1977
|
+
- '352'
|
1978
|
+
body:
|
1979
|
+
encoding: ASCII-8BIT
|
1980
|
+
string: ! '{"time":0.065,"total_rows":1,"rows":[{"id":39,"cartodb_id":39,"name":"owkahpzvblmqjfr","description":"dcgurtahnifqmkjxolvysezwpb","created_at":"2012-05-23T17:38:58.596Z","updated_at":"2012-05-23T17:38:58.596Z","the_geom":"0101000020E610000000000000000055400000000000805240","the_geom_webmercator":"0101000020110F0000019840A7D6D56141D988CC261BDF6741"}]}'
|
1981
|
+
http_version: '1.1'
|
1982
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
1983
|
+
- request:
|
1984
|
+
method: post
|
1985
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
1986
|
+
body:
|
1987
|
+
encoding: US-ASCII
|
1988
|
+
string: ''
|
1989
|
+
headers:
|
1990
|
+
Accept:
|
1991
|
+
- *70265673430640
|
1992
|
+
Authorization:
|
1993
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="zDIrQRj73ZkiXWBqDdodX4FqBQ4eVqNmNXacHpS2e0",
|
1994
|
+
oauth_signature="QfEWH3D8i5yflVBX1Lnd956bLks%3D", oauth_signature_method="HMAC-SHA1",
|
1995
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
1996
|
+
oauth_version="1.0"
|
1997
|
+
response:
|
1998
|
+
status:
|
1999
|
+
code: 200
|
2000
|
+
message: OK
|
2001
|
+
headers:
|
2002
|
+
Server:
|
2003
|
+
- nginx
|
2004
|
+
Date:
|
2005
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
2006
|
+
Content-Type:
|
2007
|
+
- application/json; charset=utf-8
|
2008
|
+
Connection:
|
2009
|
+
- keep-alive
|
2010
|
+
X-Powered-By:
|
2011
|
+
- Express
|
2012
|
+
Content-Disposition:
|
2013
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
2014
|
+
GMT";
|
2015
|
+
Access-Control-Allow-Origin:
|
2016
|
+
- ! '*'
|
2017
|
+
Access-Control-Allow-Headers:
|
2018
|
+
- X-Requested-With
|
2019
|
+
Last-Modified:
|
2020
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
2021
|
+
Cache-Control:
|
2022
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2023
|
+
X-Cache-Channel:
|
2024
|
+
- cartodb_user_384_db:table_1
|
2025
|
+
Content-Length:
|
2026
|
+
- '352'
|
2027
|
+
body:
|
2028
|
+
encoding: ASCII-8BIT
|
2029
|
+
string: ! '{"time":0.062,"total_rows":1,"rows":[{"id":40,"cartodb_id":40,"name":"uxeyjsgcwqdrmio","description":"spxyghqbekrdiwafmzntovcjul","created_at":"2012-05-23T17:38:58.738Z","updated_at":"2012-05-23T17:38:58.738Z","the_geom":"0101000020E61000000000000000805A400000000000405140","the_geom_webmercator":"0101000020110F00001A52C540A781664131711B5168816441"}]}'
|
2030
|
+
http_version: '1.1'
|
2031
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
2032
|
+
- request:
|
2033
|
+
method: post
|
2034
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2035
|
+
body:
|
2036
|
+
encoding: US-ASCII
|
2037
|
+
string: ''
|
2038
|
+
headers:
|
2039
|
+
Accept:
|
2040
|
+
- *70265673430640
|
2041
|
+
Authorization:
|
2042
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="g4k6T0lqh4wPu3oFE2hbErIfhUaiSWUbfbcS9y1XNFU",
|
2043
|
+
oauth_signature="jUssd%2BIzq60oVrr74yQlx0CPkcY%3D", oauth_signature_method="HMAC-SHA1",
|
2044
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2045
|
+
oauth_version="1.0"
|
2046
|
+
response:
|
2047
|
+
status:
|
2048
|
+
code: 200
|
2049
|
+
message: OK
|
2050
|
+
headers:
|
2051
|
+
Server:
|
2052
|
+
- nginx
|
2053
|
+
Date:
|
2054
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
2055
|
+
Content-Type:
|
2056
|
+
- application/json; charset=utf-8
|
2057
|
+
Connection:
|
2058
|
+
- keep-alive
|
2059
|
+
X-Powered-By:
|
2060
|
+
- Express
|
2061
|
+
Content-Disposition:
|
2062
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:58
|
2063
|
+
GMT";
|
2064
|
+
Access-Control-Allow-Origin:
|
2065
|
+
- ! '*'
|
2066
|
+
Access-Control-Allow-Headers:
|
2067
|
+
- X-Requested-With
|
2068
|
+
Last-Modified:
|
2069
|
+
- Wed, 23 May 2012 15:38:58 GMT
|
2070
|
+
Cache-Control:
|
2071
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2072
|
+
X-Cache-Channel:
|
2073
|
+
- cartodb_user_384_db:table_1
|
2074
|
+
Content-Length:
|
2075
|
+
- '352'
|
2076
|
+
body:
|
2077
|
+
encoding: ASCII-8BIT
|
2078
|
+
string: ! '{"time":0.041,"total_rows":1,"rows":[{"id":41,"cartodb_id":41,"name":"ztpqvxcfksairdg","description":"xmfvtibhwlnjracugeqpodykzs","created_at":"2012-05-23T17:38:58.874Z","updated_at":"2012-05-23T17:38:58.874Z","the_geom":"0101000020E61000000000000000804A400000000000002C40","the_geom_webmercator":"0101000020110F00001A52C540A7815641484F548C48053841"}]}'
|
2079
|
+
http_version: '1.1'
|
2080
|
+
recorded_at: Wed, 23 May 2012 15:38:58 GMT
|
2081
|
+
- request:
|
2082
|
+
method: post
|
2083
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2084
|
+
body:
|
2085
|
+
encoding: US-ASCII
|
2086
|
+
string: ''
|
2087
|
+
headers:
|
2088
|
+
Accept:
|
2089
|
+
- *70265673430640
|
2090
|
+
Authorization:
|
2091
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="nitiFnMFxomMSSondcAcN4eQXEy6AeaODjEmTq1s",
|
2092
|
+
oauth_signature="NZ3aOhec9utEPPv3Va0UxHx8ZEc%3D", oauth_signature_method="HMAC-SHA1",
|
2093
|
+
oauth_timestamp="1337787538", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2094
|
+
oauth_version="1.0"
|
2095
|
+
response:
|
2096
|
+
status:
|
2097
|
+
code: 200
|
2098
|
+
message: OK
|
2099
|
+
headers:
|
2100
|
+
Server:
|
2101
|
+
- nginx
|
2102
|
+
Date:
|
2103
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2104
|
+
Content-Type:
|
2105
|
+
- application/json; charset=utf-8
|
2106
|
+
Connection:
|
2107
|
+
- keep-alive
|
2108
|
+
X-Powered-By:
|
2109
|
+
- Express
|
2110
|
+
Content-Disposition:
|
2111
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2112
|
+
GMT";
|
2113
|
+
Access-Control-Allow-Origin:
|
2114
|
+
- ! '*'
|
2115
|
+
Access-Control-Allow-Headers:
|
2116
|
+
- X-Requested-With
|
2117
|
+
Last-Modified:
|
2118
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2119
|
+
Cache-Control:
|
2120
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2121
|
+
X-Cache-Channel:
|
2122
|
+
- cartodb_user_384_db:table_1
|
2123
|
+
Content-Length:
|
2124
|
+
- '352'
|
2125
|
+
body:
|
2126
|
+
encoding: ASCII-8BIT
|
2127
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":42,"cartodb_id":42,"name":"hkjvypnwcostaeb","description":"rhubwqgisedafxkmozpcvjnylt","created_at":"2012-05-23T17:38:58.989Z","updated_at":"2012-05-23T17:38:58.989Z","the_geom":"0101000020E61000000000000000C05D400000000000804B40","the_geom_webmercator":"0101000020110F000057D7F06C454469410A3B3C8752155C41"}]}'
|
2128
|
+
http_version: '1.1'
|
2129
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2130
|
+
- request:
|
2131
|
+
method: post
|
2132
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2133
|
+
body:
|
2134
|
+
encoding: US-ASCII
|
2135
|
+
string: ''
|
2136
|
+
headers:
|
2137
|
+
Accept:
|
2138
|
+
- *70265673430640
|
2139
|
+
Authorization:
|
2140
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="pRANRZ10nB4mdygNNBEqjCfFTR9ErAiKmHBvtmSe450",
|
2141
|
+
oauth_signature="tQ7jO%2BB%2BYG%2BCxWJhkv3R9V3Ntu0%3D", oauth_signature_method="HMAC-SHA1",
|
2142
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2143
|
+
oauth_version="1.0"
|
2144
|
+
response:
|
2145
|
+
status:
|
2146
|
+
code: 200
|
2147
|
+
message: OK
|
2148
|
+
headers:
|
2149
|
+
Server:
|
2150
|
+
- nginx
|
2151
|
+
Date:
|
2152
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2153
|
+
Content-Type:
|
2154
|
+
- application/json; charset=utf-8
|
2155
|
+
Connection:
|
2156
|
+
- keep-alive
|
2157
|
+
X-Powered-By:
|
2158
|
+
- Express
|
2159
|
+
Content-Disposition:
|
2160
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2161
|
+
GMT";
|
2162
|
+
Access-Control-Allow-Origin:
|
2163
|
+
- ! '*'
|
2164
|
+
Access-Control-Allow-Headers:
|
2165
|
+
- X-Requested-With
|
2166
|
+
Last-Modified:
|
2167
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2168
|
+
Cache-Control:
|
2169
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2170
|
+
X-Cache-Channel:
|
2171
|
+
- cartodb_user_384_db:table_1
|
2172
|
+
Content-Length:
|
2173
|
+
- '352'
|
2174
|
+
body:
|
2175
|
+
encoding: ASCII-8BIT
|
2176
|
+
string: ! '{"time":0.032,"total_rows":1,"rows":[{"id":43,"cartodb_id":43,"name":"ifqlzyrsbtunhgm","description":"sblwhrkvxoganeidzpfqtymucj","created_at":"2012-05-23T17:38:59.100Z","updated_at":"2012-05-23T17:38:59.100Z","the_geom":"0101000020E610000000000000000050400000000000003A40","the_geom_webmercator":"0101000020110F0000300C4ADA772D5B4161A5C37894E14641"}]}'
|
2177
|
+
http_version: '1.1'
|
2178
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2179
|
+
- request:
|
2180
|
+
method: post
|
2181
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2182
|
+
body:
|
2183
|
+
encoding: US-ASCII
|
2184
|
+
string: ''
|
2185
|
+
headers:
|
2186
|
+
Accept:
|
2187
|
+
- *70265673430640
|
2188
|
+
Authorization:
|
2189
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="mjWjcV6RTfqaPAv8wPFIEm195V540ZjH9J1btWbg",
|
2190
|
+
oauth_signature="Uxv9HKTYPlA4qKp%2Bkrii9HrVOE8%3D", oauth_signature_method="HMAC-SHA1",
|
2191
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2192
|
+
oauth_version="1.0"
|
2193
|
+
response:
|
2194
|
+
status:
|
2195
|
+
code: 200
|
2196
|
+
message: OK
|
2197
|
+
headers:
|
2198
|
+
Server:
|
2199
|
+
- nginx
|
2200
|
+
Date:
|
2201
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2202
|
+
Content-Type:
|
2203
|
+
- application/json; charset=utf-8
|
2204
|
+
Connection:
|
2205
|
+
- keep-alive
|
2206
|
+
X-Powered-By:
|
2207
|
+
- Express
|
2208
|
+
Content-Disposition:
|
2209
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2210
|
+
GMT";
|
2211
|
+
Access-Control-Allow-Origin:
|
2212
|
+
- ! '*'
|
2213
|
+
Access-Control-Allow-Headers:
|
2214
|
+
- X-Requested-With
|
2215
|
+
Last-Modified:
|
2216
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2217
|
+
Cache-Control:
|
2218
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2219
|
+
X-Cache-Channel:
|
2220
|
+
- cartodb_user_384_db:table_1
|
2221
|
+
Content-Length:
|
2222
|
+
- '352'
|
2223
|
+
body:
|
2224
|
+
encoding: ASCII-8BIT
|
2225
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":44,"cartodb_id":44,"name":"gynhrevlbkjxapd","description":"dogklfyrxwjbhvmqcniaeustpz","created_at":"2012-05-23T17:38:59.205Z","updated_at":"2012-05-23T17:38:59.205Z","the_geom":"0101000020E61000000000000000405D400000000000003240","the_geom_webmercator":"0101000020110F000025AF878D8FD7684181C6748B2C173F41"}]}'
|
2226
|
+
http_version: '1.1'
|
2227
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2228
|
+
- request:
|
2229
|
+
method: post
|
2230
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2231
|
+
body:
|
2232
|
+
encoding: US-ASCII
|
2233
|
+
string: ''
|
2234
|
+
headers:
|
2235
|
+
Accept:
|
2236
|
+
- *70265673430640
|
2237
|
+
Authorization:
|
2238
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="gOLtSBoRwLCZPElmGniCHTZ9qub1O0Y190oIvnCQs",
|
2239
|
+
oauth_signature="oCays1l8JygvuGmwywKwNnUiMD8%3D", oauth_signature_method="HMAC-SHA1",
|
2240
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2241
|
+
oauth_version="1.0"
|
2242
|
+
response:
|
2243
|
+
status:
|
2244
|
+
code: 200
|
2245
|
+
message: OK
|
2246
|
+
headers:
|
2247
|
+
Server:
|
2248
|
+
- nginx
|
2249
|
+
Date:
|
2250
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2251
|
+
Content-Type:
|
2252
|
+
- application/json; charset=utf-8
|
2253
|
+
Connection:
|
2254
|
+
- keep-alive
|
2255
|
+
X-Powered-By:
|
2256
|
+
- Express
|
2257
|
+
Content-Disposition:
|
2258
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2259
|
+
GMT";
|
2260
|
+
Access-Control-Allow-Origin:
|
2261
|
+
- ! '*'
|
2262
|
+
Access-Control-Allow-Headers:
|
2263
|
+
- X-Requested-With
|
2264
|
+
Last-Modified:
|
2265
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2266
|
+
Cache-Control:
|
2267
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2268
|
+
X-Cache-Channel:
|
2269
|
+
- cartodb_user_384_db:table_1
|
2270
|
+
Content-Length:
|
2271
|
+
- '352'
|
2272
|
+
body:
|
2273
|
+
encoding: ASCII-8BIT
|
2274
|
+
string: ! '{"time":0.036,"total_rows":1,"rows":[{"id":45,"cartodb_id":45,"name":"pourxvkfhdcbisl","description":"ejwmrkluiavgqzbftsodpncyxh","created_at":"2012-05-23T17:38:59.322Z","updated_at":"2012-05-23T17:38:59.322Z","the_geom":"0101000020E610000000000000000053400000000000004E40","the_geom_webmercator":"0101000020110F00003EF79B29FF2260415864793C6F056041"}]}'
|
2275
|
+
http_version: '1.1'
|
2276
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2277
|
+
- request:
|
2278
|
+
method: post
|
2279
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2280
|
+
body:
|
2281
|
+
encoding: US-ASCII
|
2282
|
+
string: ''
|
2283
|
+
headers:
|
2284
|
+
Accept:
|
2285
|
+
- *70265673430640
|
2286
|
+
Authorization:
|
2287
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="EnlQa8DgsbCIB6GlG5yfSKOpYjKTnq6FZFatE0w",
|
2288
|
+
oauth_signature="pXyzADeR6HwBeZ8JKI3Ri7gM72w%3D", oauth_signature_method="HMAC-SHA1",
|
2289
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2290
|
+
oauth_version="1.0"
|
2291
|
+
response:
|
2292
|
+
status:
|
2293
|
+
code: 200
|
2294
|
+
message: OK
|
2295
|
+
headers:
|
2296
|
+
Server:
|
2297
|
+
- nginx
|
2298
|
+
Date:
|
2299
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2300
|
+
Content-Type:
|
2301
|
+
- application/json; charset=utf-8
|
2302
|
+
Connection:
|
2303
|
+
- keep-alive
|
2304
|
+
X-Powered-By:
|
2305
|
+
- Express
|
2306
|
+
Content-Disposition:
|
2307
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2308
|
+
GMT";
|
2309
|
+
Access-Control-Allow-Origin:
|
2310
|
+
- ! '*'
|
2311
|
+
Access-Control-Allow-Headers:
|
2312
|
+
- X-Requested-With
|
2313
|
+
Last-Modified:
|
2314
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2315
|
+
Cache-Control:
|
2316
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2317
|
+
X-Cache-Channel:
|
2318
|
+
- cartodb_user_384_db:table_1
|
2319
|
+
Content-Length:
|
2320
|
+
- '352'
|
2321
|
+
body:
|
2322
|
+
encoding: ASCII-8BIT
|
2323
|
+
string: ! '{"time":0.032,"total_rows":1,"rows":[{"id":46,"cartodb_id":46,"name":"bzjganpmdftwcuk","description":"cgzdosbnwmltfuxakvijqprhey","created_at":"2012-05-23T17:38:59.432Z","updated_at":"2012-05-23T17:38:59.432Z","the_geom":"0101000020E610000000000000008044400000000000004240","the_geom_webmercator":"0101000020110F0000CF6FD7C720695141C692CF57D3675041"}]}'
|
2324
|
+
http_version: '1.1'
|
2325
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2326
|
+
- request:
|
2327
|
+
method: post
|
2328
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2329
|
+
body:
|
2330
|
+
encoding: US-ASCII
|
2331
|
+
string: ''
|
2332
|
+
headers:
|
2333
|
+
Accept:
|
2334
|
+
- *70265673430640
|
2335
|
+
Authorization:
|
2336
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="A8wXemtWabtfsMWtpH5axEDWuvXshF9w1TesVKVErE",
|
2337
|
+
oauth_signature="egddwn1RhcPLLfzBYvHqhBXPAXQ%3D", oauth_signature_method="HMAC-SHA1",
|
2338
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2339
|
+
oauth_version="1.0"
|
2340
|
+
response:
|
2341
|
+
status:
|
2342
|
+
code: 200
|
2343
|
+
message: OK
|
2344
|
+
headers:
|
2345
|
+
Server:
|
2346
|
+
- nginx
|
2347
|
+
Date:
|
2348
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2349
|
+
Content-Type:
|
2350
|
+
- application/json; charset=utf-8
|
2351
|
+
Connection:
|
2352
|
+
- keep-alive
|
2353
|
+
X-Powered-By:
|
2354
|
+
- Express
|
2355
|
+
Content-Disposition:
|
2356
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2357
|
+
GMT";
|
2358
|
+
Access-Control-Allow-Origin:
|
2359
|
+
- ! '*'
|
2360
|
+
Access-Control-Allow-Headers:
|
2361
|
+
- X-Requested-With
|
2362
|
+
Last-Modified:
|
2363
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2364
|
+
Cache-Control:
|
2365
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2366
|
+
X-Cache-Channel:
|
2367
|
+
- cartodb_user_384_db:table_1
|
2368
|
+
Content-Length:
|
2369
|
+
- '352'
|
2370
|
+
body:
|
2371
|
+
encoding: ASCII-8BIT
|
2372
|
+
string: ! '{"time":0.033,"total_rows":1,"rows":[{"id":47,"cartodb_id":47,"name":"gsohwtdfrmjucpv","description":"avmfzwieuylptokxcdjqrsnghb","created_at":"2012-05-23T17:38:59.540Z","updated_at":"2012-05-23T17:38:59.540Z","the_geom":"0101000020E610000000000000008045400000000000004240","the_geom_webmercator":"0101000020110F000031C0A9868C425241C692CF57D3675041"}]}'
|
2373
|
+
http_version: '1.1'
|
2374
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2375
|
+
- request:
|
2376
|
+
method: post
|
2377
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2378
|
+
body:
|
2379
|
+
encoding: US-ASCII
|
2380
|
+
string: ''
|
2381
|
+
headers:
|
2382
|
+
Accept:
|
2383
|
+
- *70265673430640
|
2384
|
+
Authorization:
|
2385
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="zLLHlS85scMmNXiWtHiuosRnAWWdegtmAPzfLZkIc",
|
2386
|
+
oauth_signature="DssPcxZc8HfASmsYBhCXKx08l5g%3D", oauth_signature_method="HMAC-SHA1",
|
2387
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2388
|
+
oauth_version="1.0"
|
2389
|
+
response:
|
2390
|
+
status:
|
2391
|
+
code: 200
|
2392
|
+
message: OK
|
2393
|
+
headers:
|
2394
|
+
Server:
|
2395
|
+
- nginx
|
2396
|
+
Date:
|
2397
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2398
|
+
Content-Type:
|
2399
|
+
- application/json; charset=utf-8
|
2400
|
+
Connection:
|
2401
|
+
- keep-alive
|
2402
|
+
X-Powered-By:
|
2403
|
+
- Express
|
2404
|
+
Content-Disposition:
|
2405
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2406
|
+
GMT";
|
2407
|
+
Access-Control-Allow-Origin:
|
2408
|
+
- ! '*'
|
2409
|
+
Access-Control-Allow-Headers:
|
2410
|
+
- X-Requested-With
|
2411
|
+
Last-Modified:
|
2412
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2413
|
+
Cache-Control:
|
2414
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2415
|
+
X-Cache-Channel:
|
2416
|
+
- cartodb_user_384_db:table_1
|
2417
|
+
Content-Length:
|
2418
|
+
- '352'
|
2419
|
+
body:
|
2420
|
+
encoding: ASCII-8BIT
|
2421
|
+
string: ! '{"time":0.108,"total_rows":1,"rows":[{"id":48,"cartodb_id":48,"name":"xqrscykhdwfaojz","description":"dznsafptcywlobmxvkriqgjhue","created_at":"2012-05-23T17:38:59.647Z","updated_at":"2012-05-23T17:38:59.647Z","the_geom":"0101000020E61000000000000000C058400000000000C05240","the_geom_webmercator":"0101000020110F00006E45D5B22A0565415070956392AA6841"}]}'
|
2422
|
+
http_version: '1.1'
|
2423
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2424
|
+
- request:
|
2425
|
+
method: post
|
2426
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2427
|
+
body:
|
2428
|
+
encoding: US-ASCII
|
2429
|
+
string: ''
|
2430
|
+
headers:
|
2431
|
+
Accept:
|
2432
|
+
- *70265673430640
|
2433
|
+
Authorization:
|
2434
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="jfSH9iFwvivNxF8ixa1i7ufhTIAnuvBk7u4tDOYPi44",
|
2435
|
+
oauth_signature="hyVvvqIzd3x5g8894pf%2BxkLy3jQ%3D", oauth_signature_method="HMAC-SHA1",
|
2436
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2437
|
+
oauth_version="1.0"
|
2438
|
+
response:
|
2439
|
+
status:
|
2440
|
+
code: 200
|
2441
|
+
message: OK
|
2442
|
+
headers:
|
2443
|
+
Server:
|
2444
|
+
- nginx
|
2445
|
+
Date:
|
2446
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2447
|
+
Content-Type:
|
2448
|
+
- application/json; charset=utf-8
|
2449
|
+
Connection:
|
2450
|
+
- keep-alive
|
2451
|
+
X-Powered-By:
|
2452
|
+
- Express
|
2453
|
+
Content-Disposition:
|
2454
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:38:59
|
2455
|
+
GMT";
|
2456
|
+
Access-Control-Allow-Origin:
|
2457
|
+
- ! '*'
|
2458
|
+
Access-Control-Allow-Headers:
|
2459
|
+
- X-Requested-With
|
2460
|
+
Last-Modified:
|
2461
|
+
- Wed, 23 May 2012 15:38:59 GMT
|
2462
|
+
Cache-Control:
|
2463
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2464
|
+
X-Cache-Channel:
|
2465
|
+
- cartodb_user_384_db:table_1
|
2466
|
+
Content-Length:
|
2467
|
+
- '352'
|
2468
|
+
body:
|
2469
|
+
encoding: ASCII-8BIT
|
2470
|
+
string: ! '{"time":0.065,"total_rows":1,"rows":[{"id":49,"cartodb_id":49,"name":"hoaqgulmjksywvd","description":"hukqitoylcwrdfgaxvszjnbpem","created_at":"2012-05-23T17:38:59.830Z","updated_at":"2012-05-23T17:38:59.830Z","the_geom":"0101000020E61000000000000000E064400000000000805240","the_geom_webmercator":"0101000020110F0000F44D662FA9BA7141D988CC261BDF6741"}]}'
|
2471
|
+
http_version: '1.1'
|
2472
|
+
recorded_at: Wed, 23 May 2012 15:38:59 GMT
|
2473
|
+
- request:
|
2474
|
+
method: post
|
2475
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
|
2476
|
+
body:
|
2477
|
+
encoding: US-ASCII
|
2478
|
+
string: ''
|
2479
|
+
headers:
|
2480
|
+
Accept:
|
2481
|
+
- *70265673430640
|
2482
|
+
Authorization:
|
2483
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="yCFN7ldykV7RJkc5B5bywH0fW5b0gF8xxN9hc74",
|
2484
|
+
oauth_signature="XS7rG0VdJotRcF2i6KHxa7QdR6M%3D", oauth_signature_method="HMAC-SHA1",
|
2485
|
+
oauth_timestamp="1337787539", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2486
|
+
oauth_version="1.0"
|
2487
|
+
response:
|
2488
|
+
status:
|
2489
|
+
code: 200
|
2490
|
+
message: OK
|
2491
|
+
headers:
|
2492
|
+
Server:
|
2493
|
+
- nginx
|
2494
|
+
Date:
|
2495
|
+
- Wed, 23 May 2012 15:39:00 GMT
|
2496
|
+
Content-Type:
|
2497
|
+
- application/json; charset=utf-8
|
2498
|
+
Connection:
|
2499
|
+
- keep-alive
|
2500
|
+
X-Powered-By:
|
2501
|
+
- Express
|
2502
|
+
Content-Disposition:
|
2503
|
+
- inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 15:39:00
|
2504
|
+
GMT";
|
2505
|
+
Access-Control-Allow-Origin:
|
2506
|
+
- ! '*'
|
2507
|
+
Access-Control-Allow-Headers:
|
2508
|
+
- X-Requested-With
|
2509
|
+
Last-Modified:
|
2510
|
+
- Wed, 23 May 2012 15:39:00 GMT
|
2511
|
+
Cache-Control:
|
2512
|
+
- no-cache,max-age=3600,must-revalidate, public
|
2513
|
+
X-Cache-Channel:
|
2514
|
+
- cartodb_user_384_db:table_1
|
2515
|
+
Content-Length:
|
2516
|
+
- '352'
|
2517
|
+
body:
|
2518
|
+
encoding: ASCII-8BIT
|
2519
|
+
string: ! '{"time":0.037,"total_rows":1,"rows":[{"id":50,"cartodb_id":50,"name":"luzgqofydmvticj","description":"xgdyjlfwczsevnboarqiptkuhm","created_at":"2012-05-23T17:38:59.969Z","updated_at":"2012-05-23T17:38:59.969Z","the_geom":"0101000020E610000000000000006060400000000000804640","the_geom_webmercator":"0101000020110F00007AC867A988D06B4154C51D5FC4715541"}]}'
|
2520
|
+
http_version: '1.1'
|
2521
|
+
recorded_at: Wed, 23 May 2012 15:39:00 GMT
|
2522
|
+
- request:
|
2523
|
+
method: get
|
2524
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/table_1/records?page=0&rows_per_page=20
|
2525
|
+
body:
|
2526
|
+
encoding: US-ASCII
|
2527
|
+
string: ''
|
2528
|
+
headers:
|
2529
|
+
Accept:
|
2530
|
+
- *70265673430640
|
2531
|
+
Authorization:
|
2532
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="GpgdGjwIGTOinHOw1LPJf8KUoR8WwEZooqfjZAFE",
|
2533
|
+
oauth_signature="OrhwvZ4TIgfurXMIIE6WvmCGd0M%3D", oauth_signature_method="HMAC-SHA1",
|
2534
|
+
oauth_timestamp="1337787540", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2535
|
+
oauth_version="1.0"
|
2536
|
+
response:
|
2537
|
+
status:
|
2538
|
+
code: 200
|
2539
|
+
message: OK
|
2540
|
+
headers:
|
2541
|
+
Server:
|
2542
|
+
- nginx
|
2543
|
+
Date:
|
2544
|
+
- Wed, 23 May 2012 15:39:00 GMT
|
2545
|
+
Content-Type:
|
2546
|
+
- application/json; charset=utf-8
|
2547
|
+
Transfer-Encoding:
|
2548
|
+
- chunked
|
2549
|
+
Connection:
|
2550
|
+
- keep-alive
|
2551
|
+
Vary:
|
2552
|
+
- Accept-Encoding
|
2553
|
+
Status:
|
2554
|
+
- 200 OK
|
2555
|
+
Etag:
|
2556
|
+
- ! '"12a18b8c4c1128575b8d10efa699da26"'
|
2557
|
+
Cache-Control:
|
2558
|
+
- max-age=0, private, must-revalidate
|
2559
|
+
X-Ua-Compatible:
|
2560
|
+
- IE=Edge,chrome=1
|
2561
|
+
Set-Cookie:
|
2562
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNTUwMWVjYjlmMzBmMGQwYjkwNTA2NDI3MjcyMWUwMmZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--847d7b5dc5d24497e9dbbf7616c7d1f80549b432;
|
2563
|
+
domain=.cartodb.com; path=/; HttpOnly
|
2564
|
+
X-Runtime:
|
2565
|
+
- '0.010563'
|
2566
|
+
Content-Encoding:
|
2567
|
+
- gzip
|
2568
|
+
body:
|
2569
|
+
encoding: ASCII-8BIT
|
2570
|
+
string: ! '{"id":4715,"name":"table_1","total_rows":50,"rows":[{"the_geom":"{\"type\":\"Point\",\"coordinates\":[174,29]}","updated_at":"2012-05-23T17:38:52+02:00","created_at":"2012-05-23T17:38:52+02:00","description":"mnfrozhspgxuclawbtdyekjvqi","name":"tadoqcubykfplvh","cartodb_id":1},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[111,28]}","updated_at":"2012-05-23T17:38:52+02:00","created_at":"2012-05-23T17:38:52+02:00","description":"ibokcsrdgthzenxyaqvmflwjpu","name":"itovcqknuegwpyr","cartodb_id":2},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[162,34]}","updated_at":"2012-05-23T17:38:52+02:00","created_at":"2012-05-23T17:38:52+02:00","description":"dqjfkeioawhplxmyrutncgbzvs","name":"sdkrzvnxfupwmio","cartodb_id":3},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[43,55]}","updated_at":"2012-05-23T17:38:52+02:00","created_at":"2012-05-23T17:38:52+02:00","description":"ogpdcmervlqznwatkbhixjfsyu","name":"wtypnksxvaqougf","cartodb_id":4},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[42,14]}","updated_at":"2012-05-23T17:38:52+02:00","created_at":"2012-05-23T17:38:52+02:00","description":"wukpabegjhxsvnmrlfzyqcitod","name":"kotgmdzajhwiyvl","cartodb_id":5},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[75,57]}","updated_at":"2012-05-23T17:38:53+02:00","created_at":"2012-05-23T17:38:53+02:00","description":"epfwckvbgatqdxsmizjuorlynh","name":"mzrdcayhtopfije","cartodb_id":6},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[158,25]}","updated_at":"2012-05-23T17:38:53+02:00","created_at":"2012-05-23T17:38:53+02:00","description":"vreozygdqaulpnxkwfihcjsmtb","name":"nyxgbzcvahojitw","cartodb_id":7},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[17,23]}","updated_at":"2012-05-23T17:38:53+02:00","created_at":"2012-05-23T17:38:53+02:00","description":"zbfayigkmdhuneojxrptqvwlcs","name":"rycxmhjuwgfziqk","cartodb_id":8},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[124,12]}","updated_at":"2012-05-23T17:38:54+02:00","created_at":"2012-05-23T17:38:54+02:00","description":"ldphbtgezncaoyrmujvwsqfkix","name":"wdljzvehmpiburn","cartodb_id":9},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[62,15]}","updated_at":"2012-05-23T17:38:54+02:00","created_at":"2012-05-23T17:38:54+02:00","description":"leqcgnyrfpktshuixadmbzjwvo","name":"fgpqcnuwdabroje","cartodb_id":10},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[154,39]}","updated_at":"2012-05-23T17:38:54+02:00","created_at":"2012-05-23T17:38:54+02:00","description":"rtxoughdzsfablmvqyipcnjewk","name":"cmqabkhlrgudeix","cartodb_id":11},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[88,10]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"akxjftilhcydosrpqgvenmzubw","name":"craqjivemwlpsyx","cartodb_id":12},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[13,23]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"aujoweiqhmnsvxtfdgkzcyrlpb","name":"pwuasqnevijrzgx","cartodb_id":13},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[18,43]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"rpfubvjngwsmzhxecdtoaykqil","name":"lyhdzsmtcnqxefw","cartodb_id":14},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[66,69]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"shqgcliuvnyzafrxwekbdtjmop","name":"trfipykjxzndhlw","cartodb_id":15},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[85,77]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"lngcshmrfudbaewvykzxqipojt","name":"bjmdgnavqfuypkx","cartodb_id":16},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[4,85]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"gbjiamxervzuqwcypdklotfhns","name":"cmfliqyvoakjprx","cartodb_id":17},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[1,15]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"juvhpkleysfcwdiatzobxqmgrn","name":"gxnbaehkvywrjlu","cartodb_id":18},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[112,59]}","updated_at":"2012-05-23T17:38:55+02:00","created_at":"2012-05-23T17:38:55+02:00","description":"kqacgnvjmdylueiopzxfhswtbr","name":"brcsixglnzekfqo","cartodb_id":19},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[80,4]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"zhqbgtnorivmkfdepujscxyawl","name":"cfuqxbyzmnjshel","cartodb_id":20}]}'
|
2571
|
+
http_version: '1.1'
|
2572
|
+
recorded_at: Wed, 23 May 2012 15:39:00 GMT
|
2573
|
+
- request:
|
2574
|
+
method: get
|
2575
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/table_1/records?page=1&rows_per_page=20
|
2576
|
+
body:
|
2577
|
+
encoding: US-ASCII
|
2578
|
+
string: ''
|
2579
|
+
headers:
|
2580
|
+
Accept:
|
2581
|
+
- *70265673430640
|
2582
|
+
Authorization:
|
2583
|
+
- OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="vJv3VAozl3BWVDuc8o11wVYDk8XJeiQylNOdeILvC8",
|
2584
|
+
oauth_signature="fP7td%2B1PurCrWgw4TlGOL85Qs38%3D", oauth_signature_method="HMAC-SHA1",
|
2585
|
+
oauth_timestamp="1337787540", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
|
2586
|
+
oauth_version="1.0"
|
2587
|
+
response:
|
2588
|
+
status:
|
2589
|
+
code: 200
|
2590
|
+
message: OK
|
2591
|
+
headers:
|
2592
|
+
Server:
|
2593
|
+
- nginx
|
2594
|
+
Date:
|
2595
|
+
- Wed, 23 May 2012 15:39:00 GMT
|
2596
|
+
Content-Type:
|
2597
|
+
- application/json; charset=utf-8
|
2598
|
+
Transfer-Encoding:
|
2599
|
+
- chunked
|
2600
|
+
Connection:
|
2601
|
+
- keep-alive
|
2602
|
+
Vary:
|
2603
|
+
- Accept-Encoding
|
2604
|
+
Status:
|
2605
|
+
- 200 OK
|
2606
|
+
Etag:
|
2607
|
+
- ! '"0131757feb9286e8d14db02b408cbc04"'
|
2608
|
+
Cache-Control:
|
2609
|
+
- max-age=0, private, must-revalidate
|
2610
|
+
X-Ua-Compatible:
|
2611
|
+
- IE=Edge,chrome=1
|
2612
|
+
Set-Cookie:
|
2613
|
+
- _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNWRkM2ZmM2YwN2FmMmRiNDg1NjcxMDRiODJmMzAzMGZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--47a4f5f261d5bf9447776d402ea61f72f68679a7;
|
2614
|
+
domain=.cartodb.com; path=/; HttpOnly
|
2615
|
+
X-Runtime:
|
2616
|
+
- '0.010591'
|
2617
|
+
Content-Encoding:
|
2618
|
+
- gzip
|
2619
|
+
body:
|
2620
|
+
encoding: ASCII-8BIT
|
2621
|
+
string: ! '{"id":4715,"name":"table_1","total_rows":50,"rows":[{"the_geom":"{\"type\":\"Point\",\"coordinates\":[100,41]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"fxosmwpknbrhuzvtcajeqiglyd","name":"kzcjqigudbnhyel","cartodb_id":21},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[161,14]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"otuhvcdjygrizmfqapskexnwlb","name":"gabujnypxcikefz","cartodb_id":22},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[179,46]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"jfovikmxnuzrlhptbsyedqcgaw","name":"cxszulgrakehpdy","cartodb_id":23},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[7,1]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"oqnalpeyuxfdcvbihskjmzgtwr","name":"efmnygvxcusakpb","cartodb_id":24},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[90,48]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"drycxwuonhzlkitvgfpmaqjsbe","name":"traugclvzpsdhik","cartodb_id":25},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[104,24]}","updated_at":"2012-05-23T17:38:56+02:00","created_at":"2012-05-23T17:38:56+02:00","description":"zxqsrtdeyawokgfipjmunlbcvh","name":"ifmdjkzrhslvunc","cartodb_id":26},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[11,70]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"drnkbqmsoyhfpaxzglwuivtejc","name":"qrsguxpwceztkjl","cartodb_id":27},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[177,3]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"uijgptomrcyzqlwdxvsnahkbef","name":"vforcjptiqzunya","cartodb_id":28},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[75,29]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"uyrvzbpntlfdjagexiqwcmhkos","name":"xydtnbiwhgzvpje","cartodb_id":29},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[8,69]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"pxyvdwrzekgtmacqfbulnsihjo","name":"vygpbuxzqrdltjo","cartodb_id":30},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[122,83]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"lciypmqsezvkbarnfdwgotjuhx","name":"qtgskhmvpwjbnzy","cartodb_id":31},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[35,3]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"fryzethspbkawmoxnqudvjcilg","name":"gpmoyxifcazuwej","cartodb_id":32},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[104,79]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"azglskdcqtmxupjrewbhiyovnf","name":"mudbsvhtcaqrfgx","cartodb_id":33},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[82,82]}","updated_at":"2012-05-23T17:38:57+02:00","created_at":"2012-05-23T17:38:57+02:00","description":"cijudaeynrmostqhblfgkpxzvw","name":"qmszwohtlrpifau","cartodb_id":34},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[17,11]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"faowjuzmeysqvghndxtbcpkril","name":"bxsarwqjgfkhndp","cartodb_id":35},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[15,38]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"extpojldcvyzribmhangkqufsw","name":"eobdamrpzqgjnxl","cartodb_id":36},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[128,81]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"obmchjrtzxvfwagluqekidpnys","name":"rixvsylbjdqngzc","cartodb_id":37},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[119,89]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"stfcwjauxoqiylvgmbenprhdkz","name":"ogyhcipkvldbzqs","cartodb_id":38},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[84,74]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"dcgurtahnifqmkjxolvysezwpb","name":"owkahpzvblmqjfr","cartodb_id":39},{"the_geom":"{\"type\":\"Point\",\"coordinates\":[106,69]}","updated_at":"2012-05-23T17:38:58+02:00","created_at":"2012-05-23T17:38:58+02:00","description":"spxyghqbekrdiwafmzntovcjul","name":"uxeyjsgcwqdrmio","cartodb_id":40}]}'
|
2622
|
+
http_version: '1.1'
|
2623
|
+
recorded_at: Wed, 23 May 2012 15:39:00 GMT
|
2624
|
+
recorded_with: VCR 2.1.1
|