jirafe 0.1.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.
Files changed (148) hide show
  1. data/.autotest +5 -0
  2. data/.gitignore +23 -0
  3. data/.rbenv-version +1 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +11 -0
  6. data/Gemfile +8 -0
  7. data/LICENSE +13 -0
  8. data/README.md +104 -0
  9. data/Rakefile +27 -0
  10. data/fixtures/responses/application_get_with_cloud_token.yml +40 -0
  11. data/fixtures/responses/application_get_with_invalid_token.yml +41 -0
  12. data/fixtures/responses/application_get_with_master_token.yml +784 -0
  13. data/fixtures/responses/application_get_with_reporting_token.yml +38 -0
  14. data/fixtures/responses/application_post_with_app_token.yml +38 -0
  15. data/fixtures/responses/application_post_with_cloud_token.yml +76 -0
  16. data/fixtures/responses/application_post_with_invalid_token.yml +79 -0
  17. data/fixtures/responses/application_post_with_master_token.yml +784 -0
  18. data/fixtures/responses/application_post_with_master_token_blank_name.yml +79 -0
  19. data/fixtures/responses/application_post_with_master_token_dupe_name.yml +76 -0
  20. data/fixtures/responses/application_post_with_master_token_no_name.yml +79 -0
  21. data/fixtures/responses/application_post_with_reporting_token.yml +76 -0
  22. data/fixtures/responses/application_put_with_cloud_token.yml +68 -0
  23. data/fixtures/responses/application_put_with_invalid_token.yml +145 -0
  24. data/fixtures/responses/application_put_with_master_token.yml +68 -0
  25. data/fixtures/responses/application_put_with_reporting_token.yml +68 -0
  26. data/fixtures/responses/application_sites_get_with_master_token.yml +38 -0
  27. data/fixtures/responses/callback_event_post_event.yml +2000 -0
  28. data/fixtures/responses/callback_event_post_event_fetch_token.yml +1473 -0
  29. data/fixtures/responses/jirafe_resource_get_status_url.yml +38 -0
  30. data/fixtures/responses/jirafe_resource_get_status_url_with_query_param.yml +38 -0
  31. data/fixtures/responses/site_abandon_rate_get_with_master_token.yml +49 -0
  32. data/fixtures/responses/site_abandoned_average_ordervalue_get_with_master_token.yml +49 -0
  33. data/fixtures/responses/site_abandoned_carts_get_with_master_token.yml +49 -0
  34. data/fixtures/responses/site_abandoned_revenue_get_with_master_token.yml +49 -0
  35. data/fixtures/responses/site_average_order_value_get_with_master_token.yml +49 -0
  36. data/fixtures/responses/site_bounces_rate_get_with_master_token.yml +49 -0
  37. data/fixtures/responses/site_cart_segmentation_get_with_master_token.yml +38 -0
  38. data/fixtures/responses/site_conversion_rate_get_with_master_token.yml +49 -0
  39. data/fixtures/responses/site_conversions_get_with_master_token.yml +49 -0
  40. data/fixtures/responses/site_customers_get_with_master_token.yml +49 -0
  41. data/fixtures/responses/site_dashboard_get_with_master_token.yml +60 -0
  42. data/fixtures/responses/site_get_with_master_token.yml +73 -0
  43. data/fixtures/responses/site_keywords_get_with_master_token.yml +38 -0
  44. data/fixtures/responses/site_orders_status_get_with_master_token.yml +38 -0
  45. data/fixtures/responses/site_origins_get_with_master_token.yml +38 -0
  46. data/fixtures/responses/site_period_data_get_with_master_token.yml +38 -0
  47. data/fixtures/responses/site_post_with_app_token.yml +727 -0
  48. data/fixtures/responses/site_post_with_master_token.yml +1569 -0
  49. data/fixtures/responses/site_products_get_with_master_token.yml +38 -0
  50. data/fixtures/responses/site_referers_get_with_master_token.yml +38 -0
  51. data/fixtures/responses/site_revenues_average_get_with_master_token.yml +49 -0
  52. data/fixtures/responses/site_revenues_get_with_master_token.yml +49 -0
  53. data/fixtures/responses/site_segments_carts_get_with_admin_token.yml +108 -0
  54. data/fixtures/responses/site_segments_sales_get_with_admin_token.yml +143 -0
  55. data/fixtures/responses/site_total_carts_get_with_master_token.yml +49 -0
  56. data/fixtures/responses/site_translations__get_with_master_token.yml +155 -0
  57. data/fixtures/responses/site_translations_de_get_with_master_token.yml +156 -0
  58. data/fixtures/responses/site_translations_es_get_with_master_token.yml +155 -0
  59. data/fixtures/responses/site_translations_fr_get_with_master_token.yml +178 -0
  60. data/fixtures/responses/site_translations_german_get_with_master_token.yml +156 -0
  61. data/fixtures/responses/site_translations_get_with_master_token.yml +865 -0
  62. data/fixtures/responses/site_translations_xx_get_with_master_token.yml +155 -0
  63. data/fixtures/responses/site_visits_get_with_master_token.yml +49 -0
  64. data/fixtures/responses/status_get.yml +38 -0
  65. data/fixtures/responses/status_get_500.yml +31 -0
  66. data/fixtures/responses/test.yml +7364 -0
  67. data/fixtures/responses/version_get.yml +38 -0
  68. data/jirafe.gemspec +29 -0
  69. data/lib/jirafe.rb +64 -0
  70. data/lib/jirafe/callback/event.rb +57 -0
  71. data/lib/jirafe/callback/events/order.rb +48 -0
  72. data/lib/jirafe/callback/events/refund.rb +32 -0
  73. data/lib/jirafe/callback/jirafe_callback.rb +50 -0
  74. data/lib/jirafe/configuration.rb +47 -0
  75. data/lib/jirafe/error.rb +57 -0
  76. data/lib/jirafe/resource/application.rb +18 -0
  77. data/lib/jirafe/resource/jirafe_resource.rb +188 -0
  78. data/lib/jirafe/resource/site.rb +21 -0
  79. data/lib/jirafe/resource/sites/abandon_rate.rb +16 -0
  80. data/lib/jirafe/resource/sites/abandoned_average_order_value.rb +17 -0
  81. data/lib/jirafe/resource/sites/abandoned_carts.rb +16 -0
  82. data/lib/jirafe/resource/sites/abandoned_revenue.rb +16 -0
  83. data/lib/jirafe/resource/sites/average_order_value.rb +16 -0
  84. data/lib/jirafe/resource/sites/bounces_rate.rb +16 -0
  85. data/lib/jirafe/resource/sites/cart_segmentation.rb +11 -0
  86. data/lib/jirafe/resource/sites/conversion_rate.rb +16 -0
  87. data/lib/jirafe/resource/sites/conversions.rb +17 -0
  88. data/lib/jirafe/resource/sites/customers.rb +16 -0
  89. data/lib/jirafe/resource/sites/dashboard.rb +27 -0
  90. data/lib/jirafe/resource/sites/keywords.rb +11 -0
  91. data/lib/jirafe/resource/sites/orders_status.rb +15 -0
  92. data/lib/jirafe/resource/sites/origins.rb +11 -0
  93. data/lib/jirafe/resource/sites/period_data.rb +16 -0
  94. data/lib/jirafe/resource/sites/products.rb +12 -0
  95. data/lib/jirafe/resource/sites/referers.rb +12 -0
  96. data/lib/jirafe/resource/sites/revenues.rb +16 -0
  97. data/lib/jirafe/resource/sites/revenues_average.rb +16 -0
  98. data/lib/jirafe/resource/sites/segments_carts.rb +14 -0
  99. data/lib/jirafe/resource/sites/segments_sales.rb +14 -0
  100. data/lib/jirafe/resource/sites/total_carts.rb +16 -0
  101. data/lib/jirafe/resource/sites/translations.rb +18 -0
  102. data/lib/jirafe/resource/sites/visitors_interest.rb +14 -0
  103. data/lib/jirafe/resource/sites/visits.rb +16 -0
  104. data/lib/jirafe/resource/status.rb +19 -0
  105. data/lib/jirafe/resource/sync_service.rb +1 -0
  106. data/lib/jirafe/resource/time_series.rb +29 -0
  107. data/lib/jirafe/resource/user.rb +32 -0
  108. data/lib/jirafe/resource/version.rb +9 -0
  109. data/spec/jirafe/callback/event_spec.rb +85 -0
  110. data/spec/jirafe/configuration_spec.rb +150 -0
  111. data/spec/jirafe/jirafe_spec.rb +23 -0
  112. data/spec/jirafe/resource/application_spec.rb +220 -0
  113. data/spec/jirafe/resource/jirafe_resource_spec.rb +188 -0
  114. data/spec/jirafe/resource/site_spec.rb +61 -0
  115. data/spec/jirafe/resource/sites/abandon_rate_spec.rb +11 -0
  116. data/spec/jirafe/resource/sites/abandoned_average_order_value_spec.rb +11 -0
  117. data/spec/jirafe/resource/sites/abandoned_carts_spec.rb +11 -0
  118. data/spec/jirafe/resource/sites/abandoned_revenue_spec.rb +11 -0
  119. data/spec/jirafe/resource/sites/average_order_value_spec.rb +11 -0
  120. data/spec/jirafe/resource/sites/bounces_rate_spec.rb +11 -0
  121. data/spec/jirafe/resource/sites/cart_segmentation_spec.rb +11 -0
  122. data/spec/jirafe/resource/sites/conversion_rate_spec.rb +11 -0
  123. data/spec/jirafe/resource/sites/conversions_spec.rb +11 -0
  124. data/spec/jirafe/resource/sites/customers_spec.rb +11 -0
  125. data/spec/jirafe/resource/sites/dashboard_spec.rb +29 -0
  126. data/spec/jirafe/resource/sites/keywords_spec.rb +11 -0
  127. data/spec/jirafe/resource/sites/orders_status_spec.rb +34 -0
  128. data/spec/jirafe/resource/sites/origins_spec.rb +11 -0
  129. data/spec/jirafe/resource/sites/period_data_spec.rb +22 -0
  130. data/spec/jirafe/resource/sites/products_spec.rb +11 -0
  131. data/spec/jirafe/resource/sites/referers_spec.rb +11 -0
  132. data/spec/jirafe/resource/sites/revenues_average_spec.rb +11 -0
  133. data/spec/jirafe/resource/sites/revenues_spec.rb +11 -0
  134. data/spec/jirafe/resource/sites/segments_carts_spec.rb +29 -0
  135. data/spec/jirafe/resource/sites/segments_sales_spec.rb +29 -0
  136. data/spec/jirafe/resource/sites/total_carts_spec.rb +11 -0
  137. data/spec/jirafe/resource/sites/translations_spec.rb +76 -0
  138. data/spec/jirafe/resource/sites/visitors_interest_spec.rb +8 -0
  139. data/spec/jirafe/resource/sites/visits_spec.rb +11 -0
  140. data/spec/jirafe/resource/status_spec.rb +31 -0
  141. data/spec/jirafe/resource/version_spec.rb +15 -0
  142. data/spec/spec_helper.rb +58 -0
  143. data/spec/support/callback_server.rb +11 -0
  144. data/spec/support/response_helper.rb +31 -0
  145. data/spec/support/shared_examples/empty_resource.rb +17 -0
  146. data/spec/support/shared_examples/time_series.rb +31 -0
  147. data/spec/test_configuration.rb +15 -0
  148. metadata +360 -0
@@ -0,0 +1,1473 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.jirafe.dev/v1/applications/212/sites?token=e4c83f0ef49e07a3de33d93506cc7022
6
+ body:
7
+ encoding: US-ASCII
8
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Server:
16
+ - nginx/1.2.2
17
+ Content-Type:
18
+ - application/json
19
+ Transfer-Encoding:
20
+ - chunked
21
+ Connection:
22
+ - keep-alive
23
+ Keep-Alive:
24
+ - timeout=10
25
+ X-Powered-By:
26
+ - PHP/5.3.15
27
+ Cache-Control:
28
+ - no-cache
29
+ Date:
30
+ - Wed, 05 Sep 2012 19:44:03 GMT
31
+ X-Debug-Token:
32
+ - 5047ab8375eea
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ! '{"site_id":24,"app_id":212,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
36
+ http_version:
37
+ recorded_at: Wed, 05 Sep 2012 19:44:03 GMT
38
+ - request:
39
+ method: post
40
+ uri: http://api.jirafe.dev/v1/applications/213/sites?token=3ae6b62af4fbd8c9d0922f0b6567a6a8
41
+ body:
42
+ encoding: US-ASCII
43
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
44
+ headers: {}
45
+ response:
46
+ status:
47
+ code: 200
48
+ message: OK
49
+ headers:
50
+ Server:
51
+ - nginx/1.2.2
52
+ Content-Type:
53
+ - application/json
54
+ Transfer-Encoding:
55
+ - chunked
56
+ Connection:
57
+ - keep-alive
58
+ Keep-Alive:
59
+ - timeout=10
60
+ X-Powered-By:
61
+ - PHP/5.3.15
62
+ Cache-Control:
63
+ - no-cache
64
+ Date:
65
+ - Wed, 05 Sep 2012 19:44:23 GMT
66
+ X-Debug-Token:
67
+ - 5047ab97b532b
68
+ body:
69
+ encoding: US-ASCII
70
+ string: ! '{"site_id":25,"app_id":213,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
71
+ http_version:
72
+ recorded_at: Wed, 05 Sep 2012 19:44:23 GMT
73
+ - request:
74
+ method: post
75
+ uri: http://api.jirafe.dev/v1/applications/214/sites?token=ecbf3bd1e0cfcd7bb8a12c2394f92af3
76
+ body:
77
+ encoding: US-ASCII
78
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
79
+ headers: {}
80
+ response:
81
+ status:
82
+ code: 200
83
+ message: OK
84
+ headers:
85
+ Server:
86
+ - nginx/1.2.2
87
+ Content-Type:
88
+ - application/json
89
+ Transfer-Encoding:
90
+ - chunked
91
+ Connection:
92
+ - keep-alive
93
+ Keep-Alive:
94
+ - timeout=10
95
+ X-Powered-By:
96
+ - PHP/5.3.15
97
+ Cache-Control:
98
+ - no-cache
99
+ Date:
100
+ - Wed, 05 Sep 2012 19:44:52 GMT
101
+ X-Debug-Token:
102
+ - 5047abb449218
103
+ body:
104
+ encoding: US-ASCII
105
+ string: ! '{"site_id":26,"app_id":214,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
106
+ http_version:
107
+ recorded_at: Wed, 05 Sep 2012 19:44:52 GMT
108
+ - request:
109
+ method: post
110
+ uri: http://api.jirafe.dev/v1/applications/215/sites?token=5b38d9429e0462897cae48b135735d35
111
+ body:
112
+ encoding: US-ASCII
113
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
114
+ headers: {}
115
+ response:
116
+ status:
117
+ code: 200
118
+ message: OK
119
+ headers:
120
+ Server:
121
+ - nginx/1.2.2
122
+ Content-Type:
123
+ - application/json
124
+ Transfer-Encoding:
125
+ - chunked
126
+ Connection:
127
+ - keep-alive
128
+ Keep-Alive:
129
+ - timeout=10
130
+ X-Powered-By:
131
+ - PHP/5.3.15
132
+ Cache-Control:
133
+ - no-cache
134
+ Date:
135
+ - Wed, 05 Sep 2012 19:46:26 GMT
136
+ X-Debug-Token:
137
+ - 5047ac1260993
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ! '{"site_id":27,"app_id":215,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
141
+ http_version:
142
+ recorded_at: Wed, 05 Sep 2012 19:46:26 GMT
143
+ - request:
144
+ method: post
145
+ uri: http://api.jirafe.dev/v1/applications/216/sites?token=548b4241ce86e5d940ea42059f233762
146
+ body:
147
+ encoding: US-ASCII
148
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
149
+ headers: {}
150
+ response:
151
+ status:
152
+ code: 200
153
+ message: OK
154
+ headers:
155
+ Server:
156
+ - nginx/1.2.2
157
+ Content-Type:
158
+ - application/json
159
+ Transfer-Encoding:
160
+ - chunked
161
+ Connection:
162
+ - keep-alive
163
+ Keep-Alive:
164
+ - timeout=10
165
+ X-Powered-By:
166
+ - PHP/5.3.15
167
+ Cache-Control:
168
+ - no-cache
169
+ Date:
170
+ - Wed, 05 Sep 2012 19:47:31 GMT
171
+ X-Debug-Token:
172
+ - 5047ac53701be
173
+ body:
174
+ encoding: US-ASCII
175
+ string: ! '{"site_id":28,"app_id":216,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
176
+ http_version:
177
+ recorded_at: Wed, 05 Sep 2012 19:47:31 GMT
178
+ - request:
179
+ method: post
180
+ uri: http://api.jirafe.dev/v1/applications/217/sites?token=bc8a4c79fab82a0a6a108c1ee931f118
181
+ body:
182
+ encoding: US-ASCII
183
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
184
+ headers: {}
185
+ response:
186
+ status:
187
+ code: 200
188
+ message: OK
189
+ headers:
190
+ Server:
191
+ - nginx/1.2.2
192
+ Content-Type:
193
+ - application/json
194
+ Transfer-Encoding:
195
+ - chunked
196
+ Connection:
197
+ - keep-alive
198
+ Keep-Alive:
199
+ - timeout=10
200
+ X-Powered-By:
201
+ - PHP/5.3.15
202
+ Cache-Control:
203
+ - no-cache
204
+ Date:
205
+ - Wed, 05 Sep 2012 19:47:43 GMT
206
+ X-Debug-Token:
207
+ - 5047ac5f0a7b1
208
+ body:
209
+ encoding: US-ASCII
210
+ string: ! '{"site_id":29,"app_id":217,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
211
+ http_version:
212
+ recorded_at: Wed, 05 Sep 2012 19:47:43 GMT
213
+ - request:
214
+ method: post
215
+ uri: http://api.jirafe.dev/v1/applications/218/sites?token=36e0155a1a995c19388840f3593cc735
216
+ body:
217
+ encoding: US-ASCII
218
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
219
+ headers: {}
220
+ response:
221
+ status:
222
+ code: 200
223
+ message: OK
224
+ headers:
225
+ Server:
226
+ - nginx/1.2.2
227
+ Content-Type:
228
+ - application/json
229
+ Transfer-Encoding:
230
+ - chunked
231
+ Connection:
232
+ - keep-alive
233
+ Keep-Alive:
234
+ - timeout=10
235
+ X-Powered-By:
236
+ - PHP/5.3.15
237
+ Cache-Control:
238
+ - no-cache
239
+ Date:
240
+ - Wed, 05 Sep 2012 19:49:41 GMT
241
+ X-Debug-Token:
242
+ - 5047acd5cc99a
243
+ body:
244
+ encoding: US-ASCII
245
+ string: ! '{"site_id":30,"app_id":218,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
246
+ http_version:
247
+ recorded_at: Wed, 05 Sep 2012 19:49:41 GMT
248
+ - request:
249
+ method: post
250
+ uri: http://api.jirafe.dev/v1/applications/233/sites?token=6f9c44c8a62ca9b399a822a49ed117e8
251
+ body:
252
+ encoding: US-ASCII
253
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
254
+ headers: {}
255
+ response:
256
+ status:
257
+ code: 200
258
+ message: OK
259
+ headers:
260
+ Server:
261
+ - nginx/1.2.2
262
+ Content-Type:
263
+ - application/json
264
+ Transfer-Encoding:
265
+ - chunked
266
+ Connection:
267
+ - keep-alive
268
+ Keep-Alive:
269
+ - timeout=10
270
+ X-Powered-By:
271
+ - PHP/5.3.15
272
+ Cache-Control:
273
+ - no-cache
274
+ Date:
275
+ - Wed, 05 Sep 2012 20:39:15 GMT
276
+ X-Debug-Token:
277
+ - 5047b8733cb94
278
+ body:
279
+ encoding: US-ASCII
280
+ string: ! '{"site_id":35,"app_id":233,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
281
+ http_version:
282
+ recorded_at: Wed, 05 Sep 2012 20:39:15 GMT
283
+ - request:
284
+ method: post
285
+ uri: http://api.jirafe.dev/v1/applications/234/sites?token=e77b60e58bff1d2fbe68a71471987a5e
286
+ body:
287
+ encoding: US-ASCII
288
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
289
+ headers: {}
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ Server:
296
+ - nginx/1.2.2
297
+ Content-Type:
298
+ - application/json
299
+ Transfer-Encoding:
300
+ - chunked
301
+ Connection:
302
+ - keep-alive
303
+ Keep-Alive:
304
+ - timeout=10
305
+ X-Powered-By:
306
+ - PHP/5.3.15
307
+ Cache-Control:
308
+ - no-cache
309
+ Date:
310
+ - Wed, 05 Sep 2012 20:39:31 GMT
311
+ X-Debug-Token:
312
+ - 5047b88375af2
313
+ body:
314
+ encoding: US-ASCII
315
+ string: ! '{"site_id":36,"app_id":234,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
316
+ http_version:
317
+ recorded_at: Wed, 05 Sep 2012 20:39:31 GMT
318
+ - request:
319
+ method: post
320
+ uri: http://api.jirafe.dev/v1/applications/235/sites?token=55e950a6a91c28848846f0d4775f1d19
321
+ body:
322
+ encoding: US-ASCII
323
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
324
+ headers: {}
325
+ response:
326
+ status:
327
+ code: 200
328
+ message: OK
329
+ headers:
330
+ Server:
331
+ - nginx/1.2.2
332
+ Content-Type:
333
+ - application/json
334
+ Transfer-Encoding:
335
+ - chunked
336
+ Connection:
337
+ - keep-alive
338
+ Keep-Alive:
339
+ - timeout=10
340
+ X-Powered-By:
341
+ - PHP/5.3.15
342
+ Cache-Control:
343
+ - no-cache
344
+ Date:
345
+ - Wed, 05 Sep 2012 20:39:52 GMT
346
+ X-Debug-Token:
347
+ - 5047b8989b1f1
348
+ body:
349
+ encoding: US-ASCII
350
+ string: ! '{"site_id":37,"app_id":235,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
351
+ http_version:
352
+ recorded_at: Wed, 05 Sep 2012 20:39:52 GMT
353
+ - request:
354
+ method: post
355
+ uri: http://api.jirafe.dev/v1/applications/236/sites?token=ba8a35dafe11967e069685c61a9e46e4
356
+ body:
357
+ encoding: US-ASCII
358
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
359
+ headers: {}
360
+ response:
361
+ status:
362
+ code: 200
363
+ message: OK
364
+ headers:
365
+ Server:
366
+ - nginx/1.2.2
367
+ Content-Type:
368
+ - application/json
369
+ Transfer-Encoding:
370
+ - chunked
371
+ Connection:
372
+ - keep-alive
373
+ Keep-Alive:
374
+ - timeout=10
375
+ X-Powered-By:
376
+ - PHP/5.3.15
377
+ Cache-Control:
378
+ - no-cache
379
+ Date:
380
+ - Wed, 05 Sep 2012 20:42:54 GMT
381
+ X-Debug-Token:
382
+ - 5047b94e04fe8
383
+ body:
384
+ encoding: US-ASCII
385
+ string: ! '{"site_id":38,"app_id":236,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
386
+ http_version:
387
+ recorded_at: Wed, 05 Sep 2012 20:42:54 GMT
388
+ - request:
389
+ method: post
390
+ uri: http://api.jirafe.dev/v1/applications/237/sites?token=1256f4dbdfe7bbc0eeba9a6c1598620c
391
+ body:
392
+ encoding: US-ASCII
393
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
394
+ headers: {}
395
+ response:
396
+ status:
397
+ code: 200
398
+ message: OK
399
+ headers:
400
+ Server:
401
+ - nginx/1.2.2
402
+ Content-Type:
403
+ - application/json
404
+ Transfer-Encoding:
405
+ - chunked
406
+ Connection:
407
+ - keep-alive
408
+ Keep-Alive:
409
+ - timeout=10
410
+ X-Powered-By:
411
+ - PHP/5.3.15
412
+ Cache-Control:
413
+ - no-cache
414
+ Date:
415
+ - Wed, 05 Sep 2012 20:43:09 GMT
416
+ X-Debug-Token:
417
+ - 5047b95d5f2e9
418
+ body:
419
+ encoding: US-ASCII
420
+ string: ! '{"site_id":39,"app_id":237,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
421
+ http_version:
422
+ recorded_at: Wed, 05 Sep 2012 20:43:09 GMT
423
+ - request:
424
+ method: post
425
+ uri: http://api.jirafe.dev/v1/applications/238/sites?token=87ad1d3c74e0911b7d669ebaa235c46c
426
+ body:
427
+ encoding: US-ASCII
428
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
429
+ headers: {}
430
+ response:
431
+ status:
432
+ code: 200
433
+ message: OK
434
+ headers:
435
+ Server:
436
+ - nginx/1.2.2
437
+ Content-Type:
438
+ - application/json
439
+ Transfer-Encoding:
440
+ - chunked
441
+ Connection:
442
+ - keep-alive
443
+ Keep-Alive:
444
+ - timeout=10
445
+ X-Powered-By:
446
+ - PHP/5.3.15
447
+ Cache-Control:
448
+ - no-cache
449
+ Date:
450
+ - Wed, 05 Sep 2012 20:44:07 GMT
451
+ X-Debug-Token:
452
+ - 5047b997b29c8
453
+ body:
454
+ encoding: US-ASCII
455
+ string: ! '{"site_id":40,"app_id":238,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
456
+ http_version:
457
+ recorded_at: Wed, 05 Sep 2012 20:44:07 GMT
458
+ - request:
459
+ method: post
460
+ uri: http://api.jirafe.dev/v1/applications/239/sites?token=def35b9d349c31a36fcfcba4cd11546d
461
+ body:
462
+ encoding: US-ASCII
463
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
464
+ headers: {}
465
+ response:
466
+ status:
467
+ code: 200
468
+ message: OK
469
+ headers:
470
+ Server:
471
+ - nginx/1.2.2
472
+ Content-Type:
473
+ - application/json
474
+ Transfer-Encoding:
475
+ - chunked
476
+ Connection:
477
+ - keep-alive
478
+ Keep-Alive:
479
+ - timeout=10
480
+ X-Powered-By:
481
+ - PHP/5.3.15
482
+ Cache-Control:
483
+ - no-cache
484
+ Date:
485
+ - Wed, 05 Sep 2012 20:44:28 GMT
486
+ X-Debug-Token:
487
+ - 5047b9ac752dd
488
+ body:
489
+ encoding: US-ASCII
490
+ string: ! '{"site_id":41,"app_id":239,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
491
+ http_version:
492
+ recorded_at: Wed, 05 Sep 2012 20:44:28 GMT
493
+ - request:
494
+ method: post
495
+ uri: http://api.jirafe.dev/v1/applications/240/sites?token=b5af47e33c2bdb63deab26c2d5806df1
496
+ body:
497
+ encoding: US-ASCII
498
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
499
+ headers: {}
500
+ response:
501
+ status:
502
+ code: 200
503
+ message: OK
504
+ headers:
505
+ Server:
506
+ - nginx/1.2.2
507
+ Content-Type:
508
+ - application/json
509
+ Transfer-Encoding:
510
+ - chunked
511
+ Connection:
512
+ - keep-alive
513
+ Keep-Alive:
514
+ - timeout=10
515
+ X-Powered-By:
516
+ - PHP/5.3.15
517
+ Cache-Control:
518
+ - no-cache
519
+ Date:
520
+ - Wed, 05 Sep 2012 20:44:41 GMT
521
+ X-Debug-Token:
522
+ - 5047b9b963123
523
+ body:
524
+ encoding: US-ASCII
525
+ string: ! '{"site_id":42,"app_id":240,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
526
+ http_version:
527
+ recorded_at: Wed, 05 Sep 2012 20:44:41 GMT
528
+ - request:
529
+ method: post
530
+ uri: http://api.jirafe.dev/v1/applications/241/sites?token=1be4593d988bac1c505b09efa66ac6e6
531
+ body:
532
+ encoding: US-ASCII
533
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
534
+ headers: {}
535
+ response:
536
+ status:
537
+ code: 200
538
+ message: OK
539
+ headers:
540
+ Server:
541
+ - nginx/1.2.2
542
+ Content-Type:
543
+ - application/json
544
+ Transfer-Encoding:
545
+ - chunked
546
+ Connection:
547
+ - keep-alive
548
+ Keep-Alive:
549
+ - timeout=10
550
+ X-Powered-By:
551
+ - PHP/5.3.15
552
+ Cache-Control:
553
+ - no-cache
554
+ Date:
555
+ - Wed, 05 Sep 2012 20:46:37 GMT
556
+ X-Debug-Token:
557
+ - 5047ba2d2e132
558
+ body:
559
+ encoding: US-ASCII
560
+ string: ! '{"site_id":43,"app_id":241,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
561
+ http_version:
562
+ recorded_at: Wed, 05 Sep 2012 20:46:37 GMT
563
+ - request:
564
+ method: post
565
+ uri: http://api.jirafe.dev/v1/applications/242/sites?token=773340cc4e47ad5e7a2e00213a3a57b1
566
+ body:
567
+ encoding: US-ASCII
568
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
569
+ headers: {}
570
+ response:
571
+ status:
572
+ code: 200
573
+ message: OK
574
+ headers:
575
+ Server:
576
+ - nginx/1.2.2
577
+ Content-Type:
578
+ - application/json
579
+ Transfer-Encoding:
580
+ - chunked
581
+ Connection:
582
+ - keep-alive
583
+ Keep-Alive:
584
+ - timeout=10
585
+ X-Powered-By:
586
+ - PHP/5.3.15
587
+ Cache-Control:
588
+ - no-cache
589
+ Date:
590
+ - Wed, 05 Sep 2012 20:47:11 GMT
591
+ X-Debug-Token:
592
+ - 5047ba4f4febc
593
+ body:
594
+ encoding: US-ASCII
595
+ string: ! '{"site_id":44,"app_id":242,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
596
+ http_version:
597
+ recorded_at: Wed, 05 Sep 2012 20:47:11 GMT
598
+ - request:
599
+ method: post
600
+ uri: http://api.jirafe.dev/v1/applications/243/sites?token=3ebc72456dd85ff176dabfffb3a9b712
601
+ body:
602
+ encoding: US-ASCII
603
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
604
+ headers: {}
605
+ response:
606
+ status:
607
+ code: 200
608
+ message: OK
609
+ headers:
610
+ Server:
611
+ - nginx/1.2.2
612
+ Content-Type:
613
+ - application/json
614
+ Transfer-Encoding:
615
+ - chunked
616
+ Connection:
617
+ - keep-alive
618
+ Keep-Alive:
619
+ - timeout=10
620
+ X-Powered-By:
621
+ - PHP/5.3.15
622
+ Cache-Control:
623
+ - no-cache
624
+ Date:
625
+ - Wed, 05 Sep 2012 20:47:22 GMT
626
+ X-Debug-Token:
627
+ - 5047ba5aedead
628
+ body:
629
+ encoding: US-ASCII
630
+ string: ! '{"site_id":45,"app_id":243,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
631
+ http_version:
632
+ recorded_at: Wed, 05 Sep 2012 20:47:22 GMT
633
+ - request:
634
+ method: post
635
+ uri: http://api.jirafe.dev/v1/applications/244/sites?token=4555587408d1fbbff66ba83028819a22
636
+ body:
637
+ encoding: US-ASCII
638
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
639
+ headers: {}
640
+ response:
641
+ status:
642
+ code: 200
643
+ message: OK
644
+ headers:
645
+ Server:
646
+ - nginx/1.2.2
647
+ Content-Type:
648
+ - application/json
649
+ Transfer-Encoding:
650
+ - chunked
651
+ Connection:
652
+ - keep-alive
653
+ Keep-Alive:
654
+ - timeout=10
655
+ X-Powered-By:
656
+ - PHP/5.3.15
657
+ Cache-Control:
658
+ - no-cache
659
+ Date:
660
+ - Wed, 05 Sep 2012 20:47:36 GMT
661
+ X-Debug-Token:
662
+ - 5047ba68a002f
663
+ body:
664
+ encoding: US-ASCII
665
+ string: ! '{"site_id":46,"app_id":244,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
666
+ http_version:
667
+ recorded_at: Wed, 05 Sep 2012 20:47:36 GMT
668
+ - request:
669
+ method: post
670
+ uri: http://api.jirafe.dev/v1/applications/245/sites?token=35dbbc8153c5067a750bafd6a7337072
671
+ body:
672
+ encoding: US-ASCII
673
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
674
+ headers: {}
675
+ response:
676
+ status:
677
+ code: 200
678
+ message: OK
679
+ headers:
680
+ Server:
681
+ - nginx/1.2.2
682
+ Content-Type:
683
+ - application/json
684
+ Transfer-Encoding:
685
+ - chunked
686
+ Connection:
687
+ - keep-alive
688
+ Keep-Alive:
689
+ - timeout=10
690
+ X-Powered-By:
691
+ - PHP/5.3.15
692
+ Cache-Control:
693
+ - no-cache
694
+ Date:
695
+ - Wed, 05 Sep 2012 20:47:52 GMT
696
+ X-Debug-Token:
697
+ - 5047ba788ff2f
698
+ body:
699
+ encoding: US-ASCII
700
+ string: ! '{"site_id":47,"app_id":245,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
701
+ http_version:
702
+ recorded_at: Wed, 05 Sep 2012 20:47:52 GMT
703
+ - request:
704
+ method: post
705
+ uri: http://api.jirafe.dev/v1/applications/246/sites?token=1bbd03e43d20bfb54423b397408523c2
706
+ body:
707
+ encoding: US-ASCII
708
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
709
+ headers: {}
710
+ response:
711
+ status:
712
+ code: 200
713
+ message: OK
714
+ headers:
715
+ Server:
716
+ - nginx/1.2.2
717
+ Content-Type:
718
+ - application/json
719
+ Transfer-Encoding:
720
+ - chunked
721
+ Connection:
722
+ - keep-alive
723
+ Keep-Alive:
724
+ - timeout=10
725
+ X-Powered-By:
726
+ - PHP/5.3.15
727
+ Cache-Control:
728
+ - no-cache
729
+ Date:
730
+ - Wed, 05 Sep 2012 20:48:23 GMT
731
+ X-Debug-Token:
732
+ - 5047ba972d45e
733
+ body:
734
+ encoding: US-ASCII
735
+ string: ! '{"site_id":48,"app_id":246,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
736
+ http_version:
737
+ recorded_at: Wed, 05 Sep 2012 20:48:23 GMT
738
+ - request:
739
+ method: post
740
+ uri: http://api.jirafe.dev/v1/applications/247/sites?token=f6306b6af8de0b86a85a2cd1f9e83d8b
741
+ body:
742
+ encoding: US-ASCII
743
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
744
+ headers: {}
745
+ response:
746
+ status:
747
+ code: 200
748
+ message: OK
749
+ headers:
750
+ Server:
751
+ - nginx/1.2.2
752
+ Content-Type:
753
+ - application/json
754
+ Transfer-Encoding:
755
+ - chunked
756
+ Connection:
757
+ - keep-alive
758
+ Keep-Alive:
759
+ - timeout=10
760
+ X-Powered-By:
761
+ - PHP/5.3.15
762
+ Cache-Control:
763
+ - no-cache
764
+ Date:
765
+ - Wed, 05 Sep 2012 20:48:30 GMT
766
+ X-Debug-Token:
767
+ - 5047ba9e88a82
768
+ body:
769
+ encoding: US-ASCII
770
+ string: ! '{"site_id":49,"app_id":247,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
771
+ http_version:
772
+ recorded_at: Wed, 05 Sep 2012 20:48:30 GMT
773
+ - request:
774
+ method: post
775
+ uri: http://api.jirafe.dev/v1/applications/248/sites?token=9b94af88fbec7d762dc1f7fee9af8995
776
+ body:
777
+ encoding: US-ASCII
778
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
779
+ headers: {}
780
+ response:
781
+ status:
782
+ code: 200
783
+ message: OK
784
+ headers:
785
+ Server:
786
+ - nginx/1.2.2
787
+ Content-Type:
788
+ - application/json
789
+ Transfer-Encoding:
790
+ - chunked
791
+ Connection:
792
+ - keep-alive
793
+ Keep-Alive:
794
+ - timeout=10
795
+ X-Powered-By:
796
+ - PHP/5.3.15
797
+ Cache-Control:
798
+ - no-cache
799
+ Date:
800
+ - Wed, 05 Sep 2012 20:48:53 GMT
801
+ X-Debug-Token:
802
+ - 5047bab5be8f6
803
+ body:
804
+ encoding: US-ASCII
805
+ string: ! '{"site_id":50,"app_id":248,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
806
+ http_version:
807
+ recorded_at: Wed, 05 Sep 2012 20:48:53 GMT
808
+ - request:
809
+ method: post
810
+ uri: http://api.jirafe.dev/v1/applications/249/sites?token=db627f230f2e61005b0f7d5b78f3fd1d
811
+ body:
812
+ encoding: US-ASCII
813
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
814
+ headers: {}
815
+ response:
816
+ status:
817
+ code: 200
818
+ message: OK
819
+ headers:
820
+ Server:
821
+ - nginx/1.2.2
822
+ Content-Type:
823
+ - application/json
824
+ Transfer-Encoding:
825
+ - chunked
826
+ Connection:
827
+ - keep-alive
828
+ Keep-Alive:
829
+ - timeout=10
830
+ X-Powered-By:
831
+ - PHP/5.3.15
832
+ Cache-Control:
833
+ - no-cache
834
+ Date:
835
+ - Wed, 05 Sep 2012 20:49:33 GMT
836
+ X-Debug-Token:
837
+ - 5047badd35006
838
+ body:
839
+ encoding: US-ASCII
840
+ string: ! '{"site_id":51,"app_id":249,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
841
+ http_version:
842
+ recorded_at: Wed, 05 Sep 2012 20:49:33 GMT
843
+ - request:
844
+ method: post
845
+ uri: http://api.jirafe.dev/v1/applications/250/sites?token=5bc37985f31c7476d073ac5dee4baca1
846
+ body:
847
+ encoding: US-ASCII
848
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
849
+ headers: {}
850
+ response:
851
+ status:
852
+ code: 200
853
+ message: OK
854
+ headers:
855
+ Server:
856
+ - nginx/1.2.2
857
+ Content-Type:
858
+ - application/json
859
+ Transfer-Encoding:
860
+ - chunked
861
+ Connection:
862
+ - keep-alive
863
+ Keep-Alive:
864
+ - timeout=10
865
+ X-Powered-By:
866
+ - PHP/5.3.15
867
+ Cache-Control:
868
+ - no-cache
869
+ Date:
870
+ - Wed, 05 Sep 2012 20:50:07 GMT
871
+ X-Debug-Token:
872
+ - 5047baff5a356
873
+ body:
874
+ encoding: US-ASCII
875
+ string: ! '{"site_id":52,"app_id":250,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
876
+ http_version:
877
+ recorded_at: Wed, 05 Sep 2012 20:50:07 GMT
878
+ - request:
879
+ method: post
880
+ uri: http://api.jirafe.dev/v1/applications/251/sites?token=790971bb598168dfa5f0da5194b4456e
881
+ body:
882
+ encoding: US-ASCII
883
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
884
+ headers: {}
885
+ response:
886
+ status:
887
+ code: 200
888
+ message: OK
889
+ headers:
890
+ Server:
891
+ - nginx/1.2.2
892
+ Content-Type:
893
+ - application/json
894
+ Transfer-Encoding:
895
+ - chunked
896
+ Connection:
897
+ - keep-alive
898
+ Keep-Alive:
899
+ - timeout=10
900
+ X-Powered-By:
901
+ - PHP/5.3.15
902
+ Cache-Control:
903
+ - no-cache
904
+ Date:
905
+ - Wed, 05 Sep 2012 20:51:04 GMT
906
+ X-Debug-Token:
907
+ - 5047bb38afe7b
908
+ body:
909
+ encoding: US-ASCII
910
+ string: ! '{"site_id":53,"app_id":251,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
911
+ http_version:
912
+ recorded_at: Wed, 05 Sep 2012 20:51:04 GMT
913
+ - request:
914
+ method: post
915
+ uri: http://api.jirafe.dev/v1/applications/252/sites?token=52a3eb135ecf50d3b866f938037b8e1d
916
+ body:
917
+ encoding: US-ASCII
918
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
919
+ headers: {}
920
+ response:
921
+ status:
922
+ code: 200
923
+ message: OK
924
+ headers:
925
+ Server:
926
+ - nginx/1.2.2
927
+ Content-Type:
928
+ - application/json
929
+ Transfer-Encoding:
930
+ - chunked
931
+ Connection:
932
+ - keep-alive
933
+ Keep-Alive:
934
+ - timeout=10
935
+ X-Powered-By:
936
+ - PHP/5.3.15
937
+ Cache-Control:
938
+ - no-cache
939
+ Date:
940
+ - Wed, 05 Sep 2012 20:57:38 GMT
941
+ X-Debug-Token:
942
+ - 5047bcc2e5b94
943
+ body:
944
+ encoding: US-ASCII
945
+ string: ! '{"site_id":54,"app_id":252,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
946
+ http_version:
947
+ recorded_at: Wed, 05 Sep 2012 20:57:38 GMT
948
+ - request:
949
+ method: post
950
+ uri: http://api.jirafe.dev/v1/applications/253/sites?token=83896de6b9a5753e7cdddd747346b1be
951
+ body:
952
+ encoding: US-ASCII
953
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
954
+ headers: {}
955
+ response:
956
+ status:
957
+ code: 200
958
+ message: OK
959
+ headers:
960
+ Server:
961
+ - nginx/1.2.2
962
+ Content-Type:
963
+ - application/json
964
+ Transfer-Encoding:
965
+ - chunked
966
+ Connection:
967
+ - keep-alive
968
+ Keep-Alive:
969
+ - timeout=10
970
+ X-Powered-By:
971
+ - PHP/5.3.15
972
+ Cache-Control:
973
+ - no-cache
974
+ Date:
975
+ - Wed, 05 Sep 2012 20:58:26 GMT
976
+ X-Debug-Token:
977
+ - 5047bcf21eb07
978
+ body:
979
+ encoding: US-ASCII
980
+ string: ! '{"site_id":55,"app_id":253,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
981
+ http_version:
982
+ recorded_at: Wed, 05 Sep 2012 20:58:26 GMT
983
+ - request:
984
+ method: post
985
+ uri: http://api.jirafe.dev/v1/applications/254/sites?token=7b83702a36d2b1fb17fb9a2c98e9d46e
986
+ body:
987
+ encoding: US-ASCII
988
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
989
+ headers: {}
990
+ response:
991
+ status:
992
+ code: 200
993
+ message: OK
994
+ headers:
995
+ Server:
996
+ - nginx/1.2.2
997
+ Content-Type:
998
+ - application/json
999
+ Transfer-Encoding:
1000
+ - chunked
1001
+ Connection:
1002
+ - keep-alive
1003
+ Keep-Alive:
1004
+ - timeout=10
1005
+ X-Powered-By:
1006
+ - PHP/5.3.15
1007
+ Cache-Control:
1008
+ - no-cache
1009
+ Date:
1010
+ - Wed, 05 Sep 2012 20:58:43 GMT
1011
+ X-Debug-Token:
1012
+ - 5047bd032de0a
1013
+ body:
1014
+ encoding: US-ASCII
1015
+ string: ! '{"site_id":56,"app_id":254,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1016
+ http_version:
1017
+ recorded_at: Wed, 05 Sep 2012 20:58:43 GMT
1018
+ - request:
1019
+ method: post
1020
+ uri: http://api.jirafe.dev/v1/applications/255/sites?token=5034dc15401ffb7e7c543a83fd2e9b71
1021
+ body:
1022
+ encoding: US-ASCII
1023
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1024
+ headers: {}
1025
+ response:
1026
+ status:
1027
+ code: 200
1028
+ message: OK
1029
+ headers:
1030
+ Server:
1031
+ - nginx/1.2.2
1032
+ Content-Type:
1033
+ - application/json
1034
+ Transfer-Encoding:
1035
+ - chunked
1036
+ Connection:
1037
+ - keep-alive
1038
+ Keep-Alive:
1039
+ - timeout=10
1040
+ X-Powered-By:
1041
+ - PHP/5.3.15
1042
+ Cache-Control:
1043
+ - no-cache
1044
+ Date:
1045
+ - Wed, 05 Sep 2012 20:59:05 GMT
1046
+ X-Debug-Token:
1047
+ - 5047bd1957dfc
1048
+ body:
1049
+ encoding: US-ASCII
1050
+ string: ! '{"site_id":57,"app_id":255,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1051
+ http_version:
1052
+ recorded_at: Wed, 05 Sep 2012 20:59:05 GMT
1053
+ - request:
1054
+ method: post
1055
+ uri: http://api.jirafe.dev/v1/applications/256/sites?token=892292a127b304e72b7d26ce1837445a
1056
+ body:
1057
+ encoding: US-ASCII
1058
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1059
+ headers: {}
1060
+ response:
1061
+ status:
1062
+ code: 200
1063
+ message: OK
1064
+ headers:
1065
+ Server:
1066
+ - nginx/1.2.2
1067
+ Content-Type:
1068
+ - application/json
1069
+ Transfer-Encoding:
1070
+ - chunked
1071
+ Connection:
1072
+ - keep-alive
1073
+ Keep-Alive:
1074
+ - timeout=10
1075
+ X-Powered-By:
1076
+ - PHP/5.3.15
1077
+ Cache-Control:
1078
+ - no-cache
1079
+ Date:
1080
+ - Wed, 05 Sep 2012 20:59:54 GMT
1081
+ X-Debug-Token:
1082
+ - 5047bd4ab1228
1083
+ body:
1084
+ encoding: US-ASCII
1085
+ string: ! '{"site_id":58,"app_id":256,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1086
+ http_version:
1087
+ recorded_at: Wed, 05 Sep 2012 20:59:54 GMT
1088
+ - request:
1089
+ method: post
1090
+ uri: http://api.jirafe.dev/v1/applications/257/sites?token=8510cd806b810f5d547107b551fbf125
1091
+ body:
1092
+ encoding: US-ASCII
1093
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1094
+ headers: {}
1095
+ response:
1096
+ status:
1097
+ code: 200
1098
+ message: OK
1099
+ headers:
1100
+ Server:
1101
+ - nginx/1.2.2
1102
+ Content-Type:
1103
+ - application/json
1104
+ Transfer-Encoding:
1105
+ - chunked
1106
+ Connection:
1107
+ - keep-alive
1108
+ Keep-Alive:
1109
+ - timeout=10
1110
+ X-Powered-By:
1111
+ - PHP/5.3.15
1112
+ Cache-Control:
1113
+ - no-cache
1114
+ Date:
1115
+ - Wed, 05 Sep 2012 21:00:18 GMT
1116
+ X-Debug-Token:
1117
+ - 5047bd62d1f3e
1118
+ body:
1119
+ encoding: US-ASCII
1120
+ string: ! '{"site_id":59,"app_id":257,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1121
+ http_version:
1122
+ recorded_at: Wed, 05 Sep 2012 21:00:18 GMT
1123
+ - request:
1124
+ method: post
1125
+ uri: http://api.jirafe.dev/v1/applications/258/sites?token=2bc56023de4a4b59fe4b63b48120199c
1126
+ body:
1127
+ encoding: US-ASCII
1128
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1129
+ headers: {}
1130
+ response:
1131
+ status:
1132
+ code: 200
1133
+ message: OK
1134
+ headers:
1135
+ Server:
1136
+ - nginx/1.2.2
1137
+ Content-Type:
1138
+ - application/json
1139
+ Transfer-Encoding:
1140
+ - chunked
1141
+ Connection:
1142
+ - keep-alive
1143
+ Keep-Alive:
1144
+ - timeout=10
1145
+ X-Powered-By:
1146
+ - PHP/5.3.15
1147
+ Cache-Control:
1148
+ - no-cache
1149
+ Date:
1150
+ - Wed, 05 Sep 2012 21:00:46 GMT
1151
+ X-Debug-Token:
1152
+ - 5047bd7e176a3
1153
+ body:
1154
+ encoding: US-ASCII
1155
+ string: ! '{"site_id":60,"app_id":258,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1156
+ http_version:
1157
+ recorded_at: Wed, 05 Sep 2012 21:00:46 GMT
1158
+ - request:
1159
+ method: post
1160
+ uri: http://api.jirafe.dev/v1/applications/259/sites?token=66bde145a53a42d7e4e2edee1bb82574
1161
+ body:
1162
+ encoding: US-ASCII
1163
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1164
+ headers: {}
1165
+ response:
1166
+ status:
1167
+ code: 200
1168
+ message: OK
1169
+ headers:
1170
+ Server:
1171
+ - nginx/1.2.2
1172
+ Content-Type:
1173
+ - application/json
1174
+ Transfer-Encoding:
1175
+ - chunked
1176
+ Connection:
1177
+ - keep-alive
1178
+ Keep-Alive:
1179
+ - timeout=10
1180
+ X-Powered-By:
1181
+ - PHP/5.3.15
1182
+ Cache-Control:
1183
+ - no-cache
1184
+ Date:
1185
+ - Wed, 05 Sep 2012 21:05:53 GMT
1186
+ X-Debug-Token:
1187
+ - 5047beb1d3cef
1188
+ body:
1189
+ encoding: US-ASCII
1190
+ string: ! '{"site_id":61,"app_id":259,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1191
+ http_version:
1192
+ recorded_at: Wed, 05 Sep 2012 21:05:53 GMT
1193
+ - request:
1194
+ method: post
1195
+ uri: http://api.jirafe.dev/v1/applications/260/sites?token=8e181e8f4d5c5355c47e7f0a8c7ea470
1196
+ body:
1197
+ encoding: US-ASCII
1198
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1199
+ headers: {}
1200
+ response:
1201
+ status:
1202
+ code: 200
1203
+ message: OK
1204
+ headers:
1205
+ Server:
1206
+ - nginx/1.2.2
1207
+ Content-Type:
1208
+ - application/json
1209
+ Transfer-Encoding:
1210
+ - chunked
1211
+ Connection:
1212
+ - keep-alive
1213
+ Keep-Alive:
1214
+ - timeout=10
1215
+ X-Powered-By:
1216
+ - PHP/5.3.15
1217
+ Cache-Control:
1218
+ - no-cache
1219
+ Date:
1220
+ - Wed, 05 Sep 2012 21:06:13 GMT
1221
+ X-Debug-Token:
1222
+ - 5047bec5546c0
1223
+ body:
1224
+ encoding: US-ASCII
1225
+ string: ! '{"site_id":62,"app_id":260,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1226
+ http_version:
1227
+ recorded_at: Wed, 05 Sep 2012 21:06:13 GMT
1228
+ - request:
1229
+ method: post
1230
+ uri: http://api.jirafe.dev/v1/applications/261/sites?token=ff7c2b4b5d3975fc6934a67a74f2508d
1231
+ body:
1232
+ encoding: US-ASCII
1233
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1234
+ headers: {}
1235
+ response:
1236
+ status:
1237
+ code: 200
1238
+ message: OK
1239
+ headers:
1240
+ Server:
1241
+ - nginx/1.2.2
1242
+ Content-Type:
1243
+ - application/json
1244
+ Transfer-Encoding:
1245
+ - chunked
1246
+ Connection:
1247
+ - keep-alive
1248
+ Keep-Alive:
1249
+ - timeout=10
1250
+ X-Powered-By:
1251
+ - PHP/5.3.15
1252
+ Cache-Control:
1253
+ - no-cache
1254
+ Date:
1255
+ - Wed, 05 Sep 2012 21:08:04 GMT
1256
+ X-Debug-Token:
1257
+ - 5047bf34655c2
1258
+ body:
1259
+ encoding: US-ASCII
1260
+ string: ! '{"site_id":63,"app_id":261,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1261
+ http_version:
1262
+ recorded_at: Wed, 05 Sep 2012 21:08:04 GMT
1263
+ - request:
1264
+ method: post
1265
+ uri: http://api.jirafe.dev/v1/applications/262/sites?token=9d9ffc4f262d1bd487b2224c45bbcb20
1266
+ body:
1267
+ encoding: US-ASCII
1268
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1269
+ headers: {}
1270
+ response:
1271
+ status:
1272
+ code: 200
1273
+ message: OK
1274
+ headers:
1275
+ Server:
1276
+ - nginx/1.2.2
1277
+ Content-Type:
1278
+ - application/json
1279
+ Transfer-Encoding:
1280
+ - chunked
1281
+ Connection:
1282
+ - keep-alive
1283
+ Keep-Alive:
1284
+ - timeout=10
1285
+ X-Powered-By:
1286
+ - PHP/5.3.15
1287
+ Cache-Control:
1288
+ - no-cache
1289
+ Date:
1290
+ - Wed, 05 Sep 2012 21:08:29 GMT
1291
+ X-Debug-Token:
1292
+ - 5047bf4d13a8b
1293
+ body:
1294
+ encoding: US-ASCII
1295
+ string: ! '{"site_id":64,"app_id":262,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1296
+ http_version:
1297
+ recorded_at: Wed, 05 Sep 2012 21:08:29 GMT
1298
+ - request:
1299
+ method: post
1300
+ uri: http://api.jirafe.dev/v1/applications/263/sites?token=7893000aab1ce7e11d51573fbf4b3c73
1301
+ body:
1302
+ encoding: US-ASCII
1303
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1304
+ headers: {}
1305
+ response:
1306
+ status:
1307
+ code: 200
1308
+ message: OK
1309
+ headers:
1310
+ Server:
1311
+ - nginx/1.2.2
1312
+ Content-Type:
1313
+ - application/json
1314
+ Transfer-Encoding:
1315
+ - chunked
1316
+ Connection:
1317
+ - keep-alive
1318
+ Keep-Alive:
1319
+ - timeout=10
1320
+ X-Powered-By:
1321
+ - PHP/5.3.15
1322
+ Cache-Control:
1323
+ - no-cache
1324
+ Date:
1325
+ - Wed, 05 Sep 2012 21:09:50 GMT
1326
+ X-Debug-Token:
1327
+ - 5047bf9ece827
1328
+ body:
1329
+ encoding: US-ASCII
1330
+ string: ! '{"site_id":65,"app_id":263,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1331
+ http_version:
1332
+ recorded_at: Wed, 05 Sep 2012 21:09:50 GMT
1333
+ - request:
1334
+ method: post
1335
+ uri: http://api.jirafe.dev/v1/applications/264/sites?token=353a7373278084077b01600bfdbcffed
1336
+ body:
1337
+ encoding: US-ASCII
1338
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1339
+ headers: {}
1340
+ response:
1341
+ status:
1342
+ code: 200
1343
+ message: OK
1344
+ headers:
1345
+ Server:
1346
+ - nginx/1.2.2
1347
+ Content-Type:
1348
+ - application/json
1349
+ Transfer-Encoding:
1350
+ - chunked
1351
+ Connection:
1352
+ - keep-alive
1353
+ Keep-Alive:
1354
+ - timeout=10
1355
+ X-Powered-By:
1356
+ - PHP/5.3.15
1357
+ Cache-Control:
1358
+ - no-cache
1359
+ Date:
1360
+ - Wed, 05 Sep 2012 21:10:47 GMT
1361
+ X-Debug-Token:
1362
+ - 5047bfd7cf062
1363
+ body:
1364
+ encoding: US-ASCII
1365
+ string: ! '{"site_id":66,"app_id":264,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1366
+ http_version:
1367
+ recorded_at: Wed, 05 Sep 2012 21:10:47 GMT
1368
+ - request:
1369
+ method: post
1370
+ uri: http://api.jirafe.dev/v1/applications?token=user_master_token
1371
+ body:
1372
+ encoding: US-ASCII
1373
+ string: name=test%20app%20cmb&url=
1374
+ headers: {}
1375
+ response:
1376
+ status:
1377
+ code: 200
1378
+ message: OK
1379
+ headers:
1380
+ Server:
1381
+ - nginx/1.2.2
1382
+ Content-Type:
1383
+ - application/json
1384
+ Transfer-Encoding:
1385
+ - chunked
1386
+ Connection:
1387
+ - keep-alive
1388
+ Keep-Alive:
1389
+ - timeout=10
1390
+ X-Powered-By:
1391
+ - PHP/5.3.15
1392
+ Cache-Control:
1393
+ - no-cache
1394
+ Date:
1395
+ - Wed, 05 Sep 2012 22:44:10 GMT
1396
+ X-Debug-Token:
1397
+ - 5047d5badbafa
1398
+ body:
1399
+ encoding: US-ASCII
1400
+ string: ! '{"app_id":"265","name":"test app cmb","token":"74bda1e0eee6f04743b5f3646a0ac9c5"}'
1401
+ http_version:
1402
+ recorded_at: Wed, 05 Sep 2012 22:44:10 GMT
1403
+ - request:
1404
+ method: post
1405
+ uri: http://api.jirafe.dev/v1/applications/265/sites?token=74bda1e0eee6f04743b5f3646a0ac9c5
1406
+ body:
1407
+ encoding: US-ASCII
1408
+ string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
1409
+ headers: {}
1410
+ response:
1411
+ status:
1412
+ code: 200
1413
+ message: OK
1414
+ headers:
1415
+ Server:
1416
+ - nginx/1.2.2
1417
+ Content-Type:
1418
+ - application/json
1419
+ Transfer-Encoding:
1420
+ - chunked
1421
+ Connection:
1422
+ - keep-alive
1423
+ Keep-Alive:
1424
+ - timeout=10
1425
+ X-Powered-By:
1426
+ - PHP/5.3.15
1427
+ Cache-Control:
1428
+ - no-cache
1429
+ Date:
1430
+ - Wed, 05 Sep 2012 22:44:10 GMT
1431
+ X-Debug-Token:
1432
+ - 5047d5baee8de
1433
+ body:
1434
+ encoding: US-ASCII
1435
+ string: ! '{"site_id":67,"app_id":265,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
1436
+ http_version:
1437
+ recorded_at: Wed, 05 Sep 2012 22:44:10 GMT
1438
+ - request:
1439
+ method: post
1440
+ uri: http://data.jirafe.dev/cmb
1441
+ body:
1442
+ encoding: US-ASCII
1443
+ string: siteId=67
1444
+ headers: {}
1445
+ response:
1446
+ status:
1447
+ code: 200
1448
+ message: OK
1449
+ headers:
1450
+ Server:
1451
+ - nginx/1.2.2
1452
+ Date:
1453
+ - Wed, 05 Sep 2012 22:44:11 GMT
1454
+ Content-Type:
1455
+ - text/html
1456
+ Transfer-Encoding:
1457
+ - chunked
1458
+ Connection:
1459
+ - keep-alive
1460
+ Keep-Alive:
1461
+ - timeout=10
1462
+ X-Powered-By:
1463
+ - PHP/5.3.15
1464
+ Cache-Control:
1465
+ - no-cache, must-revalidate
1466
+ Expires:
1467
+ - Sat, 26 Jul 1997 05:00:00 GMT
1468
+ body:
1469
+ encoding: US-ASCII
1470
+ string: ''
1471
+ http_version:
1472
+ recorded_at: Wed, 05 Sep 2012 22:44:11 GMT
1473
+ recorded_with: VCR 2.2.4