parse_resource 1.7.3 → 1.8.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/.DS_Store +0 -0
- data/.travis.yml +1 -1
- data/Gemfile +4 -8
- data/Gemfile.lock +27 -23
- data/README.md +81 -2
- data/Rakefile +9 -8
- data/VERSION +1 -1
- data/fixtures/.DS_Store +0 -0
- data/fixtures/vcr_cassettes/.DS_Store +0 -0
- data/fixtures/vcr_cassettes/test_all.yml +319 -34
- data/fixtures/vcr_cassettes/test_attribute_getters.yml +256 -12
- data/fixtures/vcr_cassettes/test_attribute_setters.yml +256 -12
- data/fixtures/vcr_cassettes/test_authenticate.yml +260 -32
- data/fixtures/vcr_cassettes/test_chained_wheres.yml +320 -35
- data/fixtures/vcr_cassettes/test_chunk.yml +1359 -0
- data/fixtures/vcr_cassettes/test_count.yml +495 -84
- data/fixtures/vcr_cassettes/test_create.yml +154 -12
- data/fixtures/vcr_cassettes/test_created_at.yml +256 -12
- data/fixtures/vcr_cassettes/test_destroy.yml +364 -32
- data/fixtures/vcr_cassettes/test_destroy_all.yml +236 -48
- data/fixtures/vcr_cassettes/test_each.yml +488 -56
- data/fixtures/vcr_cassettes/test_fetching_closest_10.yml +1509 -0
- data/fixtures/vcr_cassettes/test_fetching_closest_by_kilometers.yml +1509 -0
- data/fixtures/vcr_cassettes/test_fetching_closest_by_miles.yml +1509 -0
- data/fixtures/vcr_cassettes/test_fetching_closest_by_radians.yml +1509 -0
- data/fixtures/vcr_cassettes/test_fetching_closest_within_box.yml +489 -0
- data/fixtures/vcr_cassettes/test_fetching_geopoint_field.yml +489 -0
- data/fixtures/vcr_cassettes/test_find.yml +312 -24
- data/fixtures/vcr_cassettes/test_find_all_by.yml +170 -34
- data/fixtures/vcr_cassettes/test_find_by.yml +174 -38
- data/fixtures/vcr_cassettes/test_first.yml +260 -23
- data/fixtures/vcr_cassettes/test_id.yml +256 -12
- data/fixtures/vcr_cassettes/test_installation_creation.yml +199 -0
- data/fixtures/vcr_cassettes/test_installation_creation_validation_check.yml +297 -0
- data/fixtures/vcr_cassettes/test_limit.yml +1138 -179
- data/fixtures/vcr_cassettes/test_map.yml +488 -56
- data/fixtures/vcr_cassettes/test_order_ascending.yml +395 -0
- data/fixtures/vcr_cassettes/test_order_descending.yml +446 -0
- data/fixtures/vcr_cassettes/test_save.yml +316 -24
- data/fixtures/vcr_cassettes/test_save_all_and_destroy_all.yml +869 -0
- data/fixtures/vcr_cassettes/test_saving_geo_point_with_quick_init.yml +395 -0
- data/fixtures/vcr_cassettes/test_saving_geopoint_with_coords.yml +395 -0
- data/fixtures/vcr_cassettes/test_skip.yml +120 -525
- data/fixtures/vcr_cassettes/test_update.yml +316 -24
- data/fixtures/vcr_cassettes/test_updated_at.yml +316 -24
- data/fixtures/vcr_cassettes/test_username_should_be_unique.yml +311 -21
- data/fixtures/vcr_cassettes/test_where.yml +117 -25
- data/lib/kaminari_extension.rb +60 -0
- data/lib/parse_resource.rb +4 -2
- data/lib/parse_resource/base.rb +262 -163
- data/lib/parse_resource/client.rb +8 -0
- data/lib/parse_resource/parse_error.rb +36 -22
- data/lib/parse_resource/query.rb +99 -7
- data/lib/parse_resource/query_methods.rb +64 -0
- data/lib/parse_resource/types/parse_geopoint.rb +19 -0
- data/parse_resource.gemspec +29 -9
- data/parse_resource.yml +2 -2
- data/test/active_model_lint_test.rb +0 -2
- data/test/helper.rb +13 -3
- data/test/test_parse_installation.rb +41 -0
- data/test/test_parse_resource.rb +108 -20
- data/test/test_parse_user.rb +4 -7
- data/test/test_query_options.rb +0 -38
- data/test/test_types.rb +186 -0
- metadata +38 -31
|
@@ -1,443 +1,58 @@
|
|
|
1
1
|
---
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
|
-
method:
|
|
5
|
-
uri: https://
|
|
6
|
-
body:
|
|
7
|
-
encoding: UTF-8
|
|
8
|
-
string: ! '{"name":"0"}'
|
|
9
|
-
headers:
|
|
10
|
-
Accept:
|
|
11
|
-
- ! '*/*; q=0.5, application/xml'
|
|
12
|
-
Accept-Encoding:
|
|
13
|
-
- gzip, deflate
|
|
14
|
-
Content-Type:
|
|
15
|
-
- application/json
|
|
16
|
-
Content-Length:
|
|
17
|
-
- '12'
|
|
18
|
-
User-Agent:
|
|
19
|
-
- Ruby
|
|
20
|
-
response:
|
|
21
|
-
status:
|
|
22
|
-
code: 201
|
|
23
|
-
message: Created
|
|
24
|
-
headers:
|
|
25
|
-
Access-Control-Allow-Origin:
|
|
26
|
-
- https://parse.com, https://www.parse.com
|
|
27
|
-
Access-Control-Request-Method:
|
|
28
|
-
- ! '*'
|
|
29
|
-
Cache-Control:
|
|
30
|
-
- no-cache
|
|
31
|
-
Content-Type:
|
|
32
|
-
- application/json; charset=utf-8
|
|
33
|
-
Date:
|
|
34
|
-
- Thu, 20 Sep 2012 04:31:55 GMT
|
|
35
|
-
Location:
|
|
36
|
-
- https://api.parse.com/1/classes/Event/aXThuJIGBa
|
|
37
|
-
Server:
|
|
38
|
-
- nginx/1.2.2
|
|
39
|
-
Set-Cookie:
|
|
40
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlY2RjYjIxMzA4Yzc2YmVhZTYwNDU4MDY4NGU3NzU4YWQ%3D--9412a4b1b2f49edb99dd56409baa31f5b5369d8e;
|
|
41
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:55 GMT; HttpOnly
|
|
42
|
-
Status:
|
|
43
|
-
- 201 Created
|
|
44
|
-
X-Runtime:
|
|
45
|
-
- '0.016039'
|
|
46
|
-
X-Ua-Compatible:
|
|
47
|
-
- IE=Edge,chrome=1
|
|
48
|
-
Content-Length:
|
|
49
|
-
- '64'
|
|
50
|
-
Connection:
|
|
51
|
-
- keep-alive
|
|
52
|
-
body:
|
|
53
|
-
encoding: US-ASCII
|
|
54
|
-
string: ! '{"createdAt":"2012-09-20T04:31:55.359Z","objectId":"aXThuJIGBa"}'
|
|
55
|
-
http_version:
|
|
56
|
-
recorded_at: Thu, 20 Sep 2012 04:31:55 GMT
|
|
57
|
-
- request:
|
|
58
|
-
method: post
|
|
59
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
60
|
-
body:
|
|
61
|
-
encoding: UTF-8
|
|
62
|
-
string: ! '{"name":"1"}'
|
|
63
|
-
headers:
|
|
64
|
-
Accept:
|
|
65
|
-
- ! '*/*; q=0.5, application/xml'
|
|
66
|
-
Accept-Encoding:
|
|
67
|
-
- gzip, deflate
|
|
68
|
-
Content-Type:
|
|
69
|
-
- application/json
|
|
70
|
-
Content-Length:
|
|
71
|
-
- '12'
|
|
72
|
-
User-Agent:
|
|
73
|
-
- Ruby
|
|
74
|
-
response:
|
|
75
|
-
status:
|
|
76
|
-
code: 201
|
|
77
|
-
message: Created
|
|
78
|
-
headers:
|
|
79
|
-
Access-Control-Allow-Origin:
|
|
80
|
-
- https://parse.com, https://www.parse.com
|
|
81
|
-
Access-Control-Request-Method:
|
|
82
|
-
- ! '*'
|
|
83
|
-
Cache-Control:
|
|
84
|
-
- no-cache
|
|
85
|
-
Content-Type:
|
|
86
|
-
- application/json; charset=utf-8
|
|
87
|
-
Date:
|
|
88
|
-
- Thu, 20 Sep 2012 04:31:55 GMT
|
|
89
|
-
Location:
|
|
90
|
-
- https://api.parse.com/1/classes/Event/tOzSj6bT1P
|
|
91
|
-
Server:
|
|
92
|
-
- nginx/1.2.2
|
|
93
|
-
Set-Cookie:
|
|
94
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlYjExZWI0MDgxMmY1MjNiZWMxZTFlYTA4ZDdiMjk3MTg%3D--153afd04f5368008f239bef657f80f13a18ad30b;
|
|
95
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:55 GMT; HttpOnly
|
|
96
|
-
Status:
|
|
97
|
-
- 201 Created
|
|
98
|
-
X-Runtime:
|
|
99
|
-
- '0.016972'
|
|
100
|
-
X-Ua-Compatible:
|
|
101
|
-
- IE=Edge,chrome=1
|
|
102
|
-
Content-Length:
|
|
103
|
-
- '64'
|
|
104
|
-
Connection:
|
|
105
|
-
- keep-alive
|
|
106
|
-
body:
|
|
107
|
-
encoding: US-ASCII
|
|
108
|
-
string: ! '{"createdAt":"2012-09-20T04:31:55.582Z","objectId":"tOzSj6bT1P"}'
|
|
109
|
-
http_version:
|
|
110
|
-
recorded_at: Thu, 20 Sep 2012 04:31:55 GMT
|
|
111
|
-
- request:
|
|
112
|
-
method: post
|
|
113
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
114
|
-
body:
|
|
115
|
-
encoding: UTF-8
|
|
116
|
-
string: ! '{"name":"2"}'
|
|
117
|
-
headers:
|
|
118
|
-
Accept:
|
|
119
|
-
- ! '*/*; q=0.5, application/xml'
|
|
120
|
-
Accept-Encoding:
|
|
121
|
-
- gzip, deflate
|
|
122
|
-
Content-Type:
|
|
123
|
-
- application/json
|
|
124
|
-
Content-Length:
|
|
125
|
-
- '12'
|
|
126
|
-
User-Agent:
|
|
127
|
-
- Ruby
|
|
128
|
-
response:
|
|
129
|
-
status:
|
|
130
|
-
code: 201
|
|
131
|
-
message: Created
|
|
132
|
-
headers:
|
|
133
|
-
Access-Control-Allow-Origin:
|
|
134
|
-
- https://parse.com, https://www.parse.com
|
|
135
|
-
Access-Control-Request-Method:
|
|
136
|
-
- ! '*'
|
|
137
|
-
Cache-Control:
|
|
138
|
-
- no-cache
|
|
139
|
-
Content-Type:
|
|
140
|
-
- application/json; charset=utf-8
|
|
141
|
-
Date:
|
|
142
|
-
- Thu, 20 Sep 2012 04:31:55 GMT
|
|
143
|
-
Location:
|
|
144
|
-
- https://api.parse.com/1/classes/Event/JHYWX6fBdm
|
|
145
|
-
Server:
|
|
146
|
-
- nginx/1.2.2
|
|
147
|
-
Set-Cookie:
|
|
148
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlOWFkNjI5ZmJiOGNhODk5YzMxYjliY2YzZTQxYjY5Y2M%3D--8d1cc7bf5e986aea4bd0930e86055d96528910eb;
|
|
149
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:55 GMT; HttpOnly
|
|
150
|
-
Status:
|
|
151
|
-
- 201 Created
|
|
152
|
-
X-Runtime:
|
|
153
|
-
- '0.020243'
|
|
154
|
-
X-Ua-Compatible:
|
|
155
|
-
- IE=Edge,chrome=1
|
|
156
|
-
Content-Length:
|
|
157
|
-
- '64'
|
|
158
|
-
Connection:
|
|
159
|
-
- keep-alive
|
|
160
|
-
body:
|
|
161
|
-
encoding: US-ASCII
|
|
162
|
-
string: ! '{"createdAt":"2012-09-20T04:31:55.803Z","objectId":"JHYWX6fBdm"}'
|
|
163
|
-
http_version:
|
|
164
|
-
recorded_at: Thu, 20 Sep 2012 04:31:55 GMT
|
|
165
|
-
- request:
|
|
166
|
-
method: post
|
|
167
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
168
|
-
body:
|
|
169
|
-
encoding: UTF-8
|
|
170
|
-
string: ! '{"name":"3"}'
|
|
171
|
-
headers:
|
|
172
|
-
Accept:
|
|
173
|
-
- ! '*/*; q=0.5, application/xml'
|
|
174
|
-
Accept-Encoding:
|
|
175
|
-
- gzip, deflate
|
|
176
|
-
Content-Type:
|
|
177
|
-
- application/json
|
|
178
|
-
Content-Length:
|
|
179
|
-
- '12'
|
|
180
|
-
User-Agent:
|
|
181
|
-
- Ruby
|
|
182
|
-
response:
|
|
183
|
-
status:
|
|
184
|
-
code: 201
|
|
185
|
-
message: Created
|
|
186
|
-
headers:
|
|
187
|
-
Access-Control-Allow-Origin:
|
|
188
|
-
- https://parse.com, https://www.parse.com
|
|
189
|
-
Access-Control-Request-Method:
|
|
190
|
-
- ! '*'
|
|
191
|
-
Cache-Control:
|
|
192
|
-
- no-cache
|
|
193
|
-
Content-Type:
|
|
194
|
-
- application/json; charset=utf-8
|
|
195
|
-
Date:
|
|
196
|
-
- Thu, 20 Sep 2012 04:31:56 GMT
|
|
197
|
-
Location:
|
|
198
|
-
- https://api.parse.com/1/classes/Event/xBlgtcIUej
|
|
199
|
-
Server:
|
|
200
|
-
- nginx/1.2.2
|
|
201
|
-
Set-Cookie:
|
|
202
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlMWQyYzhiNTk2MGVjZWUzMTAxMzdjNTdiNDIwNmNjMWE%3D--0c35f2bea8c77b0fefa6630e216d9aea0474ef34;
|
|
203
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:56 GMT; HttpOnly
|
|
204
|
-
Status:
|
|
205
|
-
- 201 Created
|
|
206
|
-
X-Runtime:
|
|
207
|
-
- '0.015278'
|
|
208
|
-
X-Ua-Compatible:
|
|
209
|
-
- IE=Edge,chrome=1
|
|
210
|
-
Content-Length:
|
|
211
|
-
- '64'
|
|
212
|
-
Connection:
|
|
213
|
-
- keep-alive
|
|
214
|
-
body:
|
|
215
|
-
encoding: US-ASCII
|
|
216
|
-
string: ! '{"createdAt":"2012-09-20T04:31:56.024Z","objectId":"xBlgtcIUej"}'
|
|
217
|
-
http_version:
|
|
218
|
-
recorded_at: Thu, 20 Sep 2012 04:31:56 GMT
|
|
219
|
-
- request:
|
|
220
|
-
method: post
|
|
221
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
222
|
-
body:
|
|
223
|
-
encoding: UTF-8
|
|
224
|
-
string: ! '{"name":"4"}'
|
|
225
|
-
headers:
|
|
226
|
-
Accept:
|
|
227
|
-
- ! '*/*; q=0.5, application/xml'
|
|
228
|
-
Accept-Encoding:
|
|
229
|
-
- gzip, deflate
|
|
230
|
-
Content-Type:
|
|
231
|
-
- application/json
|
|
232
|
-
Content-Length:
|
|
233
|
-
- '12'
|
|
234
|
-
User-Agent:
|
|
235
|
-
- Ruby
|
|
236
|
-
response:
|
|
237
|
-
status:
|
|
238
|
-
code: 201
|
|
239
|
-
message: Created
|
|
240
|
-
headers:
|
|
241
|
-
Access-Control-Allow-Origin:
|
|
242
|
-
- https://parse.com, https://www.parse.com
|
|
243
|
-
Access-Control-Request-Method:
|
|
244
|
-
- ! '*'
|
|
245
|
-
Cache-Control:
|
|
246
|
-
- no-cache
|
|
247
|
-
Content-Type:
|
|
248
|
-
- application/json; charset=utf-8
|
|
249
|
-
Date:
|
|
250
|
-
- Thu, 20 Sep 2012 04:31:56 GMT
|
|
251
|
-
Location:
|
|
252
|
-
- https://api.parse.com/1/classes/Event/Gqsp6QjswY
|
|
253
|
-
Server:
|
|
254
|
-
- nginx/1.2.2
|
|
255
|
-
Set-Cookie:
|
|
256
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlMDI5ZDNmNDgwY2I5MjdkZmRmMWY1NWVjYzZkOTk4OWI%3D--d5065617468bbea2cf0dfb361d0afb25f9052f0c;
|
|
257
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:56 GMT; HttpOnly
|
|
258
|
-
Status:
|
|
259
|
-
- 201 Created
|
|
260
|
-
X-Runtime:
|
|
261
|
-
- '0.018216'
|
|
262
|
-
X-Ua-Compatible:
|
|
263
|
-
- IE=Edge,chrome=1
|
|
264
|
-
Content-Length:
|
|
265
|
-
- '64'
|
|
266
|
-
Connection:
|
|
267
|
-
- keep-alive
|
|
268
|
-
body:
|
|
269
|
-
encoding: US-ASCII
|
|
270
|
-
string: ! '{"createdAt":"2012-09-20T04:31:56.241Z","objectId":"Gqsp6QjswY"}'
|
|
271
|
-
http_version:
|
|
272
|
-
recorded_at: Thu, 20 Sep 2012 04:31:56 GMT
|
|
273
|
-
- request:
|
|
274
|
-
method: post
|
|
275
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
276
|
-
body:
|
|
277
|
-
encoding: UTF-8
|
|
278
|
-
string: ! '{"name":"5"}'
|
|
279
|
-
headers:
|
|
280
|
-
Accept:
|
|
281
|
-
- ! '*/*; q=0.5, application/xml'
|
|
282
|
-
Accept-Encoding:
|
|
283
|
-
- gzip, deflate
|
|
284
|
-
Content-Type:
|
|
285
|
-
- application/json
|
|
286
|
-
Content-Length:
|
|
287
|
-
- '12'
|
|
288
|
-
User-Agent:
|
|
289
|
-
- Ruby
|
|
290
|
-
response:
|
|
291
|
-
status:
|
|
292
|
-
code: 201
|
|
293
|
-
message: Created
|
|
294
|
-
headers:
|
|
295
|
-
Access-Control-Allow-Origin:
|
|
296
|
-
- https://parse.com, https://www.parse.com
|
|
297
|
-
Access-Control-Request-Method:
|
|
298
|
-
- ! '*'
|
|
299
|
-
Cache-Control:
|
|
300
|
-
- no-cache
|
|
301
|
-
Content-Type:
|
|
302
|
-
- application/json; charset=utf-8
|
|
303
|
-
Date:
|
|
304
|
-
- Thu, 20 Sep 2012 04:31:56 GMT
|
|
305
|
-
Location:
|
|
306
|
-
- https://api.parse.com/1/classes/Event/PWhx6IzEwv
|
|
307
|
-
Server:
|
|
308
|
-
- nginx/1.2.2
|
|
309
|
-
Set-Cookie:
|
|
310
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlN2FlZWQ3NmY4NmQ4YjhmZmFiNDQ4ZjRhNWRhZGM4MDg%3D--953d90d3d7db01a83963f151f26f6be356c5f932;
|
|
311
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:56 GMT; HttpOnly
|
|
312
|
-
Status:
|
|
313
|
-
- 201 Created
|
|
314
|
-
X-Runtime:
|
|
315
|
-
- '0.016833'
|
|
316
|
-
X-Ua-Compatible:
|
|
317
|
-
- IE=Edge,chrome=1
|
|
318
|
-
Content-Length:
|
|
319
|
-
- '64'
|
|
320
|
-
Connection:
|
|
321
|
-
- keep-alive
|
|
322
|
-
body:
|
|
323
|
-
encoding: US-ASCII
|
|
324
|
-
string: ! '{"createdAt":"2012-09-20T04:31:56.455Z","objectId":"PWhx6IzEwv"}'
|
|
325
|
-
http_version:
|
|
326
|
-
recorded_at: Thu, 20 Sep 2012 04:31:56 GMT
|
|
327
|
-
- request:
|
|
328
|
-
method: post
|
|
329
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
330
|
-
body:
|
|
331
|
-
encoding: UTF-8
|
|
332
|
-
string: ! '{"name":"6"}'
|
|
333
|
-
headers:
|
|
334
|
-
Accept:
|
|
335
|
-
- ! '*/*; q=0.5, application/xml'
|
|
336
|
-
Accept-Encoding:
|
|
337
|
-
- gzip, deflate
|
|
338
|
-
Content-Type:
|
|
339
|
-
- application/json
|
|
340
|
-
Content-Length:
|
|
341
|
-
- '12'
|
|
342
|
-
User-Agent:
|
|
343
|
-
- Ruby
|
|
344
|
-
response:
|
|
345
|
-
status:
|
|
346
|
-
code: 201
|
|
347
|
-
message: Created
|
|
348
|
-
headers:
|
|
349
|
-
Access-Control-Allow-Origin:
|
|
350
|
-
- https://parse.com, https://www.parse.com
|
|
351
|
-
Access-Control-Request-Method:
|
|
352
|
-
- ! '*'
|
|
353
|
-
Cache-Control:
|
|
354
|
-
- no-cache
|
|
355
|
-
Content-Type:
|
|
356
|
-
- application/json; charset=utf-8
|
|
357
|
-
Date:
|
|
358
|
-
- Thu, 20 Sep 2012 04:31:56 GMT
|
|
359
|
-
Location:
|
|
360
|
-
- https://api.parse.com/1/classes/Event/r7xHgEnIOQ
|
|
361
|
-
Server:
|
|
362
|
-
- nginx/1.2.2
|
|
363
|
-
Set-Cookie:
|
|
364
|
-
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlYzM3YWQxMDljYjVhYjk1Yzc3MDY1MTAyOGFmMDA0NjA%3D--a52f9e2e79ba8c81a74c94c4c03c5cc8b8b95a73;
|
|
365
|
-
domain=.parse.com; path=/; expires=Tue, 20-Sep-2022 04:31:56 GMT; HttpOnly
|
|
366
|
-
Status:
|
|
367
|
-
- 201 Created
|
|
368
|
-
X-Runtime:
|
|
369
|
-
- '0.016407'
|
|
370
|
-
X-Ua-Compatible:
|
|
371
|
-
- IE=Edge,chrome=1
|
|
372
|
-
Content-Length:
|
|
373
|
-
- '64'
|
|
374
|
-
Connection:
|
|
375
|
-
- keep-alive
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://tIcrV2dwbkT7AqjU8Cn8FZFU60hk5qCnMXlJnJQq:H6xYlZzvwBZHUBjoyrFKXkWZoCVfqrmC3ARXMZjq@api.parse.com/1/classes/Post?where=%7B%7D
|
|
376
6
|
body:
|
|
377
7
|
encoding: US-ASCII
|
|
378
|
-
string:
|
|
379
|
-
http_version:
|
|
380
|
-
recorded_at: Thu, 20 Sep 2012 04:31:56 GMT
|
|
381
|
-
- request:
|
|
382
|
-
method: post
|
|
383
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Event
|
|
384
|
-
body:
|
|
385
|
-
encoding: UTF-8
|
|
386
|
-
string: ! '{"name":"7"}'
|
|
8
|
+
string: ''
|
|
387
9
|
headers:
|
|
388
10
|
Accept:
|
|
389
11
|
- ! '*/*; q=0.5, application/xml'
|
|
390
12
|
Accept-Encoding:
|
|
391
13
|
- gzip, deflate
|
|
392
|
-
Content-Type:
|
|
393
|
-
- application/json
|
|
394
|
-
Content-Length:
|
|
395
|
-
- '12'
|
|
396
14
|
User-Agent:
|
|
397
15
|
- Ruby
|
|
398
16
|
response:
|
|
399
17
|
status:
|
|
400
|
-
code:
|
|
401
|
-
message:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
402
20
|
headers:
|
|
403
|
-
Access-Control-Allow-Origin:
|
|
404
|
-
- https://parse.com, https://www.parse.com
|
|
405
|
-
Access-Control-Request-Method:
|
|
406
|
-
- ! '*'
|
|
407
21
|
Cache-Control:
|
|
408
|
-
-
|
|
22
|
+
- max-age=0, private, must-revalidate
|
|
409
23
|
Content-Type:
|
|
410
24
|
- application/json; charset=utf-8
|
|
411
25
|
Date:
|
|
412
|
-
-
|
|
413
|
-
|
|
414
|
-
-
|
|
26
|
+
- Wed, 17 Apr 2013 08:00:58 GMT
|
|
27
|
+
Etag:
|
|
28
|
+
- ! '"1512e35d3b1be733efb4f14fda37a1a4"'
|
|
415
29
|
Server:
|
|
416
30
|
- nginx/1.2.2
|
|
417
31
|
Set-Cookie:
|
|
418
|
-
- _parse_session=
|
|
419
|
-
domain=.parse.com; path=/; expires=
|
|
32
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlOTJlZThkZDFiYTNlNzY2NWVlOWJjZmQ0Mjg5ZWI1NTY%3D--df1a9e738f54564f4668cfc938f0516d7301df4a;
|
|
33
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 08:00:58 GMT; secure;
|
|
34
|
+
HttpOnly
|
|
420
35
|
Status:
|
|
421
|
-
-
|
|
36
|
+
- 200 OK
|
|
422
37
|
X-Runtime:
|
|
423
|
-
- '0.
|
|
38
|
+
- '0.035765'
|
|
424
39
|
X-Ua-Compatible:
|
|
425
40
|
- IE=Edge,chrome=1
|
|
426
41
|
Content-Length:
|
|
427
|
-
- '
|
|
42
|
+
- '1998'
|
|
428
43
|
Connection:
|
|
429
44
|
- keep-alive
|
|
430
45
|
body:
|
|
431
46
|
encoding: US-ASCII
|
|
432
|
-
string: ! '{"createdAt":"
|
|
47
|
+
string: ! '{"results":[{"title":"skip","author":"14","createdAt":"2013-04-17T08:00:11.120Z","updatedAt":"2013-04-17T08:00:11.120Z","objectId":"163KZ9HQsv"},{"title":"skip","author":"0","createdAt":"2013-04-17T08:00:10.669Z","updatedAt":"2013-04-17T08:00:10.669Z","objectId":"16paH256UT"},{"title":"skip","author":"1","createdAt":"2013-04-17T08:00:10.687Z","updatedAt":"2013-04-17T08:00:10.687Z","objectId":"NM9ZeZaDTT"},{"title":"skip","author":"2","createdAt":"2013-04-17T08:00:10.704Z","updatedAt":"2013-04-17T08:00:10.704Z","objectId":"upsdxDksLd"},{"title":"skip","author":"3","createdAt":"2013-04-17T08:00:10.721Z","updatedAt":"2013-04-17T08:00:10.721Z","objectId":"LeO4nYiddT"},{"title":"skip","author":"4","createdAt":"2013-04-17T08:00:10.738Z","updatedAt":"2013-04-17T08:00:10.738Z","objectId":"cjzZfMNyaY"},{"title":"skip","author":"5","createdAt":"2013-04-17T08:00:10.762Z","updatedAt":"2013-04-17T08:00:10.762Z","objectId":"wYtucIC2rM"},{"title":"skip","author":"6","createdAt":"2013-04-17T08:00:10.779Z","updatedAt":"2013-04-17T08:00:10.779Z","objectId":"eHmv5y0PEj"},{"title":"skip","author":"7","createdAt":"2013-04-17T08:00:10.796Z","updatedAt":"2013-04-17T08:00:10.796Z","objectId":"dgkW7kxhk9"},{"title":"skip","author":"8","createdAt":"2013-04-17T08:00:10.813Z","updatedAt":"2013-04-17T08:00:10.813Z","objectId":"IEn6QW2BtU"},{"title":"skip","author":"9","createdAt":"2013-04-17T08:00:11.035Z","updatedAt":"2013-04-17T08:00:11.035Z","objectId":"XEJZbSaNe1"},{"title":"skip","author":"10","createdAt":"2013-04-17T08:00:11.052Z","updatedAt":"2013-04-17T08:00:11.052Z","objectId":"pF2A0lGlS6"},{"title":"skip","author":"11","createdAt":"2013-04-17T08:00:11.069Z","updatedAt":"2013-04-17T08:00:11.069Z","objectId":"ubHUo9WBnI"},{"title":"skip","author":"12","createdAt":"2013-04-17T08:00:11.086Z","updatedAt":"2013-04-17T08:00:11.086Z","objectId":"hXbtMp1h8A"},{"title":"skip","author":"13","createdAt":"2013-04-17T08:00:11.103Z","updatedAt":"2013-04-17T08:00:11.103Z","objectId":"v1bkwDZ5Ua"}]}'
|
|
433
48
|
http_version:
|
|
434
|
-
recorded_at:
|
|
49
|
+
recorded_at: Wed, 17 Apr 2013 08:00:58 GMT
|
|
435
50
|
- request:
|
|
436
51
|
method: post
|
|
437
|
-
uri: https://
|
|
52
|
+
uri: https://tIcrV2dwbkT7AqjU8Cn8FZFU60hk5qCnMXlJnJQq:H6xYlZzvwBZHUBjoyrFKXkWZoCVfqrmC3ARXMZjq@api.parse.com/1/batch
|
|
438
53
|
body:
|
|
439
54
|
encoding: UTF-8
|
|
440
|
-
string: ! '{"
|
|
55
|
+
string: ! '{"requests":[{"method":"DELETE","path":"/1/classes/Post/163KZ9HQsv"},{"method":"DELETE","path":"/1/classes/Post/16paH256UT"},{"method":"DELETE","path":"/1/classes/Post/NM9ZeZaDTT"},{"method":"DELETE","path":"/1/classes/Post/upsdxDksLd"},{"method":"DELETE","path":"/1/classes/Post/LeO4nYiddT"},{"method":"DELETE","path":"/1/classes/Post/cjzZfMNyaY"},{"method":"DELETE","path":"/1/classes/Post/wYtucIC2rM"},{"method":"DELETE","path":"/1/classes/Post/eHmv5y0PEj"},{"method":"DELETE","path":"/1/classes/Post/dgkW7kxhk9"},{"method":"DELETE","path":"/1/classes/Post/IEn6QW2BtU"},{"method":"DELETE","path":"/1/classes/Post/XEJZbSaNe1"},{"method":"DELETE","path":"/1/classes/Post/pF2A0lGlS6"},{"method":"DELETE","path":"/1/classes/Post/ubHUo9WBnI"},{"method":"DELETE","path":"/1/classes/Post/hXbtMp1h8A"},{"method":"DELETE","path":"/1/classes/Post/v1bkwDZ5Ua"}]}'
|
|
441
56
|
headers:
|
|
442
57
|
Accept:
|
|
443
58
|
- ! '*/*; q=0.5, application/xml'
|
|
@@ -446,52 +61,49 @@ http_interactions:
|
|
|
446
61
|
Content-Type:
|
|
447
62
|
- application/json
|
|
448
63
|
Content-Length:
|
|
449
|
-
- '
|
|
64
|
+
- '854'
|
|
450
65
|
User-Agent:
|
|
451
66
|
- Ruby
|
|
452
67
|
response:
|
|
453
68
|
status:
|
|
454
|
-
code:
|
|
455
|
-
message:
|
|
69
|
+
code: 200
|
|
70
|
+
message: OK
|
|
456
71
|
headers:
|
|
457
|
-
Access-Control-Allow-Origin:
|
|
458
|
-
- https://parse.com, https://www.parse.com
|
|
459
|
-
Access-Control-Request-Method:
|
|
460
|
-
- ! '*'
|
|
461
72
|
Cache-Control:
|
|
462
|
-
-
|
|
73
|
+
- max-age=0, private, must-revalidate
|
|
463
74
|
Content-Type:
|
|
464
75
|
- application/json; charset=utf-8
|
|
465
76
|
Date:
|
|
466
|
-
-
|
|
467
|
-
|
|
468
|
-
-
|
|
77
|
+
- Wed, 17 Apr 2013 08:00:59 GMT
|
|
78
|
+
Etag:
|
|
79
|
+
- ! '"26089d395af4d07f89e77a78b7a6964f"'
|
|
469
80
|
Server:
|
|
470
81
|
- nginx/1.2.2
|
|
471
82
|
Set-Cookie:
|
|
472
|
-
- _parse_session=
|
|
473
|
-
domain=.parse.com; path=/; expires=
|
|
83
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlYThlZjA0ODM1MTMyZTBmMDgxNGUxMGFlOTlhOTE4MzI%3D--a1e6618314180eea0c4d38761a872766bd2558db;
|
|
84
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 08:00:59 GMT; secure;
|
|
85
|
+
HttpOnly
|
|
474
86
|
Status:
|
|
475
|
-
-
|
|
87
|
+
- 200 OK
|
|
476
88
|
X-Runtime:
|
|
477
|
-
- '0.
|
|
89
|
+
- '0.214212'
|
|
478
90
|
X-Ua-Compatible:
|
|
479
91
|
- IE=Edge,chrome=1
|
|
480
92
|
Content-Length:
|
|
481
|
-
- '
|
|
93
|
+
- '256'
|
|
482
94
|
Connection:
|
|
483
95
|
- keep-alive
|
|
484
96
|
body:
|
|
485
97
|
encoding: US-ASCII
|
|
486
|
-
string: ! '{"
|
|
98
|
+
string: ! '[{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true},{"success":true}]'
|
|
487
99
|
http_version:
|
|
488
|
-
recorded_at:
|
|
100
|
+
recorded_at: Wed, 17 Apr 2013 08:00:59 GMT
|
|
489
101
|
- request:
|
|
490
102
|
method: post
|
|
491
|
-
uri: https://
|
|
103
|
+
uri: https://tIcrV2dwbkT7AqjU8Cn8FZFU60hk5qCnMXlJnJQq:H6xYlZzvwBZHUBjoyrFKXkWZoCVfqrmC3ARXMZjq@api.parse.com/1/batch
|
|
492
104
|
body:
|
|
493
105
|
encoding: UTF-8
|
|
494
|
-
string: ! '{"
|
|
106
|
+
string: ! '{"requests":[{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"0-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"1-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"2-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"3-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"4-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"5-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"6-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"7-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"8-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"9-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"10-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"11-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"12-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"13-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"14-author"}}]}'
|
|
495
107
|
headers:
|
|
496
108
|
Accept:
|
|
497
109
|
- ! '*/*; q=0.5, application/xml'
|
|
@@ -500,49 +112,46 @@ http_interactions:
|
|
|
500
112
|
Content-Type:
|
|
501
113
|
- application/json
|
|
502
114
|
Content-Length:
|
|
503
|
-
- '
|
|
115
|
+
- '1324'
|
|
504
116
|
User-Agent:
|
|
505
117
|
- Ruby
|
|
506
118
|
response:
|
|
507
119
|
status:
|
|
508
|
-
code:
|
|
509
|
-
message:
|
|
120
|
+
code: 200
|
|
121
|
+
message: OK
|
|
510
122
|
headers:
|
|
511
|
-
Access-Control-Allow-Origin:
|
|
512
|
-
- https://parse.com, https://www.parse.com
|
|
513
|
-
Access-Control-Request-Method:
|
|
514
|
-
- ! '*'
|
|
515
123
|
Cache-Control:
|
|
516
|
-
-
|
|
124
|
+
- max-age=0, private, must-revalidate
|
|
517
125
|
Content-Type:
|
|
518
126
|
- application/json; charset=utf-8
|
|
519
127
|
Date:
|
|
520
|
-
-
|
|
521
|
-
|
|
522
|
-
-
|
|
128
|
+
- Wed, 17 Apr 2013 08:00:59 GMT
|
|
129
|
+
Etag:
|
|
130
|
+
- ! '"ee693e64e668c7a64d7091729526c623"'
|
|
523
131
|
Server:
|
|
524
132
|
- nginx/1.2.2
|
|
525
133
|
Set-Cookie:
|
|
526
|
-
- _parse_session=
|
|
527
|
-
domain=.parse.com; path=/; expires=
|
|
134
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlYmRkYzk5ZDBmODgzZjVjMzFiNmVkMGYwZWI4ZDMzYmY%3D--52794db3fa51595a5178c37d2efc03775b3c1f99;
|
|
135
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 08:00:59 GMT; secure;
|
|
136
|
+
HttpOnly
|
|
528
137
|
Status:
|
|
529
|
-
-
|
|
138
|
+
- 200 OK
|
|
530
139
|
X-Runtime:
|
|
531
|
-
- '0.
|
|
140
|
+
- '0.194027'
|
|
532
141
|
X-Ua-Compatible:
|
|
533
142
|
- IE=Edge,chrome=1
|
|
534
143
|
Content-Length:
|
|
535
|
-
- '
|
|
144
|
+
- '1156'
|
|
536
145
|
Connection:
|
|
537
146
|
- keep-alive
|
|
538
147
|
body:
|
|
539
148
|
encoding: US-ASCII
|
|
540
|
-
string: ! '{"createdAt":"
|
|
149
|
+
string: ! '[{"success":{"createdAt":"2013-04-17T08:00:59.815Z","objectId":"Lw9Kh56oCv"}},{"success":{"createdAt":"2013-04-17T08:00:59.826Z","objectId":"vvZQDorAOk"}},{"success":{"createdAt":"2013-04-17T08:00:59.836Z","objectId":"mNQ2pfhPaZ"}},{"success":{"createdAt":"2013-04-17T08:00:59.846Z","objectId":"LI7vaP25w1"}},{"success":{"createdAt":"2013-04-17T08:00:59.856Z","objectId":"X36Wj5PwaZ"}},{"success":{"createdAt":"2013-04-17T08:00:59.867Z","objectId":"gQLvDCDwHT"}},{"success":{"createdAt":"2013-04-17T08:00:59.878Z","objectId":"G5NA3oIGVm"}},{"success":{"createdAt":"2013-04-17T08:00:59.888Z","objectId":"jVxsPTvMde"}},{"success":{"createdAt":"2013-04-17T08:00:59.898Z","objectId":"LBQ8zLuAjl"}},{"success":{"createdAt":"2013-04-17T08:00:59.908Z","objectId":"oQNAprP2r3"}},{"success":{"createdAt":"2013-04-17T08:00:59.921Z","objectId":"DuJqZ20ptj"}},{"success":{"createdAt":"2013-04-17T08:00:59.939Z","objectId":"pNxkcpR4AI"}},{"success":{"createdAt":"2013-04-17T08:00:59.949Z","objectId":"aRsHByiB4U"}},{"success":{"createdAt":"2013-04-17T08:00:59.959Z","objectId":"vwT6m1D2fj"}},{"success":{"createdAt":"2013-04-17T08:00:59.969Z","objectId":"7fySyusdEJ"}}]'
|
|
541
150
|
http_version:
|
|
542
|
-
recorded_at:
|
|
151
|
+
recorded_at: Wed, 17 Apr 2013 08:01:00 GMT
|
|
543
152
|
- request:
|
|
544
153
|
method: get
|
|
545
|
-
uri: https://
|
|
154
|
+
uri: https://tIcrV2dwbkT7AqjU8Cn8FZFU60hk5qCnMXlJnJQq:H6xYlZzvwBZHUBjoyrFKXkWZoCVfqrmC3ARXMZjq@api.parse.com/1/classes/Post?count=1&where=%7B%7D
|
|
546
155
|
body:
|
|
547
156
|
encoding: US-ASCII
|
|
548
157
|
string: ''
|
|
@@ -558,41 +167,38 @@ http_interactions:
|
|
|
558
167
|
code: 200
|
|
559
168
|
message: OK
|
|
560
169
|
headers:
|
|
561
|
-
Access-Control-Allow-Origin:
|
|
562
|
-
- https://parse.com, https://www.parse.com
|
|
563
|
-
Access-Control-Request-Method:
|
|
564
|
-
- ! '*'
|
|
565
170
|
Cache-Control:
|
|
566
171
|
- max-age=0, private, must-revalidate
|
|
567
172
|
Content-Type:
|
|
568
173
|
- application/json; charset=utf-8
|
|
569
174
|
Date:
|
|
570
|
-
-
|
|
175
|
+
- Wed, 17 Apr 2013 08:01:00 GMT
|
|
571
176
|
Etag:
|
|
572
|
-
- ! '"
|
|
177
|
+
- ! '"52a63e024926313e31d7b56ae69e5a9e"'
|
|
573
178
|
Server:
|
|
574
179
|
- nginx/1.2.2
|
|
575
180
|
Set-Cookie:
|
|
576
|
-
- _parse_session=
|
|
577
|
-
domain=.parse.com; path=/; expires=
|
|
181
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlMDRiMDI2MzgyNTkwNzk5OWQ4MTdhMGM1OGQyNjkyOTc%3D--8fb74000abd242b86a4499828597f5547da1454a;
|
|
182
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 08:01:00 GMT; secure;
|
|
183
|
+
HttpOnly
|
|
578
184
|
Status:
|
|
579
185
|
- 200 OK
|
|
580
186
|
X-Runtime:
|
|
581
|
-
- '0.
|
|
187
|
+
- '0.056337'
|
|
582
188
|
X-Ua-Compatible:
|
|
583
189
|
- IE=Edge,chrome=1
|
|
584
190
|
Content-Length:
|
|
585
|
-
- '
|
|
191
|
+
- '2114'
|
|
586
192
|
Connection:
|
|
587
193
|
- keep-alive
|
|
588
194
|
body:
|
|
589
195
|
encoding: US-ASCII
|
|
590
|
-
string: ! '{"results":[{"
|
|
196
|
+
string: ! '{"results":[{"title":"skip","author":"0-author","createdAt":"2013-04-17T08:00:59.815Z","updatedAt":"2013-04-17T08:00:59.815Z","objectId":"Lw9Kh56oCv"},{"title":"skip","author":"1-author","createdAt":"2013-04-17T08:00:59.826Z","updatedAt":"2013-04-17T08:00:59.826Z","objectId":"vvZQDorAOk"},{"title":"skip","author":"2-author","createdAt":"2013-04-17T08:00:59.836Z","updatedAt":"2013-04-17T08:00:59.836Z","objectId":"mNQ2pfhPaZ"},{"title":"skip","author":"3-author","createdAt":"2013-04-17T08:00:59.846Z","updatedAt":"2013-04-17T08:00:59.846Z","objectId":"LI7vaP25w1"},{"title":"skip","author":"4-author","createdAt":"2013-04-17T08:00:59.856Z","updatedAt":"2013-04-17T08:00:59.856Z","objectId":"X36Wj5PwaZ"},{"title":"skip","author":"5-author","createdAt":"2013-04-17T08:00:59.867Z","updatedAt":"2013-04-17T08:00:59.867Z","objectId":"gQLvDCDwHT"},{"title":"skip","author":"6-author","createdAt":"2013-04-17T08:00:59.878Z","updatedAt":"2013-04-17T08:00:59.878Z","objectId":"G5NA3oIGVm"},{"title":"skip","author":"7-author","createdAt":"2013-04-17T08:00:59.888Z","updatedAt":"2013-04-17T08:00:59.888Z","objectId":"jVxsPTvMde"},{"title":"skip","author":"8-author","createdAt":"2013-04-17T08:00:59.898Z","updatedAt":"2013-04-17T08:00:59.898Z","objectId":"LBQ8zLuAjl"},{"title":"skip","author":"9-author","createdAt":"2013-04-17T08:00:59.908Z","updatedAt":"2013-04-17T08:00:59.908Z","objectId":"oQNAprP2r3"},{"title":"skip","author":"10-author","createdAt":"2013-04-17T08:00:59.921Z","updatedAt":"2013-04-17T08:00:59.921Z","objectId":"DuJqZ20ptj"},{"title":"skip","author":"11-author","createdAt":"2013-04-17T08:00:59.939Z","updatedAt":"2013-04-17T08:00:59.939Z","objectId":"pNxkcpR4AI"},{"title":"skip","author":"12-author","createdAt":"2013-04-17T08:00:59.949Z","updatedAt":"2013-04-17T08:00:59.949Z","objectId":"aRsHByiB4U"},{"title":"skip","author":"13-author","createdAt":"2013-04-17T08:00:59.959Z","updatedAt":"2013-04-17T08:00:59.959Z","objectId":"vwT6m1D2fj"},{"title":"skip","author":"14-author","createdAt":"2013-04-17T08:00:59.969Z","updatedAt":"2013-04-17T08:00:59.969Z","objectId":"7fySyusdEJ"}],"count":15}'
|
|
591
197
|
http_version:
|
|
592
|
-
recorded_at:
|
|
198
|
+
recorded_at: Wed, 17 Apr 2013 08:01:00 GMT
|
|
593
199
|
- request:
|
|
594
200
|
method: get
|
|
595
|
-
uri: https://
|
|
201
|
+
uri: https://tIcrV2dwbkT7AqjU8Cn8FZFU60hk5qCnMXlJnJQq:H6xYlZzvwBZHUBjoyrFKXkWZoCVfqrmC3ARXMZjq@api.parse.com/1/classes/Post?limit=1&skip=14&where=%7B%22title%22:%22skip%22%7D
|
|
596
202
|
body:
|
|
597
203
|
encoding: US-ASCII
|
|
598
204
|
string: ''
|
|
@@ -608,41 +214,38 @@ http_interactions:
|
|
|
608
214
|
code: 200
|
|
609
215
|
message: OK
|
|
610
216
|
headers:
|
|
611
|
-
Access-Control-Allow-Origin:
|
|
612
|
-
- https://parse.com, https://www.parse.com
|
|
613
|
-
Access-Control-Request-Method:
|
|
614
|
-
- ! '*'
|
|
615
217
|
Cache-Control:
|
|
616
218
|
- max-age=0, private, must-revalidate
|
|
617
219
|
Content-Type:
|
|
618
220
|
- application/json; charset=utf-8
|
|
619
221
|
Date:
|
|
620
|
-
-
|
|
222
|
+
- Wed, 17 Apr 2013 08:01:00 GMT
|
|
621
223
|
Etag:
|
|
622
|
-
- ! '"
|
|
224
|
+
- ! '"f8c4ce5c42d7b4dc6199b84783c566f2"'
|
|
623
225
|
Server:
|
|
624
226
|
- nginx/1.2.2
|
|
625
227
|
Set-Cookie:
|
|
626
|
-
- _parse_session=
|
|
627
|
-
domain=.parse.com; path=/; expires=
|
|
228
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlODMzN2YyNjA3NzIyZmRhOWM0OGQyZTUyNTdkNTY1YzM%3D--b31711a8af676a14a0d57f374a85d61aa07b5d75;
|
|
229
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 08:01:00 GMT; secure;
|
|
230
|
+
HttpOnly
|
|
628
231
|
Status:
|
|
629
232
|
- 200 OK
|
|
630
233
|
X-Runtime:
|
|
631
|
-
- '0.
|
|
234
|
+
- '0.035293'
|
|
632
235
|
X-Ua-Compatible:
|
|
633
236
|
- IE=Edge,chrome=1
|
|
634
237
|
Content-Length:
|
|
635
|
-
- '
|
|
238
|
+
- '153'
|
|
636
239
|
Connection:
|
|
637
240
|
- keep-alive
|
|
638
241
|
body:
|
|
639
242
|
encoding: US-ASCII
|
|
640
|
-
string: ! '{"results":[{"
|
|
243
|
+
string: ! '{"results":[{"title":"skip","author":"14-author","createdAt":"2013-04-17T08:00:59.969Z","updatedAt":"2013-04-17T08:00:59.969Z","objectId":"7fySyusdEJ"}]}'
|
|
641
244
|
http_version:
|
|
642
|
-
recorded_at:
|
|
245
|
+
recorded_at: Wed, 17 Apr 2013 08:01:01 GMT
|
|
643
246
|
- request:
|
|
644
247
|
method: get
|
|
645
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/
|
|
248
|
+
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Post?where=%7B%7D
|
|
646
249
|
body:
|
|
647
250
|
encoding: US-ASCII
|
|
648
251
|
string: ''
|
|
@@ -658,49 +261,50 @@ http_interactions:
|
|
|
658
261
|
code: 200
|
|
659
262
|
message: OK
|
|
660
263
|
headers:
|
|
661
|
-
Access-Control-Allow-Origin:
|
|
662
|
-
- https://parse.com, https://www.parse.com
|
|
663
|
-
Access-Control-Request-Method:
|
|
664
|
-
- ! '*'
|
|
665
264
|
Cache-Control:
|
|
666
265
|
- max-age=0, private, must-revalidate
|
|
667
266
|
Content-Type:
|
|
668
267
|
- application/json; charset=utf-8
|
|
669
268
|
Date:
|
|
670
|
-
-
|
|
269
|
+
- Wed, 17 Apr 2013 20:09:08 GMT
|
|
671
270
|
Etag:
|
|
672
|
-
- ! '"
|
|
271
|
+
- ! '"e2412c1ffbfb6b53a82a9daf665b2c1a"'
|
|
673
272
|
Server:
|
|
674
273
|
- nginx/1.2.2
|
|
675
274
|
Set-Cookie:
|
|
676
|
-
- _parse_session=
|
|
677
|
-
domain=.parse.com; path=/; expires=
|
|
275
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlOTcwMmM2MTJmZDVmM2Q0NGFmMmRmZGY2MWJiMWM0YmQ%3D--4109c37f4dd79442950b534f9012c0db2abd7c45;
|
|
276
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 20:09:08 GMT; secure;
|
|
277
|
+
HttpOnly
|
|
678
278
|
Status:
|
|
679
279
|
- 200 OK
|
|
680
280
|
X-Runtime:
|
|
681
|
-
- '0.
|
|
281
|
+
- '0.026278'
|
|
682
282
|
X-Ua-Compatible:
|
|
683
283
|
- IE=Edge,chrome=1
|
|
684
284
|
Content-Length:
|
|
685
|
-
- '
|
|
285
|
+
- '14'
|
|
686
286
|
Connection:
|
|
687
287
|
- keep-alive
|
|
688
288
|
body:
|
|
689
289
|
encoding: US-ASCII
|
|
690
|
-
string: ! '{"results":[
|
|
290
|
+
string: ! '{"results":[]}'
|
|
691
291
|
http_version:
|
|
692
|
-
recorded_at:
|
|
292
|
+
recorded_at: Wed, 17 Apr 2013 20:09:08 GMT
|
|
693
293
|
- request:
|
|
694
|
-
method:
|
|
695
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/
|
|
294
|
+
method: post
|
|
295
|
+
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/batch
|
|
696
296
|
body:
|
|
697
|
-
encoding:
|
|
698
|
-
string: ''
|
|
297
|
+
encoding: UTF-8
|
|
298
|
+
string: ! '{"requests":[{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"0-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"1-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"2-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"3-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"4-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"5-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"6-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"7-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"8-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"9-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"10-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"11-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"12-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"13-author"}},{"method":"POST","path":"/1/classes/Post","body":{"title":"skip","author":"14-author"}}]}'
|
|
699
299
|
headers:
|
|
700
300
|
Accept:
|
|
701
301
|
- ! '*/*; q=0.5, application/xml'
|
|
702
302
|
Accept-Encoding:
|
|
703
303
|
- gzip, deflate
|
|
304
|
+
Content-Type:
|
|
305
|
+
- application/json
|
|
306
|
+
Content-Length:
|
|
307
|
+
- '1324'
|
|
704
308
|
User-Agent:
|
|
705
309
|
- Ruby
|
|
706
310
|
response:
|
|
@@ -708,41 +312,38 @@ http_interactions:
|
|
|
708
312
|
code: 200
|
|
709
313
|
message: OK
|
|
710
314
|
headers:
|
|
711
|
-
Access-Control-Allow-Origin:
|
|
712
|
-
- https://parse.com, https://www.parse.com
|
|
713
|
-
Access-Control-Request-Method:
|
|
714
|
-
- ! '*'
|
|
715
315
|
Cache-Control:
|
|
716
316
|
- max-age=0, private, must-revalidate
|
|
717
317
|
Content-Type:
|
|
718
318
|
- application/json; charset=utf-8
|
|
719
319
|
Date:
|
|
720
|
-
-
|
|
320
|
+
- Wed, 17 Apr 2013 20:09:09 GMT
|
|
721
321
|
Etag:
|
|
722
|
-
- ! '"
|
|
322
|
+
- ! '"20c77352e54cd561d018fb1dbdf38554"'
|
|
723
323
|
Server:
|
|
724
324
|
- nginx/1.2.2
|
|
725
325
|
Set-Cookie:
|
|
726
|
-
- _parse_session=
|
|
727
|
-
domain=.parse.com; path=/; expires=
|
|
326
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlZjJkMjljYmJjM2ZjNTFkYjdlYjRlNTQ4YjNjNzdjYzA%3D--3ca5cc29a01cfdbbd647d21403ac4c8c1aa0fe7c;
|
|
327
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 20:09:09 GMT; secure;
|
|
328
|
+
HttpOnly
|
|
728
329
|
Status:
|
|
729
330
|
- 200 OK
|
|
730
331
|
X-Runtime:
|
|
731
|
-
- '0.
|
|
332
|
+
- '0.244368'
|
|
732
333
|
X-Ua-Compatible:
|
|
733
334
|
- IE=Edge,chrome=1
|
|
734
335
|
Content-Length:
|
|
735
|
-
- '
|
|
336
|
+
- '1156'
|
|
736
337
|
Connection:
|
|
737
338
|
- keep-alive
|
|
738
339
|
body:
|
|
739
340
|
encoding: US-ASCII
|
|
740
|
-
string: ! '{"
|
|
341
|
+
string: ! '[{"success":{"createdAt":"2013-04-17T20:09:08.921Z","objectId":"HcragMXzaS"}},{"success":{"createdAt":"2013-04-17T20:09:08.933Z","objectId":"lyqGmT7Zz6"}},{"success":{"createdAt":"2013-04-17T20:09:08.943Z","objectId":"uUSDbNaFmP"}},{"success":{"createdAt":"2013-04-17T20:09:08.954Z","objectId":"JEYqVC2f9T"}},{"success":{"createdAt":"2013-04-17T20:09:08.965Z","objectId":"9gZpCdgH66"}},{"success":{"createdAt":"2013-04-17T20:09:08.976Z","objectId":"agWKneOHZk"}},{"success":{"createdAt":"2013-04-17T20:09:08.987Z","objectId":"ANpPcET056"}},{"success":{"createdAt":"2013-04-17T20:09:08.998Z","objectId":"ZOBi5BaSTD"}},{"success":{"createdAt":"2013-04-17T20:09:09.008Z","objectId":"AkaHbHmsz2"}},{"success":{"createdAt":"2013-04-17T20:09:09.074Z","objectId":"6xLSE22iu6"}},{"success":{"createdAt":"2013-04-17T20:09:09.085Z","objectId":"RXdJcbprv0"}},{"success":{"createdAt":"2013-04-17T20:09:09.096Z","objectId":"mJYNL5Jchs"}},{"success":{"createdAt":"2013-04-17T20:09:09.109Z","objectId":"8JxGUs5vh4"}},{"success":{"createdAt":"2013-04-17T20:09:09.119Z","objectId":"AOcaxzKjvY"}},{"success":{"createdAt":"2013-04-17T20:09:09.130Z","objectId":"t7dLnELASt"}}]'
|
|
741
342
|
http_version:
|
|
742
|
-
recorded_at:
|
|
343
|
+
recorded_at: Wed, 17 Apr 2013 20:09:09 GMT
|
|
743
344
|
- request:
|
|
744
345
|
method: get
|
|
745
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/
|
|
346
|
+
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Post?count=1&where=%7B%7D
|
|
746
347
|
body:
|
|
747
348
|
encoding: US-ASCII
|
|
748
349
|
string: ''
|
|
@@ -758,41 +359,38 @@ http_interactions:
|
|
|
758
359
|
code: 200
|
|
759
360
|
message: OK
|
|
760
361
|
headers:
|
|
761
|
-
Access-Control-Allow-Origin:
|
|
762
|
-
- https://parse.com, https://www.parse.com
|
|
763
|
-
Access-Control-Request-Method:
|
|
764
|
-
- ! '*'
|
|
765
362
|
Cache-Control:
|
|
766
363
|
- max-age=0, private, must-revalidate
|
|
767
364
|
Content-Type:
|
|
768
365
|
- application/json; charset=utf-8
|
|
769
366
|
Date:
|
|
770
|
-
-
|
|
367
|
+
- Wed, 17 Apr 2013 20:09:09 GMT
|
|
771
368
|
Etag:
|
|
772
|
-
- ! '"
|
|
369
|
+
- ! '"1beae718329cc56a2ebfbefaf0b772ff"'
|
|
773
370
|
Server:
|
|
774
371
|
- nginx/1.2.2
|
|
775
372
|
Set-Cookie:
|
|
776
|
-
- _parse_session=
|
|
777
|
-
domain=.parse.com; path=/; expires=
|
|
373
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlYTNmNjY0MWU5NTZiMjRlZjQyZjIyMDg5NzNiNTJhZjI%3D--2e0d87f27d8fd11ce38a0601a84374d41aac09b6;
|
|
374
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 20:09:09 GMT; secure;
|
|
375
|
+
HttpOnly
|
|
778
376
|
Status:
|
|
779
377
|
- 200 OK
|
|
780
378
|
X-Runtime:
|
|
781
|
-
- '0.
|
|
379
|
+
- '0.030938'
|
|
782
380
|
X-Ua-Compatible:
|
|
783
381
|
- IE=Edge,chrome=1
|
|
784
|
-
|
|
785
|
-
-
|
|
382
|
+
Transfer-Encoding:
|
|
383
|
+
- chunked
|
|
786
384
|
Connection:
|
|
787
385
|
- keep-alive
|
|
788
386
|
body:
|
|
789
387
|
encoding: US-ASCII
|
|
790
|
-
string: ! '{"results":[{"
|
|
388
|
+
string: ! '{"results":[{"title":"skip","author":"0-author","createdAt":"2013-04-17T20:09:08.921Z","updatedAt":"2013-04-17T20:09:08.921Z","objectId":"HcragMXzaS"},{"title":"skip","author":"1-author","createdAt":"2013-04-17T20:09:08.933Z","updatedAt":"2013-04-17T20:09:08.933Z","objectId":"lyqGmT7Zz6"},{"title":"skip","author":"2-author","createdAt":"2013-04-17T20:09:08.943Z","updatedAt":"2013-04-17T20:09:08.943Z","objectId":"uUSDbNaFmP"},{"title":"skip","author":"3-author","createdAt":"2013-04-17T20:09:08.954Z","updatedAt":"2013-04-17T20:09:08.954Z","objectId":"JEYqVC2f9T"},{"title":"skip","author":"4-author","createdAt":"2013-04-17T20:09:08.965Z","updatedAt":"2013-04-17T20:09:08.965Z","objectId":"9gZpCdgH66"},{"title":"skip","author":"5-author","createdAt":"2013-04-17T20:09:08.976Z","updatedAt":"2013-04-17T20:09:08.976Z","objectId":"agWKneOHZk"},{"title":"skip","author":"6-author","createdAt":"2013-04-17T20:09:08.987Z","updatedAt":"2013-04-17T20:09:08.987Z","objectId":"ANpPcET056"},{"title":"skip","author":"7-author","createdAt":"2013-04-17T20:09:08.998Z","updatedAt":"2013-04-17T20:09:08.998Z","objectId":"ZOBi5BaSTD"},{"title":"skip","author":"8-author","createdAt":"2013-04-17T20:09:09.008Z","updatedAt":"2013-04-17T20:09:09.008Z","objectId":"AkaHbHmsz2"},{"title":"skip","author":"9-author","createdAt":"2013-04-17T20:09:09.074Z","updatedAt":"2013-04-17T20:09:09.074Z","objectId":"6xLSE22iu6"},{"title":"skip","author":"10-author","createdAt":"2013-04-17T20:09:09.085Z","updatedAt":"2013-04-17T20:09:09.085Z","objectId":"RXdJcbprv0"},{"title":"skip","author":"11-author","createdAt":"2013-04-17T20:09:09.096Z","updatedAt":"2013-04-17T20:09:09.096Z","objectId":"mJYNL5Jchs"},{"title":"skip","author":"12-author","createdAt":"2013-04-17T20:09:09.109Z","updatedAt":"2013-04-17T20:09:09.109Z","objectId":"8JxGUs5vh4"},{"title":"skip","author":"13-author","createdAt":"2013-04-17T20:09:09.119Z","updatedAt":"2013-04-17T20:09:09.119Z","objectId":"AOcaxzKjvY"},{"title":"skip","author":"14-author","createdAt":"2013-04-17T20:09:09.130Z","updatedAt":"2013-04-17T20:09:09.130Z","objectId":"t7dLnELASt"}],"count":15}'
|
|
791
389
|
http_version:
|
|
792
|
-
recorded_at:
|
|
390
|
+
recorded_at: Wed, 17 Apr 2013 20:09:09 GMT
|
|
793
391
|
- request:
|
|
794
392
|
method: get
|
|
795
|
-
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/
|
|
393
|
+
uri: https://FKEzdzDgEyghLDFgIVHYJehVlWpfVtUmEv4MUEkJ:bOYO7usWbrcIbL5L5bPzlYrSonQRvwJecC1XLsuN@api.parse.com/1/classes/Post?limit=1&skip=14&where=%7B%22title%22:%22skip%22%7D
|
|
796
394
|
body:
|
|
797
395
|
encoding: US-ASCII
|
|
798
396
|
string: ''
|
|
@@ -808,36 +406,33 @@ http_interactions:
|
|
|
808
406
|
code: 200
|
|
809
407
|
message: OK
|
|
810
408
|
headers:
|
|
811
|
-
Access-Control-Allow-Origin:
|
|
812
|
-
- https://parse.com, https://www.parse.com
|
|
813
|
-
Access-Control-Request-Method:
|
|
814
|
-
- ! '*'
|
|
815
409
|
Cache-Control:
|
|
816
410
|
- max-age=0, private, must-revalidate
|
|
817
411
|
Content-Type:
|
|
818
412
|
- application/json; charset=utf-8
|
|
819
413
|
Date:
|
|
820
|
-
-
|
|
414
|
+
- Wed, 17 Apr 2013 20:09:09 GMT
|
|
821
415
|
Etag:
|
|
822
|
-
- ! '"
|
|
416
|
+
- ! '"0ebc310e2bfa26d925732bf1850a534b"'
|
|
823
417
|
Server:
|
|
824
418
|
- nginx/1.2.2
|
|
825
419
|
Set-Cookie:
|
|
826
|
-
- _parse_session=
|
|
827
|
-
domain=.parse.com; path=/; expires=
|
|
420
|
+
- _parse_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRiIlMWNkMjlhOTM4NjNjNThhMWE3NzZhMDdmODAwZjFmMDg%3D--16548179629e44cc3ec067ff34c6ed06a51e6725;
|
|
421
|
+
domain=.parse.com; path=/; expires=Mon, 17-Apr-2023 20:09:09 GMT; secure;
|
|
422
|
+
HttpOnly
|
|
828
423
|
Status:
|
|
829
424
|
- 200 OK
|
|
830
425
|
X-Runtime:
|
|
831
|
-
- '0.
|
|
426
|
+
- '0.027522'
|
|
832
427
|
X-Ua-Compatible:
|
|
833
428
|
- IE=Edge,chrome=1
|
|
834
429
|
Content-Length:
|
|
835
|
-
- '
|
|
430
|
+
- '153'
|
|
836
431
|
Connection:
|
|
837
432
|
- keep-alive
|
|
838
433
|
body:
|
|
839
434
|
encoding: US-ASCII
|
|
840
|
-
string: ! '{"results":[]}'
|
|
435
|
+
string: ! '{"results":[{"title":"skip","author":"14-author","createdAt":"2013-04-17T20:09:09.130Z","updatedAt":"2013-04-17T20:09:09.130Z","objectId":"t7dLnELASt"}]}'
|
|
841
436
|
http_version:
|
|
842
|
-
recorded_at:
|
|
843
|
-
recorded_with: VCR 2.
|
|
437
|
+
recorded_at: Wed, 17 Apr 2013 20:09:09 GMT
|
|
438
|
+
recorded_with: VCR 2.4.0
|