vimeo 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. data/.gitignore +3 -0
  2. data/CHANGELOG.rdoc +24 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +322 -0
  5. data/Rakefile +68 -0
  6. data/VERSION.yml +4 -0
  7. data/lib/vimeo/advanced/album.rb +57 -0
  8. data/lib/vimeo/advanced/auth.rb +22 -0
  9. data/lib/vimeo/advanced/base.rb +105 -0
  10. data/lib/vimeo/advanced/channel.rb +58 -0
  11. data/lib/vimeo/advanced/contact.rb +31 -0
  12. data/lib/vimeo/advanced/group.rb +68 -0
  13. data/lib/vimeo/advanced/group_events.rb +25 -0
  14. data/lib/vimeo/advanced/group_forums.rb +19 -0
  15. data/lib/vimeo/advanced/person.rb +48 -0
  16. data/lib/vimeo/advanced/test.rb +36 -0
  17. data/lib/vimeo/advanced/upload.rb +62 -0
  18. data/lib/vimeo/advanced/video.rb +131 -0
  19. data/lib/vimeo/advanced/video_embed.rb +19 -0
  20. data/lib/vimeo/advanced.rb +20 -0
  21. data/lib/vimeo/simple/activity.rb +42 -0
  22. data/lib/vimeo/simple/album.rb +21 -0
  23. data/lib/vimeo/simple/base.rb +10 -0
  24. data/lib/vimeo/simple/channel.rb +21 -0
  25. data/lib/vimeo/simple/group.rb +28 -0
  26. data/lib/vimeo/simple/user.rb +84 -0
  27. data/lib/vimeo/simple/video.rb +14 -0
  28. data/lib/vimeo/simple.rb +14 -0
  29. data/lib/vimeo.rb +10 -0
  30. data/test/fixtures/advanced/album/add_video.json +4 -0
  31. data/test/fixtures/advanced/album/create.json +7 -0
  32. data/test/fixtures/advanced/album/delete.json +4 -0
  33. data/test/fixtures/advanced/album/get_all.json +111 -0
  34. data/test/fixtures/advanced/album/get_videos.json +30 -0
  35. data/test/fixtures/advanced/album/remove_video.json +4 -0
  36. data/test/fixtures/advanced/album/set_description.json +4 -0
  37. data/test/fixtures/advanced/album/set_password.json +4 -0
  38. data/test/fixtures/advanced/album/set_title.json +4 -0
  39. data/test/fixtures/advanced/auth/check_token.json +13 -0
  40. data/test/fixtures/advanced/auth/get_frob.json +5 -0
  41. data/test/fixtures/advanced/auth/get_token.json +13 -0
  42. data/test/fixtures/advanced/channel/add_video.json +4 -0
  43. data/test/fixtures/advanced/channel/get_all.json +1395 -0
  44. data/test/fixtures/advanced/channel/get_info.json +55 -0
  45. data/test/fixtures/advanced/channel/get_moderators.json +45 -0
  46. data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
  47. data/test/fixtures/advanced/channel/get_videos.json +19 -0
  48. data/test/fixtures/advanced/channel/remove_video.json +4 -0
  49. data/test/fixtures/advanced/channel/subscribe.json +4 -0
  50. data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
  51. data/test/fixtures/advanced/contact/get_all.json +117 -0
  52. data/test/fixtures/advanced/contact/get_mutual.json +80 -0
  53. data/test/fixtures/advanced/contact/get_online.json +47 -0
  54. data/test/fixtures/advanced/contact/get_who_added.json +117 -0
  55. data/test/fixtures/advanced/group/add_video.json +4 -0
  56. data/test/fixtures/advanced/group/get_all.json +1556 -0
  57. data/test/fixtures/advanced/group/get_files.json +255 -0
  58. data/test/fixtures/advanced/group/get_info.json +73 -0
  59. data/test/fixtures/advanced/group/get_members.json +862 -0
  60. data/test/fixtures/advanced/group/get_moderators.json +44 -0
  61. data/test/fixtures/advanced/group/get_video_comments.json +96 -0
  62. data/test/fixtures/advanced/group/get_videos.json +102 -0
  63. data/test/fixtures/advanced/group/join.json +4 -0
  64. data/test/fixtures/advanced/group/leave.json +4 -0
  65. data/test/fixtures/advanced/group_events/get_month.json +146 -0
  66. data/test/fixtures/advanced/group_events/get_past.json +146 -0
  67. data/test/fixtures/advanced/group_events/get_upcoming.json +146 -0
  68. data/test/fixtures/advanced/group_forums/get_topic_comments.json +224 -0
  69. data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
  70. data/test/fixtures/advanced/person/add_contact.json +4 -0
  71. data/test/fixtures/advanced/person/add_subscription.json +4 -0
  72. data/test/fixtures/advanced/person/find_by_email.json +9 -0
  73. data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
  74. data/test/fixtures/advanced/person/get_info.json +21 -0
  75. data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
  76. data/test/fixtures/advanced/person/remove_contact.json +4 -0
  77. data/test/fixtures/advanced/person/remove_subscription.json +4 -0
  78. data/test/fixtures/advanced/test/echo.json +8 -0
  79. data/test/fixtures/advanced/test/login.json +8 -0
  80. data/test/fixtures/advanced/test/null.json +4 -0
  81. data/test/fixtures/advanced/upload/confirm.json +9 -0
  82. data/test/fixtures/advanced/upload/get_quota.json +16 -0
  83. data/test/fixtures/advanced/upload/get_ticket.json +8 -0
  84. data/test/fixtures/advanced/upload/manifest_to_upload.json +6 -0
  85. data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
  86. data/test/fixtures/advanced/upload/verify_manifest.json +11 -0
  87. data/test/fixtures/advanced/video/add_cast.json +4 -0
  88. data/test/fixtures/advanced/video/add_comment.json +7 -0
  89. data/test/fixtures/advanced/video/add_photos.json +4 -0
  90. data/test/fixtures/advanced/video/add_tags.json +4 -0
  91. data/test/fixtures/advanced/video/clear_tags.json +4 -0
  92. data/test/fixtures/advanced/video/delete.json +4 -0
  93. data/test/fixtures/advanced/video/delete_comment.json +4 -0
  94. data/test/fixtures/advanced/video/edit_comment.json +4 -0
  95. data/test/fixtures/advanced/video/get_all.json +30 -0
  96. data/test/fixtures/advanced/video/get_appears_in.json +10 -0
  97. data/test/fixtures/advanced/video/get_by_tag.json +239 -0
  98. data/test/fixtures/advanced/video/get_cast.json +42 -0
  99. data/test/fixtures/advanced/video/get_comments_list.json +52 -0
  100. data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
  101. data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
  102. data/test/fixtures/advanced/video/get_info.json +246 -0
  103. data/test/fixtures/advanced/video/get_likes.json +32 -0
  104. data/test/fixtures/advanced/video/get_subscriptions.json +241 -0
  105. data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
  106. data/test/fixtures/advanced/video/get_uploaded.json +30 -0
  107. data/test/fixtures/advanced/video/remove_cast.json +4 -0
  108. data/test/fixtures/advanced/video/remove_tag.json +4 -0
  109. data/test/fixtures/advanced/video/search.json +238 -0
  110. data/test/fixtures/advanced/video/set_description.json +4 -0
  111. data/test/fixtures/advanced/video/set_like.json +4 -0
  112. data/test/fixtures/advanced/video/set_privacy.json +4 -0
  113. data/test/fixtures/advanced/video/set_title.json +4 -0
  114. data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
  115. data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
  116. data/test/fixtures/simple/activity/contacts_did.json +1 -0
  117. data/test/fixtures/simple/activity/everyone_did.json +1 -0
  118. data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
  119. data/test/fixtures/simple/activity/happened_to_user.json +1 -0
  120. data/test/fixtures/simple/activity/user_did.json +1 -0
  121. data/test/fixtures/simple/album/info.json +1 -0
  122. data/test/fixtures/simple/album/videos.json +1 -0
  123. data/test/fixtures/simple/channel/info.json +1 -0
  124. data/test/fixtures/simple/channel/videos.json +1 -0
  125. data/test/fixtures/simple/group/info.json +1 -0
  126. data/test/fixtures/simple/group/users.json +1 -0
  127. data/test/fixtures/simple/group/videos.json +1 -0
  128. data/test/fixtures/simple/user/albums.json +1 -0
  129. data/test/fixtures/simple/user/all_videos.json +1 -0
  130. data/test/fixtures/simple/user/appears_in.json +1 -0
  131. data/test/fixtures/simple/user/channels.json +1 -0
  132. data/test/fixtures/simple/user/contacts_like.json +1 -0
  133. data/test/fixtures/simple/user/contacts_videos.json +1 -0
  134. data/test/fixtures/simple/user/groups.json +1 -0
  135. data/test/fixtures/simple/user/info.json +1 -0
  136. data/test/fixtures/simple/user/likes.json +1 -0
  137. data/test/fixtures/simple/user/subscriptions.json +1 -0
  138. data/test/fixtures/simple/user/videos.json +1 -0
  139. data/test/fixtures/simple/video/info.json +1 -0
  140. data/test/test_helper.rb +50 -0
  141. data/test/vimeo/advanced/album_test.rb +88 -0
  142. data/test/vimeo/advanced/auth_test.rb +37 -0
  143. data/test/vimeo/advanced/base_test.rb +24 -0
  144. data/test/vimeo/advanced/channels_test.rb +79 -0
  145. data/test/vimeo/advanced/contacts_test.rb +40 -0
  146. data/test/vimeo/advanced/group_events_test.rb +33 -0
  147. data/test/vimeo/advanced/group_forums_test.rb +26 -0
  148. data/test/vimeo/advanced/groups_test.rb +82 -0
  149. data/test/vimeo/advanced/person_test.rb +68 -0
  150. data/test/vimeo/advanced/test_test.rb +33 -0
  151. data/test/vimeo/advanced/upload_test.rb +50 -0
  152. data/test/vimeo/advanced/videos_embed_test.rb +26 -0
  153. data/test/vimeo/advanced/videos_test.rb +203 -0
  154. data/test/vimeo/advanced_test.rb +0 -0
  155. data/test/vimeo/simple/activity_test.rb +60 -0
  156. data/test/vimeo/simple/album_test.rb +31 -0
  157. data/test/vimeo/simple/channel_test.rb +31 -0
  158. data/test/vimeo/simple/group_test.rb +41 -0
  159. data/test/vimeo/simple/user_test.rb +112 -0
  160. data/test/vimeo/simple/video_test.rb +22 -0
  161. data/test/vimeo/simple_test.rb +0 -0
  162. data/test/vimeo_test.rb +0 -0
  163. data/vimeo.gemspec +244 -0
  164. metadata +303 -0
@@ -0,0 +1,504 @@
1
+ {
2
+ "generated_in":"0.4482",
3
+ "stat":"ok",
4
+ "topics":{
5
+ "on_this_page":"12",
6
+ "page":"1",
7
+ "perpage":"25",
8
+ "total":"12",
9
+ "topic":[
10
+ {
11
+ "created_on":"2009-08-27 20:15:20",
12
+ "id":"7953",
13
+ "locked":"0",
14
+ "name":"Post links to videos and photos from Vimeo Offline: London!",
15
+ "sticky":"0",
16
+ "creator":{
17
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
18
+ "id":"266269",
19
+ "is_plus":"1",
20
+ "is_staff":"1",
21
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
22
+ "realname":"Karen Abad \u2665s Dinosaurs.",
23
+ "username":"karenabad",
24
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
25
+ "portraits":{
26
+ "portrait":[
27
+ {
28
+ "height":"30",
29
+ "width":"30",
30
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
31
+ },
32
+ {
33
+ "height":"75",
34
+ "width":"75",
35
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
36
+ },
37
+ {
38
+ "height":"100",
39
+ "width":"100",
40
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
41
+ },
42
+ {
43
+ "height":"300",
44
+ "width":"300",
45
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
46
+ }
47
+ ]
48
+ }
49
+ }
50
+ },
51
+ {
52
+ "created_on":"2009-09-01 06:00:30",
53
+ "id":"8039",
54
+ "locked":"0",
55
+ "name":"PRAGUE ???",
56
+ "sticky":"0",
57
+ "creator":{
58
+ "display_name":"DZN",
59
+ "id":"158462",
60
+ "is_plus":"0",
61
+ "is_staff":"0",
62
+ "profileurl":"http:\/\/vimeo.com\/coolerdavid",
63
+ "realname":"DZN",
64
+ "username":"coolerdavid",
65
+ "videosurl":"http:\/\/vimeo.com\/coolerdavid\/videos",
66
+ "portraits":{
67
+ "portrait":[
68
+ {
69
+ "height":"30",
70
+ "width":"30",
71
+ "_content":"http:\/\/images.vimeo.com\/11\/34\/23\/113423010\/113423010_30.jpg"
72
+ },
73
+ {
74
+ "height":"75",
75
+ "width":"75",
76
+ "_content":"http:\/\/images.vimeo.com\/11\/34\/23\/113423010\/113423010_75.jpg"
77
+ },
78
+ {
79
+ "height":"100",
80
+ "width":"100",
81
+ "_content":"http:\/\/images.vimeo.com\/11\/34\/23\/113423010\/113423010_100.jpg"
82
+ },
83
+ {
84
+ "height":"300",
85
+ "width":"300",
86
+ "_content":"http:\/\/images.vimeo.com\/11\/34\/23\/113423010\/113423010_300.jpg"
87
+ }
88
+ ]
89
+ }
90
+ }
91
+ },
92
+ {
93
+ "created_on":"2009-08-24 08:07:50",
94
+ "id":"7872",
95
+ "locked":"0",
96
+ "name":"Post links to videos and photos of Vimeo Offline: Paris.",
97
+ "sticky":"0",
98
+ "creator":{
99
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
100
+ "id":"266269",
101
+ "is_plus":"1",
102
+ "is_staff":"1",
103
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
104
+ "realname":"Karen Abad \u2665s Dinosaurs.",
105
+ "username":"karenabad",
106
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
107
+ "portraits":{
108
+ "portrait":[
109
+ {
110
+ "height":"30",
111
+ "width":"30",
112
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
113
+ },
114
+ {
115
+ "height":"75",
116
+ "width":"75",
117
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
118
+ },
119
+ {
120
+ "height":"100",
121
+ "width":"100",
122
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
123
+ },
124
+ {
125
+ "height":"300",
126
+ "width":"300",
127
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
128
+ }
129
+ ]
130
+ }
131
+ }
132
+ },
133
+ {
134
+ "created_on":"2009-07-20 18:26:50",
135
+ "id":"7215",
136
+ "locked":"0",
137
+ "name":"Submit your videos here.",
138
+ "sticky":"0",
139
+ "creator":{
140
+ "display_name":"Blake Whitman",
141
+ "id":"151382",
142
+ "is_plus":"1",
143
+ "is_staff":"1",
144
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
145
+ "realname":"Blake Whitman",
146
+ "username":"blakewhitman",
147
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
148
+ "portraits":{
149
+ "portrait":[
150
+ {
151
+ "height":"30",
152
+ "width":"30",
153
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
154
+ },
155
+ {
156
+ "height":"75",
157
+ "width":"75",
158
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
159
+ },
160
+ {
161
+ "height":"100",
162
+ "width":"100",
163
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
164
+ },
165
+ {
166
+ "height":"300",
167
+ "width":"300",
168
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
169
+ }
170
+ ]
171
+ }
172
+ }
173
+ },
174
+ {
175
+ "created_on":"2009-08-20 14:03:25",
176
+ "id":"7819",
177
+ "locked":"0",
178
+ "name":"Vimeo Offline: Berlin Playlist",
179
+ "sticky":"0",
180
+ "creator":{
181
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
182
+ "id":"266269",
183
+ "is_plus":"1",
184
+ "is_staff":"1",
185
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
186
+ "realname":"Karen Abad \u2665s Dinosaurs.",
187
+ "username":"karenabad",
188
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
189
+ "portraits":{
190
+ "portrait":[
191
+ {
192
+ "height":"30",
193
+ "width":"30",
194
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
195
+ },
196
+ {
197
+ "height":"75",
198
+ "width":"75",
199
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
200
+ },
201
+ {
202
+ "height":"100",
203
+ "width":"100",
204
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
205
+ },
206
+ {
207
+ "height":"300",
208
+ "width":"300",
209
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
210
+ }
211
+ ]
212
+ }
213
+ }
214
+ },
215
+ {
216
+ "created_on":"2009-08-20 10:26:16",
217
+ "id":"7817",
218
+ "locked":"0",
219
+ "name":"Post links to Videos and Photos of Berlin here!",
220
+ "sticky":"0",
221
+ "creator":{
222
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
223
+ "id":"266269",
224
+ "is_plus":"1",
225
+ "is_staff":"1",
226
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
227
+ "realname":"Karen Abad \u2665s Dinosaurs.",
228
+ "username":"karenabad",
229
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
230
+ "portraits":{
231
+ "portrait":[
232
+ {
233
+ "height":"30",
234
+ "width":"30",
235
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
236
+ },
237
+ {
238
+ "height":"75",
239
+ "width":"75",
240
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
241
+ },
242
+ {
243
+ "height":"100",
244
+ "width":"100",
245
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
246
+ },
247
+ {
248
+ "height":"300",
249
+ "width":"300",
250
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
251
+ }
252
+ ]
253
+ }
254
+ }
255
+ },
256
+ {
257
+ "created_on":"2009-08-20 08:46:22",
258
+ "id":"7815",
259
+ "locked":"0",
260
+ "name":"Berlin - Thanks for coming out last night! ",
261
+ "sticky":"0",
262
+ "creator":{
263
+ "display_name":"Karen Abad \u2665s Dinosaurs.",
264
+ "id":"266269",
265
+ "is_plus":"1",
266
+ "is_staff":"1",
267
+ "profileurl":"http:\/\/vimeo.com\/karenabad",
268
+ "realname":"Karen Abad \u2665s Dinosaurs.",
269
+ "username":"karenabad",
270
+ "videosurl":"http:\/\/vimeo.com\/karenabad\/videos",
271
+ "portraits":{
272
+ "portrait":[
273
+ {
274
+ "height":"30",
275
+ "width":"30",
276
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/17\/portrait-29391761.jpg"
277
+ },
278
+ {
279
+ "height":"75",
280
+ "width":"75",
281
+ "_content":"http:\/\/10.media.vimeo.com\/d1\/5\/29\/39\/23\/portrait-29392351.jpg"
282
+ },
283
+ {
284
+ "height":"100",
285
+ "width":"100",
286
+ "_content":"http:\/\/00.media.vimeo.com\/d1\/5\/29\/41\/82\/portrait-29418290.jpg"
287
+ },
288
+ {
289
+ "height":"300",
290
+ "width":"300",
291
+ "_content":"http:\/\/50.media.vimeo.com\/d1\/5\/29\/41\/26\/portrait-29412655.jpg"
292
+ }
293
+ ]
294
+ }
295
+ }
296
+ },
297
+ {
298
+ "created_on":"2009-08-20 06:09:36",
299
+ "id":"7814",
300
+ "locked":"0",
301
+ "name":"Berlin Playlist",
302
+ "sticky":"0",
303
+ "creator":{
304
+ "display_name":"HUNDERTMARK ",
305
+ "id":"653218",
306
+ "is_plus":"0",
307
+ "is_staff":"0",
308
+ "profileurl":"http:\/\/vimeo.com\/hundertmarkblog",
309
+ "realname":"HUNDERTMARK ",
310
+ "username":"hundertmarkblog",
311
+ "videosurl":"http:\/\/vimeo.com\/hundertmarkblog\/videos",
312
+ "portraits":{
313
+ "portrait":[
314
+ {
315
+ "height":"30",
316
+ "width":"30",
317
+ "_content":"http:\/\/images.vimeo.com\/11\/41\/87\/114187991\/114187991_30.jpg"
318
+ },
319
+ {
320
+ "height":"75",
321
+ "width":"75",
322
+ "_content":"http:\/\/images.vimeo.com\/11\/41\/87\/114187991\/114187991_75.jpg"
323
+ },
324
+ {
325
+ "height":"100",
326
+ "width":"100",
327
+ "_content":"http:\/\/images.vimeo.com\/11\/41\/87\/114187991\/114187991_100.jpg"
328
+ },
329
+ {
330
+ "height":"300",
331
+ "width":"300",
332
+ "_content":"http:\/\/images.vimeo.com\/11\/41\/87\/114187991\/114187991_300.jpg"
333
+ }
334
+ ]
335
+ }
336
+ }
337
+ },
338
+ {
339
+ "created_on":"2009-07-23 07:56:33",
340
+ "id":"7261",
341
+ "locked":"0",
342
+ "name":"anyone coming from NRW or netherlands?",
343
+ "sticky":"0",
344
+ "creator":{
345
+ "display_name":"HannahMai",
346
+ "id":"95404",
347
+ "is_plus":"1",
348
+ "is_staff":"0",
349
+ "profileurl":"http:\/\/vimeo.com\/hannahmai",
350
+ "realname":"HannahMai",
351
+ "username":"hannahmai",
352
+ "videosurl":"http:\/\/vimeo.com\/hannahmai\/videos",
353
+ "portraits":{
354
+ "portrait":[
355
+ {
356
+ "height":"30",
357
+ "width":"30",
358
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/75\/118275941\/118275941_30.jpg"
359
+ },
360
+ {
361
+ "height":"75",
362
+ "width":"75",
363
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/75\/118275941\/118275941_75.jpg"
364
+ },
365
+ {
366
+ "height":"100",
367
+ "width":"100",
368
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/75\/118275941\/118275941_100.jpg"
369
+ },
370
+ {
371
+ "height":"300",
372
+ "width":"300",
373
+ "_content":"http:\/\/images.vimeo.com\/11\/82\/75\/118275941\/118275941_300.jpg"
374
+ }
375
+ ]
376
+ }
377
+ }
378
+ },
379
+ {
380
+ "created_on":"2009-07-20 18:24:55",
381
+ "id":"7214",
382
+ "locked":"0",
383
+ "name":"Can you come?",
384
+ "sticky":"0",
385
+ "creator":{
386
+ "display_name":"Blake Whitman",
387
+ "id":"151382",
388
+ "is_plus":"1",
389
+ "is_staff":"1",
390
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
391
+ "realname":"Blake Whitman",
392
+ "username":"blakewhitman",
393
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
394
+ "portraits":{
395
+ "portrait":[
396
+ {
397
+ "height":"30",
398
+ "width":"30",
399
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
400
+ },
401
+ {
402
+ "height":"75",
403
+ "width":"75",
404
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
405
+ },
406
+ {
407
+ "height":"100",
408
+ "width":"100",
409
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
410
+ },
411
+ {
412
+ "height":"300",
413
+ "width":"300",
414
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
415
+ }
416
+ ]
417
+ }
418
+ }
419
+ },
420
+ {
421
+ "created_on":"2009-08-17 16:16:44",
422
+ "id":"7753",
423
+ "locked":"0",
424
+ "name":"Canada?",
425
+ "sticky":"0",
426
+ "creator":{
427
+ "display_name":"Adam Palmer",
428
+ "id":"817545",
429
+ "is_plus":"0",
430
+ "is_staff":"0",
431
+ "profileurl":"http:\/\/vimeo.com\/user817545",
432
+ "realname":"Adam Palmer",
433
+ "username":"user817545",
434
+ "videosurl":"http:\/\/vimeo.com\/user817545\/videos",
435
+ "portraits":{
436
+ "portrait":[
437
+ {
438
+ "height":"30",
439
+ "width":"30",
440
+ "_content":"http:\/\/images.vimeo.com\/11\/45\/19\/114519174\/114519174_30.jpg"
441
+ },
442
+ {
443
+ "height":"75",
444
+ "width":"75",
445
+ "_content":"http:\/\/images.vimeo.com\/11\/45\/19\/114519174\/114519174_75.jpg"
446
+ },
447
+ {
448
+ "height":"100",
449
+ "width":"100",
450
+ "_content":"http:\/\/images.vimeo.com\/11\/45\/19\/114519174\/114519174_100.jpg"
451
+ },
452
+ {
453
+ "height":"300",
454
+ "width":"300",
455
+ "_content":"http:\/\/images.vimeo.com\/11\/45\/19\/114519174\/114519174_300.jpg"
456
+ }
457
+ ]
458
+ }
459
+ }
460
+ },
461
+ {
462
+ "created_on":"2009-07-29 19:21:00",
463
+ "id":"7381",
464
+ "locked":"0",
465
+ "name":"Need VJs or A\/V artists for the events!",
466
+ "sticky":"0",
467
+ "creator":{
468
+ "display_name":"Blake Whitman",
469
+ "id":"151382",
470
+ "is_plus":"1",
471
+ "is_staff":"1",
472
+ "profileurl":"http:\/\/vimeo.com\/blakewhitman",
473
+ "realname":"Blake Whitman",
474
+ "username":"blakewhitman",
475
+ "videosurl":"http:\/\/vimeo.com\/blakewhitman\/videos",
476
+ "portraits":{
477
+ "portrait":[
478
+ {
479
+ "height":"30",
480
+ "width":"30",
481
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_30.jpg"
482
+ },
483
+ {
484
+ "height":"75",
485
+ "width":"75",
486
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_75.jpg"
487
+ },
488
+ {
489
+ "height":"100",
490
+ "width":"100",
491
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_100.jpg"
492
+ },
493
+ {
494
+ "height":"300",
495
+ "width":"300",
496
+ "_content":"http:\/\/images.vimeo.com\/11\/60\/62\/116062176\/116062176_300.jpg"
497
+ }
498
+ ]
499
+ }
500
+ }
501
+ }
502
+ ]
503
+ }
504
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.1081",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.1081",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "generated_in":"0.0453",
3
+ "stat":"ok",
4
+ "user":{
5
+ "id":"888046",
6
+ "username":"matthooks",
7
+ "display_name":"Matt Hooks"
8
+ }
9
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "generated_in":"0.1619",
3
+ "stat":"fail",
4
+ "err":{
5
+ "code":"2",
6
+ "msg":"User not plus"
7
+ }
8
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "generated_in":"0.3722",
3
+ "stat":"ok",
4
+ "person":{
5
+ "id":"888046",
6
+ "is_plus":"0",
7
+ "is_staff":"0",
8
+ "username":"matthooks",
9
+ "display_name":"Matt Hooks",
10
+ "location":"Chicago,
11
+ IL",
12
+ "url":"http:\/\/blackholeinthemidwest.com\/",
13
+ "number_of_contacts":"3",
14
+ "number_of_uploads":"1",
15
+ "number_of_likes":"2",
16
+ "number_of_videos":"1",
17
+ "number_of_videos_appears_in":"0",
18
+ "profileurl":"http:\/\/vimeo.com\/matthooks",
19
+ "videosurl":"http:\/\/vimeo.com\/matthooks\/videos"
20
+ }
21
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "generated_in":"2.7928",
3
+ "stat":"ok",
4
+ "portraits":{
5
+ "portrait":[
6
+ {
7
+ "height":"30",
8
+ "width":"30",
9
+ "_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_30.jpg"
10
+ },
11
+ {
12
+ "height":"75",
13
+ "width":"75",
14
+ "_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_75.jpg"
15
+ },
16
+ {
17
+ "height":"100",
18
+ "width":"100",
19
+ "_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_100.jpg"
20
+ },
21
+ {
22
+ "height":"300",
23
+ "width":"300",
24
+ "_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_300.jpg"
25
+ }
26
+ ]
27
+ }
28
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.1081",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.1081",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "generated_in":"0.1409",
3
+ "stat":"ok",
4
+ "api_key":"api_key",
5
+ "api_sig":"api_sig",
6
+ "format":"json",
7
+ "method":"vimeo.test.echo"
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "generated_in":"0.0792",
3
+ "stat":"ok",
4
+ "user":{
5
+ "id":"888046",
6
+ "username":"matthooks"
7
+ }
8
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "generated_in":"0.1081",
3
+ "stat":"ok"
4
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "stat":"ok",
3
+ "generated_in":"38.5153",
4
+ "ticket": {
5
+ "video_id":"6777401",
6
+ "id":"ticket_id",
7
+ "manifest":"MD5"
8
+ }
9
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "generated_in":"0.3061",
3
+ "stat":"ok",
4
+ "user":{
5
+ "id":"888046",
6
+ "is_plus":"0",
7
+ "upload_space":{
8
+ "free":"524288000",
9
+ "max":"524288000",
10
+ "resets":"4",
11
+ "used":"0"
12
+ },
13
+ "hd_quota":"0",
14
+ "sd_quota":"1"
15
+ }
16
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "generated_in":"0.2126",
3
+ "stat":"ok",
4
+ "ticket":{
5
+ "endpoint":"http:\/\/67.202.6.15\/upload_multi?ticket_id=ticket_id",
6
+ "id":"ticket_id"
7
+ }
8
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "files": [{
3
+ "md5":
4
+ "718a4221052e81534696bc84ef5bc195"
5
+ }]
6
+ }