vzaar_api 2.0.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 (138) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.rspec +4 -0
  4. data/.tool-versions +1 -0
  5. data/.travis.yml +3 -0
  6. data/Changelog +50 -0
  7. data/Gemfile +3 -0
  8. data/Guardfile +25 -0
  9. data/README.md +55 -0
  10. data/Rakefile +26 -0
  11. data/examples/README.md +33 -0
  12. data/examples/api_envs.yml.example +31 -0
  13. data/examples/category/create_update_delete_spec.rb +100 -0
  14. data/examples/category/list_spec.rb +38 -0
  15. data/examples/category/list_subtree_spec.rb +40 -0
  16. data/examples/category/lookup_spec.rb +35 -0
  17. data/examples/encoding_preset/list_spec.rb +38 -0
  18. data/examples/encoding_preset/lookup_spec.rb +35 -0
  19. data/examples/ingest_recipe/create_update_delete_spec.rb +70 -0
  20. data/examples/ingest_recipe/list_spec.rb +38 -0
  21. data/examples/ingest_recipe/lookup_spec.rb +35 -0
  22. data/examples/playlist/create_update_delete_spec.rb +97 -0
  23. data/examples/playlist/list_spec.rb +37 -0
  24. data/examples/playlist/lookup_spec.rb +34 -0
  25. data/examples/rate_limit_spec.rb +18 -0
  26. data/examples/spec_helper.rb +17 -0
  27. data/examples/support/helpers.rb +16 -0
  28. data/examples/support/videos/medium.mp4 +0 -0
  29. data/examples/support/videos/small.mp4 +0 -0
  30. data/examples/video/create_update_delete_spec.rb +73 -0
  31. data/lib/vzaar_api/abstract.rb +9 -0
  32. data/lib/vzaar_api/category.rb +39 -0
  33. data/lib/vzaar_api/encoding_preset.rb +19 -0
  34. data/lib/vzaar_api/ingest_recipe.rb +35 -0
  35. data/lib/vzaar_api/legacy_rendition.rb +11 -0
  36. data/lib/vzaar_api/lib/active_object.rb +92 -0
  37. data/lib/vzaar_api/lib/api.rb +54 -0
  38. data/lib/vzaar_api/lib/api_response.rb +61 -0
  39. data/lib/vzaar_api/lib/has_attributes.rb +49 -0
  40. data/lib/vzaar_api/lib/has_collection_builder.rb +17 -0
  41. data/lib/vzaar_api/lib/has_resource_url.rb +24 -0
  42. data/lib/vzaar_api/lib/paged_resource.rb +80 -0
  43. data/lib/vzaar_api/lib/will_paginate.rb +22 -0
  44. data/lib/vzaar_api/link_upload.rb +14 -0
  45. data/lib/vzaar_api/playlist.rb +29 -0
  46. data/lib/vzaar_api/rendition.rb +16 -0
  47. data/lib/vzaar_api/signature/abstract.rb +40 -0
  48. data/lib/vzaar_api/signature/factory.rb +39 -0
  49. data/lib/vzaar_api/signature/multipart.rb +23 -0
  50. data/lib/vzaar_api/signature/single.rb +17 -0
  51. data/lib/vzaar_api/strategy/video/create.rb +46 -0
  52. data/lib/vzaar_api/upload/s3.rb +90 -0
  53. data/lib/vzaar_api/upload/virtual_file.rb +14 -0
  54. data/lib/vzaar_api/version.rb +4 -0
  55. data/lib/vzaar_api/video.rb +38 -0
  56. data/lib/vzaar_api.rb +60 -0
  57. data/spec/fixtures/vcr_cassettes/categories/each_item.yml +363 -0
  58. data/spec/fixtures/vcr_cassettes/categories/find.yml +61 -0
  59. data/spec/fixtures/vcr_cassettes/categories/find_404.yml +49 -0
  60. data/spec/fixtures/vcr_cassettes/categories/paginate_first.yml +61 -0
  61. data/spec/fixtures/vcr_cassettes/categories/paginate_last.yml +119 -0
  62. data/spec/fixtures/vcr_cassettes/categories/paginate_next.yml +120 -0
  63. data/spec/fixtures/vcr_cassettes/categories/paginate_previous.yml +120 -0
  64. data/spec/fixtures/vcr_cassettes/categories/subtree.yml +127 -0
  65. data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_first.yml +123 -0
  66. data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_last.yml +185 -0
  67. data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_next.yml +184 -0
  68. data/spec/fixtures/vcr_cassettes/categories/subtree_paginate_previous.yml +184 -0
  69. data/spec/fixtures/vcr_cassettes/encoding_presets/each_item.yml +299 -0
  70. data/spec/fixtures/vcr_cassettes/encoding_presets/find.yml +62 -0
  71. data/spec/fixtures/vcr_cassettes/encoding_presets/find_404.yml +51 -0
  72. data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_first.yml +62 -0
  73. data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_last.yml +121 -0
  74. data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_next.yml +121 -0
  75. data/spec/fixtures/vcr_cassettes/encoding_presets/paginate_previous.yml +121 -0
  76. data/spec/fixtures/vcr_cassettes/ingest_recipes/create_200.yml +63 -0
  77. data/spec/fixtures/vcr_cassettes/ingest_recipes/create_422.yml +52 -0
  78. data/spec/fixtures/vcr_cassettes/ingest_recipes/delete_204.yml +166 -0
  79. data/spec/fixtures/vcr_cassettes/ingest_recipes/delete_422.yml +112 -0
  80. data/spec/fixtures/vcr_cassettes/ingest_recipes/each_item.yml +182 -0
  81. data/spec/fixtures/vcr_cassettes/ingest_recipes/find.yml +62 -0
  82. data/spec/fixtures/vcr_cassettes/ingest_recipes/find_404.yml +51 -0
  83. data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_first.yml +62 -0
  84. data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_last.yml +122 -0
  85. data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_next.yml +121 -0
  86. data/spec/fixtures/vcr_cassettes/ingest_recipes/paginate_previous.yml +122 -0
  87. data/spec/fixtures/vcr_cassettes/ingest_recipes/update_200.yml +242 -0
  88. data/spec/fixtures/vcr_cassettes/ingest_recipes/update_422.yml +113 -0
  89. data/spec/fixtures/vcr_cassettes/playlists/each_item.yml +607 -0
  90. data/spec/fixtures/vcr_cassettes/playlists/find.yml +66 -0
  91. data/spec/fixtures/vcr_cassettes/playlists/find_404.yml +51 -0
  92. data/spec/fixtures/vcr_cassettes/playlists/paginate_first.yml +74 -0
  93. data/spec/fixtures/vcr_cassettes/playlists/paginate_last.yml +146 -0
  94. data/spec/fixtures/vcr_cassettes/playlists/paginate_next.yml +145 -0
  95. data/spec/fixtures/vcr_cassettes/playlists/paginate_previous.yml +145 -0
  96. data/spec/fixtures/vcr_cassettes/signature/multipart_201.yml +62 -0
  97. data/spec/fixtures/vcr_cassettes/signature/multipart_422.yml +52 -0
  98. data/spec/fixtures/vcr_cassettes/signature/single_201.yml +62 -0
  99. data/spec/fixtures/vcr_cassettes/signature/single_422.yml +51 -0
  100. data/spec/fixtures/vcr_cassettes/upload/multipart_201.yml +279868 -0
  101. data/spec/fixtures/vcr_cassettes/upload/multipart_403.yml +116578 -0
  102. data/spec/fixtures/vcr_cassettes/upload/single_201.yml +23388 -0
  103. data/spec/fixtures/vcr_cassettes/upload/single_403.yml +23374 -0
  104. data/spec/fixtures/vcr_cassettes/videos/create/error.yml +51 -0
  105. data/spec/fixtures/vcr_cassettes/videos/create/guid_201.yml +65 -0
  106. data/spec/fixtures/vcr_cassettes/videos/create/guid_error.yml +52 -0
  107. data/spec/fixtures/vcr_cassettes/videos/create/link_201.yml +65 -0
  108. data/spec/fixtures/vcr_cassettes/videos/create/link_error.yml +51 -0
  109. data/spec/fixtures/vcr_cassettes/videos/create/path_201.yml +23509 -0
  110. data/spec/fixtures/vcr_cassettes/videos/delete_204.yml +168 -0
  111. data/spec/fixtures/vcr_cassettes/videos/find.yml +66 -0
  112. data/spec/fixtures/vcr_cassettes/videos/find_404.yml +51 -0
  113. data/spec/fixtures/vcr_cassettes/videos/paginate_first.yml +71 -0
  114. data/spec/fixtures/vcr_cassettes/videos/paginate_last.yml +137 -0
  115. data/spec/fixtures/vcr_cassettes/videos/paginate_next.yml +139 -0
  116. data/spec/fixtures/vcr_cassettes/videos/paginate_previous.yml +139 -0
  117. data/spec/spec_helper.rb +103 -0
  118. data/spec/support/files/video-1.0MB.mp4 +0 -0
  119. data/spec/support/files/video-12.0MB.mp4 +0 -0
  120. data/spec/support/files/video-4.9MB.mp4 +0 -0
  121. data/spec/support/files/video-5.0MB.mp4 +0 -0
  122. data/spec/support/helpers.rb +16 -0
  123. data/spec/vzaar_api/category_spec.rb +141 -0
  124. data/spec/vzaar_api/encoding_preset_spec.rb +92 -0
  125. data/spec/vzaar_api/ingest_recipe_spec.rb +197 -0
  126. data/spec/vzaar_api/lib/api_spec.rb +28 -0
  127. data/spec/vzaar_api/playlist_spec.rb +97 -0
  128. data/spec/vzaar_api/rendition_spec.rb +55 -0
  129. data/spec/vzaar_api/signature/factory_spec.rb +68 -0
  130. data/spec/vzaar_api/signature/multipart_spec.rb +81 -0
  131. data/spec/vzaar_api/signature/single_spec.rb +72 -0
  132. data/spec/vzaar_api/upload/s3_spec.rb +112 -0
  133. data/spec/vzaar_api/video_spec.rb +248 -0
  134. data/spec/vzaar_api/vzaar_api_spec.rb +18 -0
  135. data/spec/vzaar_api_helper.rb +19 -0
  136. data/vzaar.png +0 -0
  137. data/vzaar_api.gemspec +35 -0
  138. metadata +413 -0
@@ -0,0 +1,607 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://app.vzaar.localhost/api/v2/feeds/playlists?per_page=2
6
+ body:
7
+ encoding: UTF-8
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
12
+ Accept:
13
+ - "*/*"
14
+ Date:
15
+ - Mon, 24 Apr 2017 13:30:58 GMT
16
+ X-Auth-Token:
17
+ - TUGXzNL17ypaougMYpR3
18
+ X-Client-Id:
19
+ - lair-tend72
20
+ Content-Type:
21
+ - application/json
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Server:
28
+ - nginx/1.8.0
29
+ Date:
30
+ - Mon, 24 Apr 2017 13:30:58 GMT
31
+ Content-Type:
32
+ - application/json
33
+ Content-Length:
34
+ - '1485'
35
+ Connection:
36
+ - keep-alive
37
+ X-Ratelimit-Limit:
38
+ - '200'
39
+ X-Ratelimit-Remaining:
40
+ - '72'
41
+ X-Ratelimit-Reset:
42
+ - '1493040718'
43
+ X-Ratelimit-Reset-In:
44
+ - 60 seconds
45
+ Cache-Control:
46
+ - no-store, must-revalidate, private, max-age=0
47
+ X-Request-Id:
48
+ - f8ae9bd7-8c3d-4bc4-978f-12f0e512e778
49
+ X-Runtime:
50
+ - '0.066392'
51
+ Set-Cookie:
52
+ - __profilin=p%3Dt; path=/
53
+ - __profilin=p%3Dt; path=/
54
+ - __profilin=p%3Dt; path=/
55
+ X-Miniprofiler-Ids:
56
+ - '["lwo7gldc8vpcknkit26h","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"data":[{"id":12,"category_id":2253,"title":"Dan","sort_by":"created_at","sort_order":"asc","max_vids":50,"position":"top","private":true,"dimensions":"448x336","autoplay":true,"continuous_play":true,"embed_code":"<iframe
60
+ id=\"vzpl-12\" name=\"vzpl-12\" title=\"vzaar video player\" class=\"vzaar
61
+ video player\" type=\"text/html\" width=\"448\" height=\"466\" frameborder=\"0\"
62
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
63
+ src=\"//view.vzaar.localhost/playlists/12\"></iframe>","created_at":"2012-04-04T17:16:56.000Z","updated_at":"2016-02-04T12:08:36.000Z"},{"id":12676,"category_id":2253,"title":"ok","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":true,"dimensions":"auto","autoplay":true,"continuous_play":true,"embed_code":"<iframe
64
+ id=\"vzpl-12676\" name=\"vzpl-12676\" title=\"vzaar video player\" class=\"vzaar
65
+ video player\" type=\"text/html\" width=\"927\" height=\"432\" frameborder=\"0\"
66
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
67
+ src=\"//view.vzaar.localhost/playlists/12676\"></iframe>","created_at":"2017-03-20T10:05:10.000Z","updated_at":"2017-04-21T10:06:06.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=2&per_page=2","previous":null,"last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
68
+ http_version:
69
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
70
+ - request:
71
+ method: get
72
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
73
+ body:
74
+ encoding: UTF-8
75
+ string: ''
76
+ headers:
77
+ User-Agent:
78
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
79
+ Accept:
80
+ - "*/*"
81
+ Date:
82
+ - Mon, 24 Apr 2017 13:30:58 GMT
83
+ X-Auth-Token:
84
+ - TUGXzNL17ypaougMYpR3
85
+ X-Client-Id:
86
+ - lair-tend72
87
+ Content-Type:
88
+ - application/json
89
+ response:
90
+ status:
91
+ code: 200
92
+ message: OK
93
+ headers:
94
+ Server:
95
+ - nginx/1.8.0
96
+ Date:
97
+ - Mon, 24 Apr 2017 13:30:58 GMT
98
+ Content-Type:
99
+ - application/json
100
+ Content-Length:
101
+ - '1567'
102
+ Connection:
103
+ - keep-alive
104
+ X-Ratelimit-Limit:
105
+ - '200'
106
+ X-Ratelimit-Remaining:
107
+ - '71'
108
+ X-Ratelimit-Reset:
109
+ - '1493040718'
110
+ X-Ratelimit-Reset-In:
111
+ - 60 seconds
112
+ Cache-Control:
113
+ - no-store, must-revalidate, private, max-age=0
114
+ X-Request-Id:
115
+ - 82e3d720-2666-4612-b124-61517470c1b6
116
+ X-Runtime:
117
+ - '0.086142'
118
+ Set-Cookie:
119
+ - __profilin=p%3Dt; path=/
120
+ - __profilin=p%3Dt; path=/
121
+ - __profilin=p%3Dt; path=/
122
+ X-Miniprofiler-Ids:
123
+ - '["xmkhb5qexr29b6niyep0","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
124
+ body:
125
+ encoding: UTF-8
126
+ string: '{"data":[{"id":12677,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":10,"position":"left","private":true,"dimensions":"auto","autoplay":false,"continuous_play":false,"embed_code":"<iframe
127
+ id=\"vzpl-12677\" name=\"vzpl-12677\" title=\"vzaar video player\" class=\"vzaar
128
+ video player\" type=\"text/html\" width=\"927\" height=\"432\" frameborder=\"0\"
129
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
130
+ src=\"//view.vzaar.localhost/playlists/12677\"></iframe>","created_at":"2017-03-20T10:06:23.000Z","updated_at":"2017-03-20T10:06:23.000Z"},{"id":12678,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":10,"position":"left","private":true,"dimensions":"auto","autoplay":false,"continuous_play":false,"embed_code":"<iframe
131
+ id=\"vzpl-12678\" name=\"vzpl-12678\" title=\"vzaar video player\" class=\"vzaar
132
+ video player\" type=\"text/html\" width=\"927\" height=\"432\" frameborder=\"0\"
133
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
134
+ src=\"//view.vzaar.localhost/playlists/12678\"></iframe>","created_at":"2017-03-20T10:08:36.000Z","updated_at":"2017-03-20T10:08:36.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=3&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
135
+ http_version:
136
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
137
+ - request:
138
+ method: get
139
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
140
+ body:
141
+ encoding: UTF-8
142
+ string: ''
143
+ headers:
144
+ User-Agent:
145
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
146
+ Accept:
147
+ - "*/*"
148
+ Date:
149
+ - Mon, 24 Apr 2017 13:30:58 GMT
150
+ X-Auth-Token:
151
+ - TUGXzNL17ypaougMYpR3
152
+ X-Client-Id:
153
+ - lair-tend72
154
+ Content-Type:
155
+ - application/json
156
+ response:
157
+ status:
158
+ code: 200
159
+ message: OK
160
+ headers:
161
+ Server:
162
+ - nginx/1.8.0
163
+ Date:
164
+ - Mon, 24 Apr 2017 13:30:58 GMT
165
+ Content-Type:
166
+ - application/json
167
+ Content-Length:
168
+ - '1570'
169
+ Connection:
170
+ - keep-alive
171
+ X-Ratelimit-Limit:
172
+ - '200'
173
+ X-Ratelimit-Remaining:
174
+ - '70'
175
+ X-Ratelimit-Reset:
176
+ - '1493040718'
177
+ X-Ratelimit-Reset-In:
178
+ - 60 seconds
179
+ Cache-Control:
180
+ - no-store, must-revalidate, private, max-age=0
181
+ X-Request-Id:
182
+ - 64391749-f30e-42a3-94aa-0c56c21afafd
183
+ X-Runtime:
184
+ - '0.062551'
185
+ Set-Cookie:
186
+ - __profilin=p%3Dt; path=/
187
+ - __profilin=p%3Dt; path=/
188
+ - __profilin=p%3Dt; path=/
189
+ X-Miniprofiler-Ids:
190
+ - '["9vswbokuloq7gffexugz","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
191
+ body:
192
+ encoding: UTF-8
193
+ string: '{"data":[{"id":12679,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":10,"position":"left","private":true,"dimensions":"auto","autoplay":false,"continuous_play":false,"embed_code":"<iframe
194
+ id=\"vzpl-12679\" name=\"vzpl-12679\" title=\"vzaar video player\" class=\"vzaar
195
+ video player\" type=\"text/html\" width=\"927\" height=\"432\" frameborder=\"0\"
196
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
197
+ src=\"//view.vzaar.localhost/playlists/12679\"></iframe>","created_at":"2017-03-20T10:11:10.000Z","updated_at":"2017-03-20T10:11:10.000Z"},{"id":12680,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":10,"position":"left","private":true,"dimensions":"768x340","autoplay":false,"continuous_play":false,"embed_code":"<iframe
198
+ id=\"vzpl-12680\" name=\"vzpl-12680\" title=\"vzaar video player\" class=\"vzaar
199
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
200
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
201
+ src=\"//view.vzaar.localhost/playlists/12680\"></iframe>","created_at":"2017-03-20T10:14:49.000Z","updated_at":"2017-03-20T10:14:49.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=4&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=2&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
202
+ http_version:
203
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
204
+ - request:
205
+ method: get
206
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
207
+ body:
208
+ encoding: UTF-8
209
+ string: ''
210
+ headers:
211
+ User-Agent:
212
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
213
+ Accept:
214
+ - "*/*"
215
+ Date:
216
+ - Mon, 24 Apr 2017 13:30:58 GMT
217
+ X-Auth-Token:
218
+ - TUGXzNL17ypaougMYpR3
219
+ X-Client-Id:
220
+ - lair-tend72
221
+ Content-Type:
222
+ - application/json
223
+ response:
224
+ status:
225
+ code: 200
226
+ message: OK
227
+ headers:
228
+ Server:
229
+ - nginx/1.8.0
230
+ Date:
231
+ - Mon, 24 Apr 2017 13:30:58 GMT
232
+ Content-Type:
233
+ - application/json
234
+ Content-Length:
235
+ - '1573'
236
+ Connection:
237
+ - keep-alive
238
+ X-Ratelimit-Limit:
239
+ - '200'
240
+ X-Ratelimit-Remaining:
241
+ - '69'
242
+ X-Ratelimit-Reset:
243
+ - '1493040718'
244
+ X-Ratelimit-Reset-In:
245
+ - 60 seconds
246
+ Cache-Control:
247
+ - no-store, must-revalidate, private, max-age=0
248
+ X-Request-Id:
249
+ - 02b28b09-8c9c-4dc8-8556-f9b9e939ffa8
250
+ X-Runtime:
251
+ - '0.064785'
252
+ Set-Cookie:
253
+ - __profilin=p%3Dt; path=/
254
+ - __profilin=p%3Dt; path=/
255
+ - __profilin=p%3Dt; path=/
256
+ X-Miniprofiler-Ids:
257
+ - '["lyo7gr3prm3wwp3axj56","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
258
+ body:
259
+ encoding: UTF-8
260
+ string: '{"data":[{"id":12681,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":47,"position":"left","private":true,"dimensions":"768x340","autoplay":false,"continuous_play":false,"embed_code":"<iframe
261
+ id=\"vzpl-12681\" name=\"vzpl-12681\" title=\"vzaar video player\" class=\"vzaar
262
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
263
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
264
+ src=\"//view.vzaar.localhost/playlists/12681\"></iframe>","created_at":"2017-03-20T11:06:53.000Z","updated_at":"2017-03-20T11:06:53.000Z"},{"id":12682,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"left","private":true,"dimensions":"768x340","autoplay":false,"continuous_play":false,"embed_code":"<iframe
265
+ id=\"vzpl-12682\" name=\"vzpl-12682\" title=\"vzaar video player\" class=\"vzaar
266
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
267
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
268
+ src=\"//view.vzaar.localhost/playlists/12682\"></iframe>","created_at":"2017-03-20T11:16:09.000Z","updated_at":"2017-03-20T11:16:09.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=5&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=3&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
269
+ http_version:
270
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
271
+ - request:
272
+ method: get
273
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
274
+ body:
275
+ encoding: UTF-8
276
+ string: ''
277
+ headers:
278
+ User-Agent:
279
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
280
+ Accept:
281
+ - "*/*"
282
+ Date:
283
+ - Mon, 24 Apr 2017 13:30:58 GMT
284
+ X-Auth-Token:
285
+ - TUGXzNL17ypaougMYpR3
286
+ X-Client-Id:
287
+ - lair-tend72
288
+ Content-Type:
289
+ - application/json
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ Server:
296
+ - nginx/1.8.0
297
+ Date:
298
+ - Mon, 24 Apr 2017 13:30:58 GMT
299
+ Content-Type:
300
+ - application/json
301
+ Content-Length:
302
+ - '1574'
303
+ Connection:
304
+ - keep-alive
305
+ X-Ratelimit-Limit:
306
+ - '200'
307
+ X-Ratelimit-Remaining:
308
+ - '68'
309
+ X-Ratelimit-Reset:
310
+ - '1493040718'
311
+ X-Ratelimit-Reset-In:
312
+ - 60 seconds
313
+ Cache-Control:
314
+ - no-store, must-revalidate, private, max-age=0
315
+ X-Request-Id:
316
+ - 12bc40bf-a3ff-47da-8846-76e6715938b4
317
+ X-Runtime:
318
+ - '0.072187'
319
+ Set-Cookie:
320
+ - __profilin=p%3Dt; path=/
321
+ - __profilin=p%3Dt; path=/
322
+ - __profilin=p%3Dt; path=/
323
+ X-Miniprofiler-Ids:
324
+ - '["u7k6zil7z3jms280dsr5","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
325
+ body:
326
+ encoding: UTF-8
327
+ string: '{"data":[{"id":12683,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"left","private":false,"dimensions":"768x340","autoplay":false,"continuous_play":false,"embed_code":"<iframe
328
+ id=\"vzpl-12683\" name=\"vzpl-12683\" title=\"vzaar video player\" class=\"vzaar
329
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
330
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
331
+ src=\"//view.vzaar.localhost/playlists/12683\"></iframe>","created_at":"2017-03-20T11:27:05.000Z","updated_at":"2017-03-20T11:27:05.000Z"},{"id":12684,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
332
+ id=\"vzpl-12684\" name=\"vzpl-12684\" title=\"vzaar video player\" class=\"vzaar
333
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
334
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
335
+ src=\"//view.vzaar.localhost/playlists/12684\"></iframe>","created_at":"2017-03-20T11:28:41.000Z","updated_at":"2017-03-20T11:28:41.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=6&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=4&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
336
+ http_version:
337
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
338
+ - request:
339
+ method: get
340
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
341
+ body:
342
+ encoding: UTF-8
343
+ string: ''
344
+ headers:
345
+ User-Agent:
346
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
347
+ Accept:
348
+ - "*/*"
349
+ Date:
350
+ - Mon, 24 Apr 2017 13:30:58 GMT
351
+ X-Auth-Token:
352
+ - TUGXzNL17ypaougMYpR3
353
+ X-Client-Id:
354
+ - lair-tend72
355
+ Content-Type:
356
+ - application/json
357
+ response:
358
+ status:
359
+ code: 200
360
+ message: OK
361
+ headers:
362
+ Server:
363
+ - nginx/1.8.0
364
+ Date:
365
+ - Mon, 24 Apr 2017 13:30:58 GMT
366
+ Content-Type:
367
+ - application/json
368
+ Content-Length:
369
+ - '1573'
370
+ Connection:
371
+ - keep-alive
372
+ X-Ratelimit-Limit:
373
+ - '200'
374
+ X-Ratelimit-Remaining:
375
+ - '67'
376
+ X-Ratelimit-Reset:
377
+ - '1493040718'
378
+ X-Ratelimit-Reset-In:
379
+ - 60 seconds
380
+ Cache-Control:
381
+ - no-store, must-revalidate, private, max-age=0
382
+ X-Request-Id:
383
+ - 08873fd7-d1e3-4f00-93f4-efc56f7c631a
384
+ X-Runtime:
385
+ - '0.060628'
386
+ Set-Cookie:
387
+ - __profilin=p%3Dt; path=/
388
+ - __profilin=p%3Dt; path=/
389
+ - __profilin=p%3Dt; path=/
390
+ X-Miniprofiler-Ids:
391
+ - '["e2eu8seg198f3jvn9vs9","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
392
+ body:
393
+ encoding: UTF-8
394
+ string: '{"data":[{"id":12685,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
395
+ id=\"vzpl-12685\" name=\"vzpl-12685\" title=\"vzaar video player\" class=\"vzaar
396
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
397
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
398
+ src=\"//view.vzaar.localhost/playlists/12685\"></iframe>","created_at":"2017-03-20T11:29:50.000Z","updated_at":"2017-03-20T11:29:50.000Z"},{"id":12686,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
399
+ id=\"vzpl-12686\" name=\"vzpl-12686\" title=\"vzaar video player\" class=\"vzaar
400
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
401
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
402
+ src=\"//view.vzaar.localhost/playlists/12686\"></iframe>","created_at":"2017-03-20T11:30:36.000Z","updated_at":"2017-03-20T11:30:36.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=7&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=5&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
403
+ http_version:
404
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
405
+ - request:
406
+ method: get
407
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
408
+ body:
409
+ encoding: UTF-8
410
+ string: ''
411
+ headers:
412
+ User-Agent:
413
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
414
+ Accept:
415
+ - "*/*"
416
+ Date:
417
+ - Mon, 24 Apr 2017 13:30:58 GMT
418
+ X-Auth-Token:
419
+ - TUGXzNL17ypaougMYpR3
420
+ X-Client-Id:
421
+ - lair-tend72
422
+ Content-Type:
423
+ - application/json
424
+ response:
425
+ status:
426
+ code: 200
427
+ message: OK
428
+ headers:
429
+ Server:
430
+ - nginx/1.8.0
431
+ Date:
432
+ - Mon, 24 Apr 2017 13:30:58 GMT
433
+ Content-Type:
434
+ - application/json
435
+ Content-Length:
436
+ - '1573'
437
+ Connection:
438
+ - keep-alive
439
+ X-Ratelimit-Limit:
440
+ - '200'
441
+ X-Ratelimit-Remaining:
442
+ - '66'
443
+ X-Ratelimit-Reset:
444
+ - '1493040718'
445
+ X-Ratelimit-Reset-In:
446
+ - 60 seconds
447
+ Cache-Control:
448
+ - no-store, must-revalidate, private, max-age=0
449
+ X-Request-Id:
450
+ - 43b5251b-15cf-46f0-b24b-bedcb619e645
451
+ X-Runtime:
452
+ - '0.059840'
453
+ Set-Cookie:
454
+ - __profilin=p%3Dt; path=/
455
+ - __profilin=p%3Dt; path=/
456
+ - __profilin=p%3Dt; path=/
457
+ X-Miniprofiler-Ids:
458
+ - '["wi127rnaouaal7rrqzzy","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
459
+ body:
460
+ encoding: UTF-8
461
+ string: '{"data":[{"id":12687,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
462
+ id=\"vzpl-12687\" name=\"vzpl-12687\" title=\"vzaar video player\" class=\"vzaar
463
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
464
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
465
+ src=\"//view.vzaar.localhost/playlists/12687\"></iframe>","created_at":"2017-03-20T11:54:19.000Z","updated_at":"2017-03-20T11:54:19.000Z"},{"id":12688,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
466
+ id=\"vzpl-12688\" name=\"vzpl-12688\" title=\"vzaar video player\" class=\"vzaar
467
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
468
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
469
+ src=\"//view.vzaar.localhost/playlists/12688\"></iframe>","created_at":"2017-04-10T14:51:50.000Z","updated_at":"2017-04-10T14:51:50.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=8&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=6&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
470
+ http_version:
471
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
472
+ - request:
473
+ method: get
474
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
475
+ body:
476
+ encoding: UTF-8
477
+ string: ''
478
+ headers:
479
+ User-Agent:
480
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
481
+ Accept:
482
+ - "*/*"
483
+ Date:
484
+ - Mon, 24 Apr 2017 13:30:58 GMT
485
+ X-Auth-Token:
486
+ - TUGXzNL17ypaougMYpR3
487
+ X-Client-Id:
488
+ - lair-tend72
489
+ Content-Type:
490
+ - application/json
491
+ response:
492
+ status:
493
+ code: 200
494
+ message: OK
495
+ headers:
496
+ Server:
497
+ - nginx/1.8.0
498
+ Date:
499
+ - Mon, 24 Apr 2017 13:30:58 GMT
500
+ Content-Type:
501
+ - application/json
502
+ Content-Length:
503
+ - '1573'
504
+ Connection:
505
+ - keep-alive
506
+ X-Ratelimit-Limit:
507
+ - '200'
508
+ X-Ratelimit-Remaining:
509
+ - '65'
510
+ X-Ratelimit-Reset:
511
+ - '1493040718'
512
+ X-Ratelimit-Reset-In:
513
+ - 60 seconds
514
+ Cache-Control:
515
+ - no-store, must-revalidate, private, max-age=0
516
+ X-Request-Id:
517
+ - cee114e4-0828-4151-a3d2-5b4a5dd35a5b
518
+ X-Runtime:
519
+ - '0.053393'
520
+ Set-Cookie:
521
+ - __profilin=p%3Dt; path=/
522
+ - __profilin=p%3Dt; path=/
523
+ - __profilin=p%3Dt; path=/
524
+ X-Miniprofiler-Ids:
525
+ - '["hfswsl0em0fpa3vqdf8n","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
526
+ body:
527
+ encoding: UTF-8
528
+ string: '{"data":[{"id":12689,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
529
+ id=\"vzpl-12689\" name=\"vzpl-12689\" title=\"vzaar video player\" class=\"vzaar
530
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
531
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
532
+ src=\"//view.vzaar.localhost/playlists/12689\"></iframe>","created_at":"2017-04-21T10:05:17.000Z","updated_at":"2017-04-21T10:05:17.000Z"},{"id":12691,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
533
+ id=\"vzpl-12691\" name=\"vzpl-12691\" title=\"vzaar video player\" class=\"vzaar
534
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
535
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
536
+ src=\"//view.vzaar.localhost/playlists/12691\"></iframe>","created_at":"2017-04-21T13:55:30.000Z","updated_at":"2017-04-21T13:55:30.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2","previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=7&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
537
+ http_version:
538
+ recorded_at: Mon, 24 Apr 2017 13:30:58 GMT
539
+ - request:
540
+ method: get
541
+ uri: http://app.vzaar.localhost/api/v2/feeds/playlists
542
+ body:
543
+ encoding: UTF-8
544
+ string: ''
545
+ headers:
546
+ User-Agent:
547
+ - HTTPClient/1.0 (2.8.3, ruby 2.3.0 (2015-12-25))
548
+ Accept:
549
+ - "*/*"
550
+ Date:
551
+ - Mon, 24 Apr 2017 13:30:58 GMT
552
+ X-Auth-Token:
553
+ - TUGXzNL17ypaougMYpR3
554
+ X-Client-Id:
555
+ - lair-tend72
556
+ Content-Type:
557
+ - application/json
558
+ response:
559
+ status:
560
+ code: 200
561
+ message: OK
562
+ headers:
563
+ Server:
564
+ - nginx/1.8.0
565
+ Date:
566
+ - Mon, 24 Apr 2017 13:30:59 GMT
567
+ Content-Type:
568
+ - application/json
569
+ Content-Length:
570
+ - '1519'
571
+ Connection:
572
+ - keep-alive
573
+ X-Ratelimit-Limit:
574
+ - '200'
575
+ X-Ratelimit-Remaining:
576
+ - '64'
577
+ X-Ratelimit-Reset:
578
+ - '1493040718'
579
+ X-Ratelimit-Reset-In:
580
+ - 60 seconds
581
+ Cache-Control:
582
+ - no-store, must-revalidate, private, max-age=0
583
+ X-Request-Id:
584
+ - a7194410-87c6-48f2-bff4-6f59e26ab980
585
+ X-Runtime:
586
+ - '0.056651'
587
+ Set-Cookie:
588
+ - __profilin=p%3Dt; path=/
589
+ - __profilin=p%3Dt; path=/
590
+ - __profilin=p%3Dt; path=/
591
+ X-Miniprofiler-Ids:
592
+ - '["emm7uxw45x7xlc946yew","wzl1b1fwdjqhlnjm4ga","d5dabvoqee6xo1mn67f8","svgz63xoi04rxvfm1id0","3c28kcn8sfjs7qofyekl","vfe6xfara8cd9wulooqd","lk1eagtyt91mfdzagqc9","y1k3mdngfvkqnp0veqie","3hpfa686jddv0e7nv4no","k7xdv6aho24n1km8wyzf"]'
593
+ body:
594
+ encoding: UTF-8
595
+ string: '{"data":[{"id":12692,"category_id":2253,"title":"test","sort_by":"created_at","sort_order":"desc","max_vids":43,"position":"right","private":false,"dimensions":"768x340","autoplay":true,"continuous_play":true,"embed_code":"<iframe
596
+ id=\"vzpl-12692\" name=\"vzpl-12692\" title=\"vzaar video player\" class=\"vzaar
597
+ video player\" type=\"text/html\" width=\"927\" height=\"340\" frameborder=\"0\"
598
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
599
+ src=\"//view.vzaar.localhost/playlists/12692\"></iframe>","created_at":"2017-04-21T14:16:50.000Z","updated_at":"2017-04-21T14:16:50.000Z"},{"id":1065,"category_id":2254,"title":"200
600
+ video limit","sort_by":"created_at","sort_order":"desc","max_vids":138,"position":"bottom","private":false,"dimensions":"320x240","autoplay":false,"continuous_play":false,"embed_code":"<iframe
601
+ id=\"vzpl-1065\" name=\"vzpl-1065\" title=\"vzaar video player\" class=\"vzaar
602
+ video player\" type=\"text/html\" width=\"320\" height=\"370\" frameborder=\"0\"
603
+ allowFullScreen allowTransparency=\"true\" mozallowfullscreen webkitAllowFullScreen
604
+ src=\"//view.vzaar.localhost/playlists/1065\"></iframe>","created_at":"2012-08-28T10:04:53.000Z","updated_at":"2014-04-16T09:11:34.000Z"}],"meta":{"total_count":18,"links":{"first":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=1&per_page=2","next":null,"previous":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=8&per_page=2","last":"http://app.vzaar.localhost/api/v2/feeds/playlists?page=9&per_page=2"}}}'
605
+ http_version:
606
+ recorded_at: Mon, 24 Apr 2017 13:30:59 GMT
607
+ recorded_with: VCR 3.0.3