vimeo 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/CHANGELOG.rdoc +24 -0
- data/LICENSE +20 -0
- data/README.rdoc +322 -0
- data/Rakefile +68 -0
- data/VERSION.yml +4 -0
- data/lib/vimeo/advanced/album.rb +57 -0
- data/lib/vimeo/advanced/auth.rb +22 -0
- data/lib/vimeo/advanced/base.rb +105 -0
- data/lib/vimeo/advanced/channel.rb +58 -0
- data/lib/vimeo/advanced/contact.rb +31 -0
- data/lib/vimeo/advanced/group.rb +68 -0
- data/lib/vimeo/advanced/group_events.rb +25 -0
- data/lib/vimeo/advanced/group_forums.rb +19 -0
- data/lib/vimeo/advanced/person.rb +48 -0
- data/lib/vimeo/advanced/test.rb +36 -0
- data/lib/vimeo/advanced/upload.rb +62 -0
- data/lib/vimeo/advanced/video.rb +131 -0
- data/lib/vimeo/advanced/video_embed.rb +19 -0
- data/lib/vimeo/advanced.rb +20 -0
- data/lib/vimeo/simple/activity.rb +42 -0
- data/lib/vimeo/simple/album.rb +21 -0
- data/lib/vimeo/simple/base.rb +10 -0
- data/lib/vimeo/simple/channel.rb +21 -0
- data/lib/vimeo/simple/group.rb +28 -0
- data/lib/vimeo/simple/user.rb +84 -0
- data/lib/vimeo/simple/video.rb +14 -0
- data/lib/vimeo/simple.rb +14 -0
- data/lib/vimeo.rb +10 -0
- data/test/fixtures/advanced/album/add_video.json +4 -0
- data/test/fixtures/advanced/album/create.json +7 -0
- data/test/fixtures/advanced/album/delete.json +4 -0
- data/test/fixtures/advanced/album/get_all.json +111 -0
- data/test/fixtures/advanced/album/get_videos.json +30 -0
- data/test/fixtures/advanced/album/remove_video.json +4 -0
- data/test/fixtures/advanced/album/set_description.json +4 -0
- data/test/fixtures/advanced/album/set_password.json +4 -0
- data/test/fixtures/advanced/album/set_title.json +4 -0
- data/test/fixtures/advanced/auth/check_token.json +13 -0
- data/test/fixtures/advanced/auth/get_frob.json +5 -0
- data/test/fixtures/advanced/auth/get_token.json +13 -0
- data/test/fixtures/advanced/channel/add_video.json +4 -0
- data/test/fixtures/advanced/channel/get_all.json +1395 -0
- data/test/fixtures/advanced/channel/get_info.json +55 -0
- data/test/fixtures/advanced/channel/get_moderators.json +45 -0
- data/test/fixtures/advanced/channel/get_subscribers.json +44 -0
- data/test/fixtures/advanced/channel/get_videos.json +19 -0
- data/test/fixtures/advanced/channel/remove_video.json +4 -0
- data/test/fixtures/advanced/channel/subscribe.json +4 -0
- data/test/fixtures/advanced/channel/unsubscribe.json +4 -0
- data/test/fixtures/advanced/contact/get_all.json +117 -0
- data/test/fixtures/advanced/contact/get_mutual.json +80 -0
- data/test/fixtures/advanced/contact/get_online.json +47 -0
- data/test/fixtures/advanced/contact/get_who_added.json +117 -0
- data/test/fixtures/advanced/group/add_video.json +4 -0
- data/test/fixtures/advanced/group/get_all.json +1556 -0
- data/test/fixtures/advanced/group/get_files.json +255 -0
- data/test/fixtures/advanced/group/get_info.json +73 -0
- data/test/fixtures/advanced/group/get_members.json +862 -0
- data/test/fixtures/advanced/group/get_moderators.json +44 -0
- data/test/fixtures/advanced/group/get_video_comments.json +96 -0
- data/test/fixtures/advanced/group/get_videos.json +102 -0
- data/test/fixtures/advanced/group/join.json +4 -0
- data/test/fixtures/advanced/group/leave.json +4 -0
- data/test/fixtures/advanced/group_events/get_month.json +146 -0
- data/test/fixtures/advanced/group_events/get_past.json +146 -0
- data/test/fixtures/advanced/group_events/get_upcoming.json +146 -0
- data/test/fixtures/advanced/group_forums/get_topic_comments.json +224 -0
- data/test/fixtures/advanced/group_forums/get_topics.json +504 -0
- data/test/fixtures/advanced/person/add_contact.json +4 -0
- data/test/fixtures/advanced/person/add_subscription.json +4 -0
- data/test/fixtures/advanced/person/find_by_email.json +9 -0
- data/test/fixtures/advanced/person/get_hd_embeds.json +8 -0
- data/test/fixtures/advanced/person/get_info.json +21 -0
- data/test/fixtures/advanced/person/get_portrait_urls.json +28 -0
- data/test/fixtures/advanced/person/remove_contact.json +4 -0
- data/test/fixtures/advanced/person/remove_subscription.json +4 -0
- data/test/fixtures/advanced/test/echo.json +8 -0
- data/test/fixtures/advanced/test/login.json +8 -0
- data/test/fixtures/advanced/test/null.json +4 -0
- data/test/fixtures/advanced/upload/confirm.json +9 -0
- data/test/fixtures/advanced/upload/get_quota.json +16 -0
- data/test/fixtures/advanced/upload/get_ticket.json +8 -0
- data/test/fixtures/advanced/upload/manifest_to_upload.json +6 -0
- data/test/fixtures/advanced/upload/sample_iTunes.mov +0 -0
- data/test/fixtures/advanced/upload/verify_manifest.json +11 -0
- data/test/fixtures/advanced/video/add_cast.json +4 -0
- data/test/fixtures/advanced/video/add_comment.json +7 -0
- data/test/fixtures/advanced/video/add_photos.json +4 -0
- data/test/fixtures/advanced/video/add_tags.json +4 -0
- data/test/fixtures/advanced/video/clear_tags.json +4 -0
- data/test/fixtures/advanced/video/delete.json +4 -0
- data/test/fixtures/advanced/video/delete_comment.json +4 -0
- data/test/fixtures/advanced/video/edit_comment.json +4 -0
- data/test/fixtures/advanced/video/get_all.json +30 -0
- data/test/fixtures/advanced/video/get_appears_in.json +10 -0
- data/test/fixtures/advanced/video/get_by_tag.json +239 -0
- data/test/fixtures/advanced/video/get_cast.json +42 -0
- data/test/fixtures/advanced/video/get_comments_list.json +52 -0
- data/test/fixtures/advanced/video/get_contacts_liked.json +48 -0
- data/test/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
- data/test/fixtures/advanced/video/get_info.json +246 -0
- data/test/fixtures/advanced/video/get_likes.json +32 -0
- data/test/fixtures/advanced/video/get_subscriptions.json +241 -0
- data/test/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
- data/test/fixtures/advanced/video/get_uploaded.json +30 -0
- data/test/fixtures/advanced/video/remove_cast.json +4 -0
- data/test/fixtures/advanced/video/remove_tag.json +4 -0
- data/test/fixtures/advanced/video/search.json +238 -0
- data/test/fixtures/advanced/video/set_description.json +4 -0
- data/test/fixtures/advanced/video/set_like.json +4 -0
- data/test/fixtures/advanced/video/set_privacy.json +4 -0
- data/test/fixtures/advanced/video/set_title.json +4 -0
- data/test/fixtures/advanced/video_embed/get_presets.json +8 -0
- data/test/fixtures/advanced/video_embed/set_preset.json +4 -0
- data/test/fixtures/simple/activity/contacts_did.json +1 -0
- data/test/fixtures/simple/activity/everyone_did.json +1 -0
- data/test/fixtures/simple/activity/happened_to_contacts.json +1 -0
- data/test/fixtures/simple/activity/happened_to_user.json +1 -0
- data/test/fixtures/simple/activity/user_did.json +1 -0
- data/test/fixtures/simple/album/info.json +1 -0
- data/test/fixtures/simple/album/videos.json +1 -0
- data/test/fixtures/simple/channel/info.json +1 -0
- data/test/fixtures/simple/channel/videos.json +1 -0
- data/test/fixtures/simple/group/info.json +1 -0
- data/test/fixtures/simple/group/users.json +1 -0
- data/test/fixtures/simple/group/videos.json +1 -0
- data/test/fixtures/simple/user/albums.json +1 -0
- data/test/fixtures/simple/user/all_videos.json +1 -0
- data/test/fixtures/simple/user/appears_in.json +1 -0
- data/test/fixtures/simple/user/channels.json +1 -0
- data/test/fixtures/simple/user/contacts_like.json +1 -0
- data/test/fixtures/simple/user/contacts_videos.json +1 -0
- data/test/fixtures/simple/user/groups.json +1 -0
- data/test/fixtures/simple/user/info.json +1 -0
- data/test/fixtures/simple/user/likes.json +1 -0
- data/test/fixtures/simple/user/subscriptions.json +1 -0
- data/test/fixtures/simple/user/videos.json +1 -0
- data/test/fixtures/simple/video/info.json +1 -0
- data/test/test_helper.rb +50 -0
- data/test/vimeo/advanced/album_test.rb +88 -0
- data/test/vimeo/advanced/auth_test.rb +37 -0
- data/test/vimeo/advanced/base_test.rb +24 -0
- data/test/vimeo/advanced/channels_test.rb +79 -0
- data/test/vimeo/advanced/contacts_test.rb +40 -0
- data/test/vimeo/advanced/group_events_test.rb +33 -0
- data/test/vimeo/advanced/group_forums_test.rb +26 -0
- data/test/vimeo/advanced/groups_test.rb +82 -0
- data/test/vimeo/advanced/person_test.rb +68 -0
- data/test/vimeo/advanced/test_test.rb +33 -0
- data/test/vimeo/advanced/upload_test.rb +50 -0
- data/test/vimeo/advanced/videos_embed_test.rb +26 -0
- data/test/vimeo/advanced/videos_test.rb +203 -0
- data/test/vimeo/advanced_test.rb +0 -0
- data/test/vimeo/simple/activity_test.rb +60 -0
- data/test/vimeo/simple/album_test.rb +31 -0
- data/test/vimeo/simple/channel_test.rb +31 -0
- data/test/vimeo/simple/group_test.rb +41 -0
- data/test/vimeo/simple/user_test.rb +112 -0
- data/test/vimeo/simple/video_test.rb +22 -0
- data/test/vimeo/simple_test.rb +0 -0
- data/test/vimeo_test.rb +0 -0
- data/vimeo.gemspec +244 -0
- 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,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
|
+
}
|
Binary file
|