trubl 1.4.2
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.
- data/.yardopts +8 -0
- data/LICENSE.md +20 -0
- data/README.md +72 -0
- data/Rakefile +11 -0
- data/lib/trubl.rb +30 -0
- data/lib/trubl/api/category.rb +33 -0
- data/lib/trubl/api/channel.rb +32 -0
- data/lib/trubl/api/conversation.rb +31 -0
- data/lib/trubl/api/hashtags.rb +45 -0
- data/lib/trubl/api/me.rb +68 -0
- data/lib/trubl/api/search.rb +35 -0
- data/lib/trubl/api/streams.rb +14 -0
- data/lib/trubl/api/suggested_users.rb +16 -0
- data/lib/trubl/api/touts.rb +143 -0
- data/lib/trubl/api/users.rb +79 -0
- data/lib/trubl/authorization.rb +7 -0
- data/lib/trubl/authorizations.rb +8 -0
- data/lib/trubl/base.rb +37 -0
- data/lib/trubl/category.rb +7 -0
- data/lib/trubl/channel.rb +7 -0
- data/lib/trubl/client.rb +252 -0
- data/lib/trubl/collection.rb +43 -0
- data/lib/trubl/conversation.rb +7 -0
- data/lib/trubl/hashtag.rb +7 -0
- data/lib/trubl/hashtags.rb +8 -0
- data/lib/trubl/oauth.rb +56 -0
- data/lib/trubl/pagination.rb +17 -0
- data/lib/trubl/tout.rb +29 -0
- data/lib/trubl/touts.rb +8 -0
- data/lib/trubl/user.rb +29 -0
- data/lib/trubl/users.rb +8 -0
- data/lib/trubl/version.rb +16 -0
- data/lib/trubl/widget.rb +15 -0
- data/lib/trubl/widgets.rb +8 -0
- data/spec/fixtures/category_response.json +1 -0
- data/spec/fixtures/category_touts_response.json +689 -0
- data/spec/fixtures/category_users_response.json +1709 -0
- data/spec/fixtures/channel_response.json +1 -0
- data/spec/fixtures/channel_touts_response.json +1 -0
- data/spec/fixtures/channel_users_response.json +1 -0
- data/spec/fixtures/client1_auth_resp.json +1 -0
- data/spec/fixtures/client2_auth_resp.json +1 -0
- data/spec/fixtures/conversation_authors_response.json +37 -0
- data/spec/fixtures/conversation_response.json +41 -0
- data/spec/fixtures/conversation_touts_response.json +107 -0
- data/spec/fixtures/featured_touts_response.json +4249 -0
- data/spec/fixtures/hashtag_response.json +1 -0
- data/spec/fixtures/hashtags_touts_response.json +304 -0
- data/spec/fixtures/latest_touts_response.json +3600 -0
- data/spec/fixtures/like_tout_response.json +109 -0
- data/spec/fixtures/me_authorizations_response.json +14 -0
- data/spec/fixtures/me_fb_sharing_response.json +21 -0
- data/spec/fixtures/me_friends_response.json +121 -0
- data/spec/fixtures/me_retrieve_user_friends_response.json +174 -0
- data/spec/fixtures/me_retrieve_user_liked_touts_response.json +1255 -0
- data/spec/fixtures/me_retrieve_user_touts_response.json +479 -0
- data/spec/fixtures/retout_tout_response.json +99 -0
- data/spec/fixtures/retrieve_me_response.json +35 -0
- data/spec/fixtures/retrieve_tout.json +98 -0
- data/spec/fixtures/retrieve_tout_response.json +98 -0
- data/spec/fixtures/search_hashtags_response.json +100 -0
- data/spec/fixtures/search_touts_response.json +304 -0
- data/spec/fixtures/search_users_response.json +37 -0
- data/spec/fixtures/suggested_hashtags_response.json +137 -0
- data/spec/fixtures/suggested_users_response.json +1 -0
- data/spec/fixtures/test.mp4 +0 -0
- data/spec/fixtures/tout.json +98 -0
- data/spec/fixtures/tout_conversation_response.json +41 -0
- data/spec/fixtures/touts_liked_by_response.json +65 -0
- data/spec/fixtures/touts_liked_by_user_response.json +106 -0
- data/spec/fixtures/touts_me_updates_response.json +357 -0
- data/spec/fixtures/touts_search_results.json +304 -0
- data/spec/fixtures/trending_hashtags_response.json +149 -0
- data/spec/fixtures/unlike_tout_response.json +109 -0
- data/spec/fixtures/update_me_response.json +35 -0
- data/spec/fixtures/user.json +28 -0
- data/spec/fixtures/user_followers.json +1409 -0
- data/spec/fixtures/user_touts_response.json +479 -0
- data/spec/fixtures/user_with_utf8.json +29 -0
- data/spec/fixtures/users.json +58 -0
- data/spec/fixtures/users_search_results.json +37 -0
- data/spec/fixtures/widgets.json +142 -0
- data/spec/spec_helper.rb +61 -0
- data/spec/trubl/api/category_spec.rb +39 -0
- data/spec/trubl/api/channel_spec.rb +39 -0
- data/spec/trubl/api/conversation_spec.rb +38 -0
- data/spec/trubl/api/hashtags_spec.rb +60 -0
- data/spec/trubl/api/me_spec.rb +98 -0
- data/spec/trubl/api/search_spec.rb +40 -0
- data/spec/trubl/api/streams_spec.rb +18 -0
- data/spec/trubl/api/suggested_users_spec.rb +17 -0
- data/spec/trubl/api/touts_spec.rb +215 -0
- data/spec/trubl/api/users_spec.rb +122 -0
- data/spec/trubl/base_spec.rb +88 -0
- data/spec/trubl/category_spec.rb +15 -0
- data/spec/trubl/channel_spec.rb +16 -0
- data/spec/trubl/client_spec.rb +141 -0
- data/spec/trubl/conversation_spec.rb +13 -0
- data/spec/trubl/hashtag_spec.rb +11 -0
- data/spec/trubl/oauth_spec.rb +27 -0
- data/spec/trubl/tout_spec.rb +41 -0
- data/spec/trubl/user_spec.rb +65 -0
- data/spec/trubl_spec.rb +23 -0
- data/trubl.gemspec +41 -0
- metadata +494 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pagination": {
|
|
3
|
+
"current_page": 1,
|
|
4
|
+
"per_page": 5,
|
|
5
|
+
"total_entries": 1156
|
|
6
|
+
},
|
|
7
|
+
"touts": [
|
|
8
|
+
{
|
|
9
|
+
"tout": {
|
|
10
|
+
"created_at": "2012-04-19T17:18:59-07:00",
|
|
11
|
+
"image": {
|
|
12
|
+
"poster": {
|
|
13
|
+
"height": 480,
|
|
14
|
+
"http_url": "http://thumbnails.tout.com/watermark/8a1bfde18d9a7c882abb810342e90462/poster-0.jpg",
|
|
15
|
+
"width": 360
|
|
16
|
+
},
|
|
17
|
+
"thumbnail": {
|
|
18
|
+
"height": 200,
|
|
19
|
+
"http_url": "http://thumbnails.tout.com/watermark/8a1bfde18d9a7c882abb810342e90462/thumbs-0.jpg",
|
|
20
|
+
"width": 150
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"likes_count": 0,
|
|
24
|
+
"privacy": "public",
|
|
25
|
+
"recorded_at": "2012-04-19T17:18:59-07:00",
|
|
26
|
+
"replies_count": 0,
|
|
27
|
+
"retouted_tout": {
|
|
28
|
+
"likes_count": 52,
|
|
29
|
+
"privacy": "public",
|
|
30
|
+
"recorded_at": "2012-04-19T16:32:47-07:00",
|
|
31
|
+
"replies_count": 2,
|
|
32
|
+
"retouts_count": 40,
|
|
33
|
+
"text": "Zach tweaking the new song \"Ocean Waves.\" ",
|
|
34
|
+
"uid": "x56kx5",
|
|
35
|
+
"user": {
|
|
36
|
+
"avatar": {
|
|
37
|
+
"large": {
|
|
38
|
+
"http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/large/asw_sitting_on_step.jpeg"
|
|
39
|
+
},
|
|
40
|
+
"medium": {
|
|
41
|
+
"http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/medium/asw_sitting_on_step.jpeg"
|
|
42
|
+
},
|
|
43
|
+
"profile": {
|
|
44
|
+
"http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/profile/asw_sitting_on_step.jpeg"
|
|
45
|
+
},
|
|
46
|
+
"small": {
|
|
47
|
+
"http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/small/asw_sitting_on_step.jpeg"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"bio": "3 boys touring, making music, loving our fans.",
|
|
51
|
+
"followers_count": 110,
|
|
52
|
+
"friendly_name": "Allstar Weekend",
|
|
53
|
+
"friends_count": 0,
|
|
54
|
+
"fullname": "Allstar Weekend",
|
|
55
|
+
"location": "San Diego & Los Angeles, CA",
|
|
56
|
+
"touts_count": 1,
|
|
57
|
+
"uid": "allstarweekend",
|
|
58
|
+
"username": "AllstarWeekend",
|
|
59
|
+
"verified": false
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"retouts_count": 0,
|
|
63
|
+
"text": "Zach tweaking the new song \"Ocean Waves.\" ",
|
|
64
|
+
"uid": "ewiml3",
|
|
65
|
+
"user": {
|
|
66
|
+
"avatar": {
|
|
67
|
+
"large": {
|
|
68
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/large/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
69
|
+
},
|
|
70
|
+
"medium": {
|
|
71
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/medium/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
72
|
+
},
|
|
73
|
+
"profile": {
|
|
74
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/profile/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
75
|
+
},
|
|
76
|
+
"small": {
|
|
77
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/small/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"bio": "We are the ones that created Tout. @Mention us and we will respond! ",
|
|
81
|
+
"followers_count": 563,
|
|
82
|
+
"friendly_name": "Team Tout",
|
|
83
|
+
"friends_count": 486,
|
|
84
|
+
"fullname": "Team Tout",
|
|
85
|
+
"location": "San Francisco, CA",
|
|
86
|
+
"touts_count": 1158,
|
|
87
|
+
"uid": "teamtout",
|
|
88
|
+
"username": "TeamTout",
|
|
89
|
+
"verified": false
|
|
90
|
+
},
|
|
91
|
+
"video": {
|
|
92
|
+
"duration": 16,
|
|
93
|
+
"mp4": {
|
|
94
|
+
"height": 480,
|
|
95
|
+
"http_url": "http://videos.tout.com/watermark/mp4/8a1bfde18d9a7c882abb810342e90462.mp4",
|
|
96
|
+
"width": 360
|
|
97
|
+
},
|
|
98
|
+
"type": "native"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"tout": {
|
|
104
|
+
"created_at": "2012-04-19T17:16:51-07:00",
|
|
105
|
+
"image": {
|
|
106
|
+
"poster": {
|
|
107
|
+
"height": 272,
|
|
108
|
+
"http_url": "http://thumbnails.tout.com/watermark/92810da34ff02dcbd064b45c33326da3/poster-7.jpg",
|
|
109
|
+
"width": 480
|
|
110
|
+
},
|
|
111
|
+
"thumbnail": {
|
|
112
|
+
"height": 85,
|
|
113
|
+
"http_url": "http://thumbnails.tout.com/watermark/92810da34ff02dcbd064b45c33326da3/thumbs-7.jpg",
|
|
114
|
+
"width": 150
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"likes_count": 0,
|
|
118
|
+
"privacy": "public",
|
|
119
|
+
"recorded_at": "2012-04-19T17:16:51-07:00",
|
|
120
|
+
"replies_count": 0,
|
|
121
|
+
"retouted_tout": {
|
|
122
|
+
"likes_count": 14,
|
|
123
|
+
"privacy": "public",
|
|
124
|
+
"recorded_at": "2012-04-19T14:02:26-07:00",
|
|
125
|
+
"replies_count": 0,
|
|
126
|
+
"retouts_count": 1,
|
|
127
|
+
"text": "MUST SEE!! This kid in our audience today was hilarious!!! Watch the rest here: http://bit.ly/9omyyr VIDEO:",
|
|
128
|
+
"uid": "tyxnsp",
|
|
129
|
+
"user": {
|
|
130
|
+
"avatar": {
|
|
131
|
+
"large": {
|
|
132
|
+
"http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/large/Tout_rfile_picture.jpg"
|
|
133
|
+
},
|
|
134
|
+
"medium": {
|
|
135
|
+
"http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/medium/Tout_rfile_picture.jpg"
|
|
136
|
+
},
|
|
137
|
+
"profile": {
|
|
138
|
+
"http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/profile/Tout_rfile_picture.jpg"
|
|
139
|
+
},
|
|
140
|
+
"small": {
|
|
141
|
+
"http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/small/Tout_rfile_picture.jpg"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"bio": "The official \u201cLIVE! with Kelly\u201d Tout page! Be the first to know the latest from the show. Watch \u201cLIVE! with Kelly\u201d weekday mornings with Kelly Ripa.\r\n\r\n",
|
|
145
|
+
"followers_count": 821,
|
|
146
|
+
"friendly_name": "Live with Kelly",
|
|
147
|
+
"friends_count": 0,
|
|
148
|
+
"fullname": "Live with Kelly",
|
|
149
|
+
"location": "New York",
|
|
150
|
+
"touts_count": 27,
|
|
151
|
+
"uid": "livekelly",
|
|
152
|
+
"username": "LIVEKelly",
|
|
153
|
+
"verified": false
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"retouts_count": 0,
|
|
157
|
+
"text": "MUST SEE!! This kid in our audience today was hilarious!!! Watch the rest here: http://bit.ly/9omyyr VIDEO:",
|
|
158
|
+
"uid": "77pyuw",
|
|
159
|
+
"user": {
|
|
160
|
+
"avatar": {
|
|
161
|
+
"large": {
|
|
162
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/large/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
163
|
+
},
|
|
164
|
+
"medium": {
|
|
165
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/medium/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
166
|
+
},
|
|
167
|
+
"profile": {
|
|
168
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/profile/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
169
|
+
},
|
|
170
|
+
"small": {
|
|
171
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/small/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"bio": "We are the ones that created Tout. @Mention us and we will respond! ",
|
|
175
|
+
"followers_count": 563,
|
|
176
|
+
"friendly_name": "Team Tout",
|
|
177
|
+
"friends_count": 486,
|
|
178
|
+
"fullname": "Team Tout",
|
|
179
|
+
"location": "San Francisco, CA",
|
|
180
|
+
"touts_count": 1158,
|
|
181
|
+
"uid": "teamtout",
|
|
182
|
+
"username": "TeamTout",
|
|
183
|
+
"verified": false
|
|
184
|
+
},
|
|
185
|
+
"video": {
|
|
186
|
+
"duration": 16,
|
|
187
|
+
"mp4": {
|
|
188
|
+
"height": 272,
|
|
189
|
+
"http_url": "http://videos.tout.com/watermark/mp4/92810da34ff02dcbd064b45c33326da3.mp4",
|
|
190
|
+
"width": 480
|
|
191
|
+
},
|
|
192
|
+
"type": "native"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"tout": {
|
|
198
|
+
"created_at": "2012-04-19T17:00:17-07:00",
|
|
199
|
+
"image": {
|
|
200
|
+
"poster": {
|
|
201
|
+
"height": 360,
|
|
202
|
+
"http_url": "http://thumbnails.tout.com/watermark/8891bf5e82a168fb5a4a4ae94be35979/poster-4.jpg",
|
|
203
|
+
"width": 480
|
|
204
|
+
},
|
|
205
|
+
"thumbnail": {
|
|
206
|
+
"height": 112,
|
|
207
|
+
"http_url": "http://thumbnails.tout.com/watermark/8891bf5e82a168fb5a4a4ae94be35979/thumbs-4.jpg",
|
|
208
|
+
"width": 150
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"likes_count": 0,
|
|
212
|
+
"privacy": "public",
|
|
213
|
+
"recorded_at": "2012-04-19T17:00:17-07:00",
|
|
214
|
+
"replies_count": 0,
|
|
215
|
+
"retouted_tout": {
|
|
216
|
+
"likes_count": 1,
|
|
217
|
+
"privacy": "public",
|
|
218
|
+
"recorded_at": "2012-04-19T16:27:36-07:00",
|
|
219
|
+
"replies_count": 0,
|
|
220
|
+
"retouts_count": 2,
|
|
221
|
+
"text": "A look at the ground-breaking of 49ers stadium before the official ground-breaking.",
|
|
222
|
+
"uid": "yjohmn",
|
|
223
|
+
"user": {
|
|
224
|
+
"avatar": {
|
|
225
|
+
"large": {
|
|
226
|
+
"http_url": "http://avatars.tout.com/u/d014758cb5cd2791e342d92506a8f9c0/large/MaoiccoAvatar.jpg"
|
|
227
|
+
},
|
|
228
|
+
"medium": {
|
|
229
|
+
"http_url": "http://avatars.tout.com/u/d014758cb5cd2791e342d92506a8f9c0/medium/MaoiccoAvatar.jpg"
|
|
230
|
+
},
|
|
231
|
+
"profile": {
|
|
232
|
+
"http_url": "http://avatars.tout.com/u/d014758cb5cd2791e342d92506a8f9c0/profile/MaoiccoAvatar.jpg"
|
|
233
|
+
},
|
|
234
|
+
"small": {
|
|
235
|
+
"http_url": "http://avatars.tout.com/u/d014758cb5cd2791e342d92506a8f9c0/small/MaoiccoAvatar.jpg"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"bio": "Matt Maiocco is the 49ers Insider for CSN Bay Area",
|
|
239
|
+
"followers_count": 37,
|
|
240
|
+
"friendly_name": "maioccocsn",
|
|
241
|
+
"friends_count": 3,
|
|
242
|
+
"fullname": "",
|
|
243
|
+
"location": "",
|
|
244
|
+
"touts_count": 3,
|
|
245
|
+
"uid": "maioccocsn",
|
|
246
|
+
"username": "maioccocsn",
|
|
247
|
+
"verified": false
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"retouts_count": 0,
|
|
251
|
+
"text": "A look at the ground-breaking of 49ers stadium before the official ground-breaking.",
|
|
252
|
+
"uid": "149t5e",
|
|
253
|
+
"user": {
|
|
254
|
+
"avatar": {
|
|
255
|
+
"large": {
|
|
256
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/large/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
257
|
+
},
|
|
258
|
+
"medium": {
|
|
259
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/medium/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
260
|
+
},
|
|
261
|
+
"profile": {
|
|
262
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/profile/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
263
|
+
},
|
|
264
|
+
"small": {
|
|
265
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/small/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"bio": "We are the ones that created Tout. @Mention us and we will respond! ",
|
|
269
|
+
"followers_count": 563,
|
|
270
|
+
"friendly_name": "Team Tout",
|
|
271
|
+
"friends_count": 486,
|
|
272
|
+
"fullname": "Team Tout",
|
|
273
|
+
"location": "San Francisco, CA",
|
|
274
|
+
"touts_count": 1158,
|
|
275
|
+
"uid": "teamtout",
|
|
276
|
+
"username": "TeamTout",
|
|
277
|
+
"verified": false
|
|
278
|
+
},
|
|
279
|
+
"video": {
|
|
280
|
+
"duration": 16,
|
|
281
|
+
"mp4": {
|
|
282
|
+
"height": 360,
|
|
283
|
+
"http_url": "http://videos.tout.com/watermark/mp4/8891bf5e82a168fb5a4a4ae94be35979.mp4",
|
|
284
|
+
"width": 480
|
|
285
|
+
},
|
|
286
|
+
"type": "native"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"tout": {
|
|
292
|
+
"created_at": "2012-04-19T13:43:49-07:00",
|
|
293
|
+
"image": {
|
|
294
|
+
"poster": {
|
|
295
|
+
"height": 480,
|
|
296
|
+
"http_url": "http://thumbnails.tout.com/watermark/ca9367b4e00819df10c40a7dd7eab558/poster-15.jpg",
|
|
297
|
+
"width": 360
|
|
298
|
+
},
|
|
299
|
+
"thumbnail": {
|
|
300
|
+
"height": 200,
|
|
301
|
+
"http_url": "http://thumbnails.tout.com/watermark/ca9367b4e00819df10c40a7dd7eab558/thumbs-15.jpg",
|
|
302
|
+
"width": 150
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"likes_count": 0,
|
|
306
|
+
"privacy": "public",
|
|
307
|
+
"recorded_at": "2012-04-19T13:43:49-07:00",
|
|
308
|
+
"replies_count": 0,
|
|
309
|
+
"retouted_tout": {
|
|
310
|
+
"likes_count": 17,
|
|
311
|
+
"privacy": "public",
|
|
312
|
+
"recorded_at": "2012-04-19T12:47:21-07:00",
|
|
313
|
+
"replies_count": 1,
|
|
314
|
+
"retouts_count": 6,
|
|
315
|
+
"text": "Enjoy Dallas!",
|
|
316
|
+
"uid": "ls5ksr",
|
|
317
|
+
"user": {
|
|
318
|
+
"avatar": {
|
|
319
|
+
"large": {
|
|
320
|
+
"http_url": "http://avatars.tout.com/u/9a208df84ff94dcd0bd0d7b7f4f92b3e/large/0A310DC3-80F4-46A5-AC1D-93457CE7419C.png"
|
|
321
|
+
},
|
|
322
|
+
"medium": {
|
|
323
|
+
"http_url": "http://avatars.tout.com/u/9a208df84ff94dcd0bd0d7b7f4f92b3e/medium/0A310DC3-80F4-46A5-AC1D-93457CE7419C.png"
|
|
324
|
+
},
|
|
325
|
+
"profile": {
|
|
326
|
+
"http_url": "http://avatars.tout.com/u/9a208df84ff94dcd0bd0d7b7f4f92b3e/profile/0A310DC3-80F4-46A5-AC1D-93457CE7419C.png"
|
|
327
|
+
},
|
|
328
|
+
"small": {
|
|
329
|
+
"http_url": "http://avatars.tout.com/u/9a208df84ff94dcd0bd0d7b7f4f92b3e/small/0A310DC3-80F4-46A5-AC1D-93457CE7419C.png"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"bio": null,
|
|
333
|
+
"followers_count": 34,
|
|
334
|
+
"friendly_name": "Tabatha Coffey",
|
|
335
|
+
"friends_count": 5,
|
|
336
|
+
"fullname": "Tabatha Coffey",
|
|
337
|
+
"location": null,
|
|
338
|
+
"touts_count": 1,
|
|
339
|
+
"uid": "tabathacoffey",
|
|
340
|
+
"username": "TabathaCoffey",
|
|
341
|
+
"verified": false
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"retouts_count": 0,
|
|
345
|
+
"text": "Enjoy Dallas!",
|
|
346
|
+
"uid": "r1l58s",
|
|
347
|
+
"user": {
|
|
348
|
+
"avatar": {
|
|
349
|
+
"large": {
|
|
350
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/large/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
351
|
+
},
|
|
352
|
+
"medium": {
|
|
353
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/medium/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
354
|
+
},
|
|
355
|
+
"profile": {
|
|
356
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/profile/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
357
|
+
},
|
|
358
|
+
"small": {
|
|
359
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/small/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"bio": "We are the ones that created Tout. @Mention us and we will respond! ",
|
|
363
|
+
"followers_count": 563,
|
|
364
|
+
"friendly_name": "Team Tout",
|
|
365
|
+
"friends_count": 486,
|
|
366
|
+
"fullname": "Team Tout",
|
|
367
|
+
"location": "San Francisco, CA",
|
|
368
|
+
"touts_count": 1158,
|
|
369
|
+
"uid": "teamtout",
|
|
370
|
+
"username": "TeamTout",
|
|
371
|
+
"verified": false
|
|
372
|
+
},
|
|
373
|
+
"video": {
|
|
374
|
+
"duration": 16,
|
|
375
|
+
"mp4": {
|
|
376
|
+
"height": 480,
|
|
377
|
+
"http_url": "http://videos.tout.com/watermark/mp4/ca9367b4e00819df10c40a7dd7eab558.mp4",
|
|
378
|
+
"width": 360
|
|
379
|
+
},
|
|
380
|
+
"type": "native"
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"tout": {
|
|
386
|
+
"created_at": "2012-04-19T12:41:02-07:00",
|
|
387
|
+
"image": {
|
|
388
|
+
"poster": {
|
|
389
|
+
"height": 480,
|
|
390
|
+
"http_url": "http://thumbnails.tout.com/watermark/0ded4b4f0b1fa14f811ebe1079bac401/poster-2.jpg",
|
|
391
|
+
"width": 360
|
|
392
|
+
},
|
|
393
|
+
"thumbnail": {
|
|
394
|
+
"height": 200,
|
|
395
|
+
"http_url": "http://thumbnails.tout.com/watermark/0ded4b4f0b1fa14f811ebe1079bac401/thumbs-2.jpg",
|
|
396
|
+
"width": 150
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"likes_count": 0,
|
|
400
|
+
"privacy": "public",
|
|
401
|
+
"recorded_at": "2012-04-19T12:41:02-07:00",
|
|
402
|
+
"replies_count": 0,
|
|
403
|
+
"retouted_tout": {
|
|
404
|
+
"likes_count": 4,
|
|
405
|
+
"privacy": "public",
|
|
406
|
+
"recorded_at": "2012-04-19T12:26:53-07:00",
|
|
407
|
+
"replies_count": 0,
|
|
408
|
+
"retouts_count": 1,
|
|
409
|
+
"text": "#mavsbattlecry",
|
|
410
|
+
"uid": "wcmnz9",
|
|
411
|
+
"user": {
|
|
412
|
+
"avatar": {
|
|
413
|
+
"large": {
|
|
414
|
+
"http_url": "http://avatars.tout.com/u/8178f052efd19f43ecaabd6a99c2dfe9/large/DallasMavsAvatar.jpg"
|
|
415
|
+
},
|
|
416
|
+
"medium": {
|
|
417
|
+
"http_url": "http://avatars.tout.com/u/8178f052efd19f43ecaabd6a99c2dfe9/medium/DallasMavsAvatar.jpg"
|
|
418
|
+
},
|
|
419
|
+
"profile": {
|
|
420
|
+
"http_url": "http://avatars.tout.com/u/8178f052efd19f43ecaabd6a99c2dfe9/profile/DallasMavsAvatar.jpg"
|
|
421
|
+
},
|
|
422
|
+
"small": {
|
|
423
|
+
"http_url": "http://avatars.tout.com/u/8178f052efd19f43ecaabd6a99c2dfe9/small/DallasMavsAvatar.jpg"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"bio": " The Dallas Mavericks are members of the Southwest Division of the Western Conference of the National Basketball Association (NBA), and the reigning NBA champions",
|
|
427
|
+
"followers_count": 233,
|
|
428
|
+
"friendly_name": "Dallas Mavericks",
|
|
429
|
+
"friends_count": 7,
|
|
430
|
+
"fullname": "Dallas Mavericks",
|
|
431
|
+
"location": "",
|
|
432
|
+
"touts_count": 7,
|
|
433
|
+
"uid": "dallasmavs",
|
|
434
|
+
"username": "dallasmavs",
|
|
435
|
+
"verified": false
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"retouts_count": 0,
|
|
439
|
+
"text": "#MavsBattleCry #fb",
|
|
440
|
+
"uid": "5mvleq",
|
|
441
|
+
"user": {
|
|
442
|
+
"avatar": {
|
|
443
|
+
"large": {
|
|
444
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/large/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
445
|
+
},
|
|
446
|
+
"medium": {
|
|
447
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/medium/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
448
|
+
},
|
|
449
|
+
"profile": {
|
|
450
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/profile/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
451
|
+
},
|
|
452
|
+
"small": {
|
|
453
|
+
"http_url": "http://avatars.tout.com/u/b49e63bc2e07da02c0d423f66a467a88/small/TOUTLOGO_300dpi_RGB_9x7.jpg"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"bio": "We are the ones that created Tout. @Mention us and we will respond! ",
|
|
457
|
+
"followers_count": 563,
|
|
458
|
+
"friendly_name": "Team Tout",
|
|
459
|
+
"friends_count": 486,
|
|
460
|
+
"fullname": "Team Tout",
|
|
461
|
+
"location": "San Francisco, CA",
|
|
462
|
+
"touts_count": 1158,
|
|
463
|
+
"uid": "teamtout",
|
|
464
|
+
"username": "TeamTout",
|
|
465
|
+
"verified": false
|
|
466
|
+
},
|
|
467
|
+
"video": {
|
|
468
|
+
"duration": 7,
|
|
469
|
+
"mp4": {
|
|
470
|
+
"height": 480,
|
|
471
|
+
"http_url": "http://videos.tout.com/watermark/mp4/0ded4b4f0b1fa14f811ebe1079bac401.mp4",
|
|
472
|
+
"width": 360
|
|
473
|
+
},
|
|
474
|
+
"type": "native"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
]
|
|
479
|
+
}
|