refinerycms-vimeo-videos 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +0 -1
- data/Gemfile.lock +33 -0
- data/README.markdown +8 -0
- data/TODO +2 -1
- data/app/controllers/admin/vimeo_account_controller.rb +30 -7
- data/app/controllers/admin/vimeo_videos_controller.rb +10 -9
- data/app/models/vimeo_embed_cache.rb +6 -1
- data/app/models/vimeo_meta_cache.rb +25 -24
- data/lib/refinerycms-vimeo-videos.rb +4 -1
- data/lib/refinerycms_vimeo_videos/account.rb +31 -0
- data/lib/refinerycms_vimeo_videos/version.rb +1 -1
- data/refinerycms-vimeo-videos.gemspec +146 -4
- data/spec/controllers/admin/vimeo_account_controller_spec.rb +0 -0
- data/spec/fixtures/advanced/album/add_video.json +4 -0
- data/spec/fixtures/advanced/album/create.json +7 -0
- data/spec/fixtures/advanced/album/delete.json +4 -0
- data/spec/fixtures/advanced/album/get_all.json +111 -0
- data/spec/fixtures/advanced/album/get_videos.json +30 -0
- data/spec/fixtures/advanced/album/remove_video.json +4 -0
- data/spec/fixtures/advanced/album/set_description.json +4 -0
- data/spec/fixtures/advanced/album/set_password.json +4 -0
- data/spec/fixtures/advanced/album/set_title.json +4 -0
- data/spec/fixtures/advanced/auth/access_token.txt +1 -0
- data/spec/fixtures/advanced/auth/check_access_token.json +9 -0
- data/spec/fixtures/advanced/auth/check_token.json +13 -0
- data/spec/fixtures/advanced/auth/get_frob.json +5 -0
- data/spec/fixtures/advanced/auth/get_token.json +13 -0
- data/spec/fixtures/advanced/auth/request_token.txt +1 -0
- data/spec/fixtures/advanced/channel/add_video.json +4 -0
- data/spec/fixtures/advanced/channel/get_all.json +1357 -0
- data/spec/fixtures/advanced/channel/get_info.json +55 -0
- data/spec/fixtures/advanced/channel/get_moderators.json +45 -0
- data/spec/fixtures/advanced/channel/get_subscribers.json +44 -0
- data/spec/fixtures/advanced/channel/get_videos.json +19 -0
- data/spec/fixtures/advanced/channel/remove_video.json +4 -0
- data/spec/fixtures/advanced/channel/subscribe.json +4 -0
- data/spec/fixtures/advanced/channel/unsubscribe.json +4 -0
- data/spec/fixtures/advanced/contact/get_all.json +117 -0
- data/spec/fixtures/advanced/contact/get_mutual.json +80 -0
- data/spec/fixtures/advanced/contact/get_online.json +47 -0
- data/spec/fixtures/advanced/contact/get_who_added.json +117 -0
- data/spec/fixtures/advanced/group/add_video.json +4 -0
- data/spec/fixtures/advanced/group/get_all.json +1532 -0
- data/spec/fixtures/advanced/group/get_files.json +255 -0
- data/spec/fixtures/advanced/group/get_info.json +72 -0
- data/spec/fixtures/advanced/group/get_members.json +862 -0
- data/spec/fixtures/advanced/group/get_moderators.json +44 -0
- data/spec/fixtures/advanced/group/get_video_comments.json +96 -0
- data/spec/fixtures/advanced/group/get_videos.json +102 -0
- data/spec/fixtures/advanced/group/join.json +4 -0
- data/spec/fixtures/advanced/group/leave.json +4 -0
- data/spec/fixtures/advanced/group_events/get_month.json +141 -0
- data/spec/fixtures/advanced/group_events/get_past.json +141 -0
- data/spec/fixtures/advanced/group_events/get_upcoming.json +141 -0
- data/spec/fixtures/advanced/group_forums/get_topic_comments.json +222 -0
- data/spec/fixtures/advanced/group_forums/get_topics.json +504 -0
- data/spec/fixtures/advanced/person/add_contact.json +4 -0
- data/spec/fixtures/advanced/person/add_subscription.json +4 -0
- data/spec/fixtures/advanced/person/find_by_email.json +9 -0
- data/spec/fixtures/advanced/person/get_hd_embeds.json +8 -0
- data/spec/fixtures/advanced/person/get_info.json +20 -0
- data/spec/fixtures/advanced/person/get_portrait_urls.json +28 -0
- data/spec/fixtures/advanced/person/remove_contact.json +4 -0
- data/spec/fixtures/advanced/person/remove_subscription.json +4 -0
- data/spec/fixtures/advanced/test/echo.json +8 -0
- data/spec/fixtures/advanced/test/login.json +8 -0
- data/spec/fixtures/advanced/test/null.json +4 -0
- data/spec/fixtures/advanced/upload/get_quota.json +16 -0
- data/spec/fixtures/advanced/upload/get_ticket.json +8 -0
- data/spec/fixtures/advanced/upload/sample_iTunes.mov +0 -0
- data/spec/fixtures/advanced/video/add_cast.json +4 -0
- data/spec/fixtures/advanced/video/add_comment.json +7 -0
- data/spec/fixtures/advanced/video/add_photos.json +4 -0
- data/spec/fixtures/advanced/video/add_tags.json +4 -0
- data/spec/fixtures/advanced/video/clear_tags.json +4 -0
- data/spec/fixtures/advanced/video/delete.json +4 -0
- data/spec/fixtures/advanced/video/delete_comment.json +4 -0
- data/spec/fixtures/advanced/video/edit_comment.json +4 -0
- data/spec/fixtures/advanced/video/get_all.json +30 -0
- data/spec/fixtures/advanced/video/get_appears_in.json +10 -0
- data/spec/fixtures/advanced/video/get_by_tag.json +237 -0
- data/spec/fixtures/advanced/video/get_cast.json +42 -0
- data/spec/fixtures/advanced/video/get_comments_list.json +52 -0
- data/spec/fixtures/advanced/video/get_contacts_liked.json +48 -0
- data/spec/fixtures/advanced/video/get_contacts_uploaded.json +237 -0
- data/spec/fixtures/advanced/video/get_info.json +246 -0
- data/spec/fixtures/advanced/video/get_likes.json +32 -0
- data/spec/fixtures/advanced/video/get_subscriptions.json +237 -0
- data/spec/fixtures/advanced/video/get_thumbnail_urls.json +28 -0
- data/spec/fixtures/advanced/video/get_uploaded.json +30 -0
- data/spec/fixtures/advanced/video/remove_cast.json +4 -0
- data/spec/fixtures/advanced/video/remove_tag.json +4 -0
- data/spec/fixtures/advanced/video/search.json +237 -0
- data/spec/fixtures/advanced/video/set_description.json +4 -0
- data/spec/fixtures/advanced/video/set_like.json +4 -0
- data/spec/fixtures/advanced/video/set_privacy.json +4 -0
- data/spec/fixtures/advanced/video/set_title.json +4 -0
- data/spec/fixtures/advanced/video_embed/get_presets.json +8 -0
- data/spec/fixtures/advanced/video_embed/set_preset.json +4 -0
- data/spec/fixtures/oembed/oembed.json +5 -0
- data/spec/fixtures/simple/activity/contacts_did.json +1 -0
- data/spec/fixtures/simple/activity/everyone_did.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_contacts.json +1 -0
- data/spec/fixtures/simple/activity/happened_to_user.json +1 -0
- data/spec/fixtures/simple/activity/user_did.json +1 -0
- data/spec/fixtures/simple/album/info.json +1 -0
- data/spec/fixtures/simple/album/videos.json +1 -0
- data/spec/fixtures/simple/channel/info.json +1 -0
- data/spec/fixtures/simple/channel/videos.json +1 -0
- data/spec/fixtures/simple/group/info.json +1 -0
- data/spec/fixtures/simple/group/users.json +1 -0
- data/spec/fixtures/simple/group/videos.json +1 -0
- data/spec/fixtures/simple/user/albums.json +1 -0
- data/spec/fixtures/simple/user/all_videos.json +1 -0
- data/spec/fixtures/simple/user/appears_in.json +1 -0
- data/spec/fixtures/simple/user/channels.json +1 -0
- data/spec/fixtures/simple/user/contacts_like.json +1 -0
- data/spec/fixtures/simple/user/contacts_videos.json +1 -0
- data/spec/fixtures/simple/user/groups.json +1 -0
- data/spec/fixtures/simple/user/info.json +1 -0
- data/spec/fixtures/simple/user/likes.json +1 -0
- data/spec/fixtures/simple/user/subscriptions.json +1 -0
- data/spec/fixtures/simple/user/videos.json +1 -0
- data/spec/fixtures/simple/video/info.json +1 -0
- data/spec/models/vimeo_embed_cache_spec.rb +65 -0
- data/spec/models/vimeo_meta_cache_spec.rb +24 -0
- data/spec/models/vimeo_video_spec.rb +0 -8
- data/spec/vimeo_helper.rb +54 -0
- metadata +131 -3
- data/app/controllers/admin/vimeo_base_controller.rb +0 -40
@@ -0,0 +1,55 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.0563",
|
3
|
+
"stat":"ok",
|
4
|
+
"channel":{
|
5
|
+
"id":"61450",
|
6
|
+
"is_featured":"0",
|
7
|
+
"is_sponsored":"0",
|
8
|
+
"name":"Vimeo Gem Test",
|
9
|
+
"description":"",
|
10
|
+
"created_on":"2009-09-24 19:45:07",
|
11
|
+
"modified_on":"2009-09-24 19:45:08",
|
12
|
+
"total_videos":"1",
|
13
|
+
"total_subscribers":"1",
|
14
|
+
"logo_url":"",
|
15
|
+
"badge_url":"",
|
16
|
+
"url":"http:\/\/vimeo.com\/channels\/61450",
|
17
|
+
"layout":"stream",
|
18
|
+
"theme":"standard",
|
19
|
+
"privacy":"anybody",
|
20
|
+
"creator":{
|
21
|
+
"display_name":"Matt Hooks",
|
22
|
+
"id":"888046",
|
23
|
+
"is_plus":"0",
|
24
|
+
"is_staff":"0",
|
25
|
+
"profileurl":"http:\/\/vimeo.com\/matthooks",
|
26
|
+
"realname":"Matt Hooks",
|
27
|
+
"username":"matthooks",
|
28
|
+
"videosurl":"http:\/\/vimeo.com\/matthooks\/videos",
|
29
|
+
"portraits":{
|
30
|
+
"portrait":[
|
31
|
+
{
|
32
|
+
"height":"30",
|
33
|
+
"width":"30",
|
34
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_30.jpg"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"height":"75",
|
38
|
+
"width":"75",
|
39
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_75.jpg"
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"height":"100",
|
43
|
+
"width":"100",
|
44
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_100.jpg"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"height":"300",
|
48
|
+
"width":"300",
|
49
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_300.jpg"
|
50
|
+
}
|
51
|
+
]
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.1075",
|
3
|
+
"stat":"ok",
|
4
|
+
"moderators":{
|
5
|
+
"on_this_page":"1",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"1",
|
9
|
+
"user":{
|
10
|
+
"display_name":"Matt Hooks",
|
11
|
+
"id":"888046",
|
12
|
+
"is_creator":"1",
|
13
|
+
"is_plus":"0",
|
14
|
+
"is_staff":"0",
|
15
|
+
"profileurl":"http:\/\/vimeo.com\/matthooks",
|
16
|
+
"realname":"Matt Hooks",
|
17
|
+
"username":"matthooks",
|
18
|
+
"videosurl":"http:\/\/vimeo.com\/matthooks\/videos",
|
19
|
+
"portraits":{
|
20
|
+
"portrait":[
|
21
|
+
{
|
22
|
+
"height":"30",
|
23
|
+
"width":"30",
|
24
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_30.jpg"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"height":"75",
|
28
|
+
"width":"75",
|
29
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_75.jpg"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"height":"100",
|
33
|
+
"width":"100",
|
34
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_100.jpg"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"height":"300",
|
38
|
+
"width":"300",
|
39
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_300.jpg"
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.0546",
|
3
|
+
"stat":"ok",
|
4
|
+
"subscribers":{
|
5
|
+
"on_this_page":"1",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"1",
|
9
|
+
"subscriber":{
|
10
|
+
"display_name":"Matt Hooks",
|
11
|
+
"id":"888046",
|
12
|
+
"is_plus":"0",
|
13
|
+
"is_staff":"0",
|
14
|
+
"profileurl":"http:\/\/vimeo.com\/matthooks",
|
15
|
+
"realname":"Matt Hooks",
|
16
|
+
"username":"matthooks",
|
17
|
+
"videosurl":"http:\/\/vimeo.com\/matthooks\/videos",
|
18
|
+
"portraits":{
|
19
|
+
"portrait":[
|
20
|
+
{
|
21
|
+
"height":"30",
|
22
|
+
"width":"30",
|
23
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_30.jpg"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"height":"75",
|
27
|
+
"width":"75",
|
28
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_75.jpg"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"height":"100",
|
32
|
+
"width":"100",
|
33
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_100.jpg"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"height":"300",
|
37
|
+
"width":"300",
|
38
|
+
"_content":"http:\/\/images.vimeo.com\/11\/42\/16\/114216178\/114216178_300.jpg"
|
39
|
+
}
|
40
|
+
]
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.1769",
|
3
|
+
"stat":"ok",
|
4
|
+
"videos":{
|
5
|
+
"on_this_page":"1",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"1",
|
9
|
+
"video":{
|
10
|
+
"embed_privacy":"anywhere",
|
11
|
+
"id":"2529363",
|
12
|
+
"is_hd":"0",
|
13
|
+
"owner":"888046",
|
14
|
+
"privacy":"anybody",
|
15
|
+
"title":"Test Video",
|
16
|
+
"upload_date":"2008-12-14 23:57:19"
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,117 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.3430",
|
3
|
+
"stat":"ok",
|
4
|
+
"contacts":{
|
5
|
+
"on_this_page":"3",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"3",
|
9
|
+
"contact":[
|
10
|
+
{
|
11
|
+
"display_name":"Jude Buffum",
|
12
|
+
"id":"1515908",
|
13
|
+
"is_plus":"0",
|
14
|
+
"is_staff":"0",
|
15
|
+
"mutual":"1",
|
16
|
+
"profileurl":"http:\/\/vimeo.com\/judebuffum",
|
17
|
+
"realname":"Jude Buffum",
|
18
|
+
"username":"judebuffum",
|
19
|
+
"videosurl":"http:\/\/vimeo.com\/judebuffum\/videos",
|
20
|
+
"portraits":{
|
21
|
+
"portrait":[
|
22
|
+
{
|
23
|
+
"height":"30",
|
24
|
+
"width":"30",
|
25
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_30.jpg"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"height":"75",
|
29
|
+
"width":"75",
|
30
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_75.jpg"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"height":"100",
|
34
|
+
"width":"100",
|
35
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_100.jpg"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"height":"300",
|
39
|
+
"width":"300",
|
40
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_300.jpg"
|
41
|
+
}
|
42
|
+
]
|
43
|
+
}
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"display_name":"stephen steim",
|
47
|
+
"id":"1142655",
|
48
|
+
"is_plus":"0",
|
49
|
+
"is_staff":"0",
|
50
|
+
"mutual":"1",
|
51
|
+
"profileurl":"http:\/\/vimeo.com\/user1142655",
|
52
|
+
"realname":"stephen steim",
|
53
|
+
"username":"user1142655",
|
54
|
+
"videosurl":"http:\/\/vimeo.com\/user1142655\/videos",
|
55
|
+
"portraits":{
|
56
|
+
"portrait":[
|
57
|
+
{
|
58
|
+
"height":"30",
|
59
|
+
"width":"30",
|
60
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"height":"75",
|
64
|
+
"width":"75",
|
65
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"height":"100",
|
69
|
+
"width":"100",
|
70
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"height":"300",
|
74
|
+
"width":"300",
|
75
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
76
|
+
}
|
77
|
+
]
|
78
|
+
}
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"display_name":"Clayton Cubitt",
|
82
|
+
"id":"1011813",
|
83
|
+
"is_plus":"1",
|
84
|
+
"is_staff":"0",
|
85
|
+
"mutual":"1",
|
86
|
+
"profileurl":"http:\/\/vimeo.com\/siege",
|
87
|
+
"realname":"Clayton Cubitt",
|
88
|
+
"username":"siege",
|
89
|
+
"videosurl":"http:\/\/vimeo.com\/siege\/videos",
|
90
|
+
"portraits":{
|
91
|
+
"portrait":[
|
92
|
+
{
|
93
|
+
"height":"30",
|
94
|
+
"width":"30",
|
95
|
+
"_content":"http:\/\/images.vimeo.com\/11\/41\/54\/114154254\/114154254_30.jpg"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"height":"75",
|
99
|
+
"width":"75",
|
100
|
+
"_content":"http:\/\/images.vimeo.com\/11\/41\/54\/114154254\/114154254_75.jpg"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"height":"100",
|
104
|
+
"width":"100",
|
105
|
+
"_content":"http:\/\/images.vimeo.com\/11\/41\/54\/114154254\/114154254_100.jpg"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"height":"300",
|
109
|
+
"width":"300",
|
110
|
+
"_content":"http:\/\/images.vimeo.com\/11\/41\/54\/114154254\/114154254_300.jpg"
|
111
|
+
}
|
112
|
+
]
|
113
|
+
}
|
114
|
+
}
|
115
|
+
]
|
116
|
+
}
|
117
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.1779",
|
3
|
+
"stat":"ok",
|
4
|
+
"contacts":{
|
5
|
+
"on_this_page":"2",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"2",
|
9
|
+
"contact":[
|
10
|
+
{
|
11
|
+
"display_name":"Jude Buffum",
|
12
|
+
"id":"1515908",
|
13
|
+
"is_plus":"0",
|
14
|
+
"is_staff":"0",
|
15
|
+
"profileurl":"http:\/\/vimeo.com\/judebuffum",
|
16
|
+
"realname":"Jude Buffum",
|
17
|
+
"username":"judebuffum",
|
18
|
+
"videosurl":"http:\/\/vimeo.com\/judebuffum\/videos",
|
19
|
+
"portraits":{
|
20
|
+
"portrait":[
|
21
|
+
{
|
22
|
+
"height":"30",
|
23
|
+
"width":"30",
|
24
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_30.jpg"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"height":"75",
|
28
|
+
"width":"75",
|
29
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_75.jpg"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"height":"100",
|
33
|
+
"width":"100",
|
34
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_100.jpg"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"height":"300",
|
38
|
+
"width":"300",
|
39
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_300.jpg"
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"display_name":"stephen steim",
|
46
|
+
"id":"1142655",
|
47
|
+
"is_plus":"0",
|
48
|
+
"is_staff":"0",
|
49
|
+
"profileurl":"http:\/\/vimeo.com\/user1142655",
|
50
|
+
"realname":"stephen steim",
|
51
|
+
"username":"user1142655",
|
52
|
+
"videosurl":"http:\/\/vimeo.com\/user1142655\/videos",
|
53
|
+
"portraits":{
|
54
|
+
"portrait":[
|
55
|
+
{
|
56
|
+
"height":"30",
|
57
|
+
"width":"30",
|
58
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"height":"75",
|
62
|
+
"width":"75",
|
63
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"height":"100",
|
67
|
+
"width":"100",
|
68
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"height":"300",
|
72
|
+
"width":"300",
|
73
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
74
|
+
}
|
75
|
+
]
|
76
|
+
}
|
77
|
+
}
|
78
|
+
]
|
79
|
+
}
|
80
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.1693",
|
3
|
+
"stat":"ok",
|
4
|
+
"contacts":{
|
5
|
+
"on_this_page":"1",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"1",
|
9
|
+
"contact":[
|
10
|
+
{
|
11
|
+
"display_name":"Tobias Stretch",
|
12
|
+
"id":"963116",
|
13
|
+
"is_mutual_contact":"0",
|
14
|
+
"is_plus":"1",
|
15
|
+
"is_staff":"0",
|
16
|
+
"profileurl":"http:\/\/vimeo.com\/user963116",
|
17
|
+
"realname":"Tobias Stretch",
|
18
|
+
"username":"user963116",
|
19
|
+
"videosurl":"http:\/\/vimeo.com\/user963116\/videos",
|
20
|
+
"portraits":{
|
21
|
+
"portrait":[
|
22
|
+
{
|
23
|
+
"height":"30",
|
24
|
+
"width":"30",
|
25
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_30.jpg"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"height":"75",
|
29
|
+
"width":"75",
|
30
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_75.jpg"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"height":"100",
|
34
|
+
"width":"100",
|
35
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_100.jpg"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"height":"300",
|
39
|
+
"width":"300",
|
40
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_300.jpg"
|
41
|
+
}
|
42
|
+
]
|
43
|
+
}
|
44
|
+
}
|
45
|
+
]
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,117 @@
|
|
1
|
+
{
|
2
|
+
"generated_in":"0.1693",
|
3
|
+
"stat":"ok",
|
4
|
+
"contacts":{
|
5
|
+
"on_this_page":"3",
|
6
|
+
"page":"1",
|
7
|
+
"perpage":"25",
|
8
|
+
"total":"3",
|
9
|
+
"contact":[
|
10
|
+
{
|
11
|
+
"display_name":"Tobias Stretch",
|
12
|
+
"id":"963116",
|
13
|
+
"is_mutual_contact":"0",
|
14
|
+
"is_plus":"1",
|
15
|
+
"is_staff":"0",
|
16
|
+
"profileurl":"http:\/\/vimeo.com\/user963116",
|
17
|
+
"realname":"Tobias Stretch",
|
18
|
+
"username":"user963116",
|
19
|
+
"videosurl":"http:\/\/vimeo.com\/user963116\/videos",
|
20
|
+
"portraits":{
|
21
|
+
"portrait":[
|
22
|
+
{
|
23
|
+
"height":"30",
|
24
|
+
"width":"30",
|
25
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_30.jpg"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"height":"75",
|
29
|
+
"width":"75",
|
30
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_75.jpg"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"height":"100",
|
34
|
+
"width":"100",
|
35
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_100.jpg"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"height":"300",
|
39
|
+
"width":"300",
|
40
|
+
"_content":"http:\/\/images.vimeo.com\/11\/68\/58\/116858032\/116858032_300.jpg"
|
41
|
+
}
|
42
|
+
]
|
43
|
+
}
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"display_name":"Jude Buffum",
|
47
|
+
"id":"1515908",
|
48
|
+
"is_mutual_contact":"1",
|
49
|
+
"is_plus":"0",
|
50
|
+
"is_staff":"0",
|
51
|
+
"profileurl":"http:\/\/vimeo.com\/judebuffum",
|
52
|
+
"realname":"Jude Buffum",
|
53
|
+
"username":"judebuffum",
|
54
|
+
"videosurl":"http:\/\/vimeo.com\/judebuffum\/videos",
|
55
|
+
"portraits":{
|
56
|
+
"portrait":[
|
57
|
+
{
|
58
|
+
"height":"30",
|
59
|
+
"width":"30",
|
60
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_30.jpg"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"height":"75",
|
64
|
+
"width":"75",
|
65
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_75.jpg"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"height":"100",
|
69
|
+
"width":"100",
|
70
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_100.jpg"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"height":"300",
|
74
|
+
"width":"300",
|
75
|
+
"_content":"http:\/\/images.vimeo.com\/11\/61\/97\/116197445\/116197445_300.jpg"
|
76
|
+
}
|
77
|
+
]
|
78
|
+
}
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"display_name":"stephen steim",
|
82
|
+
"id":"1142655",
|
83
|
+
"is_mutual_contact":"1",
|
84
|
+
"is_plus":"0",
|
85
|
+
"is_staff":"0",
|
86
|
+
"profileurl":"http:\/\/vimeo.com\/user1142655",
|
87
|
+
"realname":"stephen steim",
|
88
|
+
"username":"user1142655",
|
89
|
+
"videosurl":"http:\/\/vimeo.com\/user1142655\/videos",
|
90
|
+
"portraits":{
|
91
|
+
"portrait":[
|
92
|
+
{
|
93
|
+
"height":"30",
|
94
|
+
"width":"30",
|
95
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.30.jpg"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"height":"75",
|
99
|
+
"width":"75",
|
100
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.75.jpg"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"height":"100",
|
104
|
+
"width":"100",
|
105
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.100.jpg"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"height":"300",
|
109
|
+
"width":"300",
|
110
|
+
"_content":"http:\/\/bitcast.vimeo.com\/vimeo\/portraits\/defaults\/d.300.jpg"
|
111
|
+
}
|
112
|
+
]
|
113
|
+
}
|
114
|
+
}
|
115
|
+
]
|
116
|
+
}
|
117
|
+
}
|