trubl 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/.yardopts +8 -0
  2. data/LICENSE.md +20 -0
  3. data/README.md +72 -0
  4. data/Rakefile +11 -0
  5. data/lib/trubl.rb +30 -0
  6. data/lib/trubl/api/category.rb +33 -0
  7. data/lib/trubl/api/channel.rb +32 -0
  8. data/lib/trubl/api/conversation.rb +31 -0
  9. data/lib/trubl/api/hashtags.rb +45 -0
  10. data/lib/trubl/api/me.rb +68 -0
  11. data/lib/trubl/api/search.rb +35 -0
  12. data/lib/trubl/api/streams.rb +14 -0
  13. data/lib/trubl/api/suggested_users.rb +16 -0
  14. data/lib/trubl/api/touts.rb +143 -0
  15. data/lib/trubl/api/users.rb +79 -0
  16. data/lib/trubl/authorization.rb +7 -0
  17. data/lib/trubl/authorizations.rb +8 -0
  18. data/lib/trubl/base.rb +37 -0
  19. data/lib/trubl/category.rb +7 -0
  20. data/lib/trubl/channel.rb +7 -0
  21. data/lib/trubl/client.rb +252 -0
  22. data/lib/trubl/collection.rb +43 -0
  23. data/lib/trubl/conversation.rb +7 -0
  24. data/lib/trubl/hashtag.rb +7 -0
  25. data/lib/trubl/hashtags.rb +8 -0
  26. data/lib/trubl/oauth.rb +56 -0
  27. data/lib/trubl/pagination.rb +17 -0
  28. data/lib/trubl/tout.rb +29 -0
  29. data/lib/trubl/touts.rb +8 -0
  30. data/lib/trubl/user.rb +29 -0
  31. data/lib/trubl/users.rb +8 -0
  32. data/lib/trubl/version.rb +16 -0
  33. data/lib/trubl/widget.rb +15 -0
  34. data/lib/trubl/widgets.rb +8 -0
  35. data/spec/fixtures/category_response.json +1 -0
  36. data/spec/fixtures/category_touts_response.json +689 -0
  37. data/spec/fixtures/category_users_response.json +1709 -0
  38. data/spec/fixtures/channel_response.json +1 -0
  39. data/spec/fixtures/channel_touts_response.json +1 -0
  40. data/spec/fixtures/channel_users_response.json +1 -0
  41. data/spec/fixtures/client1_auth_resp.json +1 -0
  42. data/spec/fixtures/client2_auth_resp.json +1 -0
  43. data/spec/fixtures/conversation_authors_response.json +37 -0
  44. data/spec/fixtures/conversation_response.json +41 -0
  45. data/spec/fixtures/conversation_touts_response.json +107 -0
  46. data/spec/fixtures/featured_touts_response.json +4249 -0
  47. data/spec/fixtures/hashtag_response.json +1 -0
  48. data/spec/fixtures/hashtags_touts_response.json +304 -0
  49. data/spec/fixtures/latest_touts_response.json +3600 -0
  50. data/spec/fixtures/like_tout_response.json +109 -0
  51. data/spec/fixtures/me_authorizations_response.json +14 -0
  52. data/spec/fixtures/me_fb_sharing_response.json +21 -0
  53. data/spec/fixtures/me_friends_response.json +121 -0
  54. data/spec/fixtures/me_retrieve_user_friends_response.json +174 -0
  55. data/spec/fixtures/me_retrieve_user_liked_touts_response.json +1255 -0
  56. data/spec/fixtures/me_retrieve_user_touts_response.json +479 -0
  57. data/spec/fixtures/retout_tout_response.json +99 -0
  58. data/spec/fixtures/retrieve_me_response.json +35 -0
  59. data/spec/fixtures/retrieve_tout.json +98 -0
  60. data/spec/fixtures/retrieve_tout_response.json +98 -0
  61. data/spec/fixtures/search_hashtags_response.json +100 -0
  62. data/spec/fixtures/search_touts_response.json +304 -0
  63. data/spec/fixtures/search_users_response.json +37 -0
  64. data/spec/fixtures/suggested_hashtags_response.json +137 -0
  65. data/spec/fixtures/suggested_users_response.json +1 -0
  66. data/spec/fixtures/test.mp4 +0 -0
  67. data/spec/fixtures/tout.json +98 -0
  68. data/spec/fixtures/tout_conversation_response.json +41 -0
  69. data/spec/fixtures/touts_liked_by_response.json +65 -0
  70. data/spec/fixtures/touts_liked_by_user_response.json +106 -0
  71. data/spec/fixtures/touts_me_updates_response.json +357 -0
  72. data/spec/fixtures/touts_search_results.json +304 -0
  73. data/spec/fixtures/trending_hashtags_response.json +149 -0
  74. data/spec/fixtures/unlike_tout_response.json +109 -0
  75. data/spec/fixtures/update_me_response.json +35 -0
  76. data/spec/fixtures/user.json +28 -0
  77. data/spec/fixtures/user_followers.json +1409 -0
  78. data/spec/fixtures/user_touts_response.json +479 -0
  79. data/spec/fixtures/user_with_utf8.json +29 -0
  80. data/spec/fixtures/users.json +58 -0
  81. data/spec/fixtures/users_search_results.json +37 -0
  82. data/spec/fixtures/widgets.json +142 -0
  83. data/spec/spec_helper.rb +61 -0
  84. data/spec/trubl/api/category_spec.rb +39 -0
  85. data/spec/trubl/api/channel_spec.rb +39 -0
  86. data/spec/trubl/api/conversation_spec.rb +38 -0
  87. data/spec/trubl/api/hashtags_spec.rb +60 -0
  88. data/spec/trubl/api/me_spec.rb +98 -0
  89. data/spec/trubl/api/search_spec.rb +40 -0
  90. data/spec/trubl/api/streams_spec.rb +18 -0
  91. data/spec/trubl/api/suggested_users_spec.rb +17 -0
  92. data/spec/trubl/api/touts_spec.rb +215 -0
  93. data/spec/trubl/api/users_spec.rb +122 -0
  94. data/spec/trubl/base_spec.rb +88 -0
  95. data/spec/trubl/category_spec.rb +15 -0
  96. data/spec/trubl/channel_spec.rb +16 -0
  97. data/spec/trubl/client_spec.rb +141 -0
  98. data/spec/trubl/conversation_spec.rb +13 -0
  99. data/spec/trubl/hashtag_spec.rb +11 -0
  100. data/spec/trubl/oauth_spec.rb +27 -0
  101. data/spec/trubl/tout_spec.rb +41 -0
  102. data/spec/trubl/user_spec.rb +65 -0
  103. data/spec/trubl_spec.rb +23 -0
  104. data/trubl.gemspec +41 -0
  105. metadata +494 -0
@@ -0,0 +1,357 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 5,
5
+ "total_entries": 291
6
+ },
7
+ "touts": [
8
+ {
9
+ "tout": {
10
+ "created_at": "2012-04-20T05:11:56-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
+ "liked": false,
24
+ "likes_count": 0,
25
+ "privacy": "public",
26
+ "recorded_at": "2012-04-20T05:11:56-07:00",
27
+ "replies_count": 0,
28
+ "retouted_tout": {
29
+ "liked": false,
30
+ "likes_count": 52,
31
+ "privacy": "public",
32
+ "recorded_at": "2012-04-19T16:32:47-07:00",
33
+ "replies_count": 2,
34
+ "retouts_count": 40,
35
+ "text": "Zach tweaking the new song \"Ocean Waves.\" ",
36
+ "uid": "x56kx5",
37
+ "user": {
38
+ "avatar": {
39
+ "large": {
40
+ "http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/large/asw_sitting_on_step.jpeg"
41
+ },
42
+ "medium": {
43
+ "http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/medium/asw_sitting_on_step.jpeg"
44
+ },
45
+ "profile": {
46
+ "http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/profile/asw_sitting_on_step.jpeg"
47
+ },
48
+ "small": {
49
+ "http_url": "http://avatars.tout.com/u/ebec6da88e9457f2a765f019d02cea81/small/asw_sitting_on_step.jpeg"
50
+ }
51
+ },
52
+ "bio": "3 boys touring, making music, loving our fans.",
53
+ "followed_by": false,
54
+ "followers_count": 110,
55
+ "following": false,
56
+ "friendly_name": "Allstar Weekend",
57
+ "friends_count": 0,
58
+ "fullname": "Allstar Weekend",
59
+ "location": "San Diego & Los Angeles, CA",
60
+ "touts_count": 1,
61
+ "uid": "allstarweekend",
62
+ "username": "AllstarWeekend",
63
+ "verified": false
64
+ }
65
+ },
66
+ "retouts_count": 0,
67
+ "text": "Zach tweaking the new song \"Ocean Waves.\" ",
68
+ "uid": "f8duad",
69
+ "user": {
70
+ "avatar": {
71
+ "large": {
72
+ "http_url": "http://avatars.tout.com/u/4b5c07172a0757d7ffa85a4398b3e5e5/large/84AC5FBD-51F9-4918-82E7-7DC2F8407A10.png"
73
+ },
74
+ "medium": {
75
+ "http_url": "http://avatars.tout.com/u/4b5c07172a0757d7ffa85a4398b3e5e5/medium/84AC5FBD-51F9-4918-82E7-7DC2F8407A10.png"
76
+ },
77
+ "profile": {
78
+ "http_url": "http://avatars.tout.com/u/4b5c07172a0757d7ffa85a4398b3e5e5/profile/84AC5FBD-51F9-4918-82E7-7DC2F8407A10.png"
79
+ },
80
+ "small": {
81
+ "http_url": "http://avatars.tout.com/u/4b5c07172a0757d7ffa85a4398b3e5e5/small/84AC5FBD-51F9-4918-82E7-7DC2F8407A10.png"
82
+ }
83
+ },
84
+ "bio": "",
85
+ "followed_by": false,
86
+ "followers_count": 218,
87
+ "following": true,
88
+ "friendly_name": "Melissa Breen Torykian",
89
+ "friends_count": 283,
90
+ "fullname": "Melissa Breen Torykian",
91
+ "location": "",
92
+ "touts_count": 1556,
93
+ "uid": "mbreeno",
94
+ "username": "mbreeno",
95
+ "verified": false
96
+ },
97
+ "video": {
98
+ "duration": 16,
99
+ "mp4": {
100
+ "height": 480,
101
+ "http_url": "http://videos.tout.com/watermark/mp4/8a1bfde18d9a7c882abb810342e90462.mp4",
102
+ "width": 360
103
+ },
104
+ "type": "native"
105
+ }
106
+ }
107
+ },
108
+ {
109
+ "tout": {
110
+ "created_at": "2012-04-20T01:57:27-07:00",
111
+ "image": {
112
+ "poster": {
113
+ "height": 360,
114
+ "http_url": "http://thumbnails.tout.com/watermark/6a4e19ead4fff1d6ad33c64315f367aa/poster-2.jpg",
115
+ "width": 480
116
+ },
117
+ "thumbnail": {
118
+ "height": 112,
119
+ "http_url": "http://thumbnails.tout.com/watermark/6a4e19ead4fff1d6ad33c64315f367aa/thumbs-2.jpg",
120
+ "width": 150
121
+ }
122
+ },
123
+ "liked": false,
124
+ "likes_count": 1,
125
+ "privacy": "public",
126
+ "recorded_at": "2012-04-20T01:56:43-07:00",
127
+ "replies_count": 0,
128
+ "retouts_count": 0,
129
+ "text": "",
130
+ "uid": "i419qr",
131
+ "user": {
132
+ "avatar": {
133
+ "large": {
134
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/large/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
135
+ },
136
+ "medium": {
137
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/medium/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
138
+ },
139
+ "profile": {
140
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/profile/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
141
+ },
142
+ "small": {
143
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/small/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
144
+ }
145
+ },
146
+ "bio": "* Member of the #ToutElite\r\n* Member of #ToutClub1000\r\n* I may or may not work at Tout so if you've got any questions, or just want some fun ideas for Touting I'm your guy!",
147
+ "followed_by": false,
148
+ "followers_count": 359,
149
+ "following": true,
150
+ "friendly_name": "Jonathan Abramson",
151
+ "friends_count": 948,
152
+ "fullname": "Jonathan Abramson",
153
+ "location": "San Francisco, CA",
154
+ "touts_count": 1093,
155
+ "uid": "jonathantouts",
156
+ "username": "JonathanTouts",
157
+ "verified": true
158
+ },
159
+ "video": {
160
+ "duration": 16,
161
+ "mp4": {
162
+ "height": 360,
163
+ "http_url": "http://videos.tout.com/watermark/mp4/6a4e19ead4fff1d6ad33c64315f367aa.mp4",
164
+ "width": 480
165
+ },
166
+ "type": "native"
167
+ }
168
+ }
169
+ },
170
+ {
171
+ "tout": {
172
+ "created_at": "2012-04-20T01:56:40-07:00",
173
+ "image": {
174
+ "poster": {
175
+ "height": 360,
176
+ "http_url": "http://thumbnails.tout.com/watermark/7982789f912acbc0934973fcb14c60cd/poster-1.jpg",
177
+ "width": 480
178
+ },
179
+ "thumbnail": {
180
+ "height": 112,
181
+ "http_url": "http://thumbnails.tout.com/watermark/7982789f912acbc0934973fcb14c60cd/thumbs-1.jpg",
182
+ "width": 150
183
+ }
184
+ },
185
+ "liked": false,
186
+ "likes_count": 2,
187
+ "privacy": "public",
188
+ "recorded_at": "2012-04-20T01:54:18-07:00",
189
+ "replies_count": 0,
190
+ "retouts_count": 0,
191
+ "text": "",
192
+ "uid": "mpsjfa",
193
+ "user": {
194
+ "avatar": {
195
+ "large": {
196
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/large/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
197
+ },
198
+ "medium": {
199
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/medium/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
200
+ },
201
+ "profile": {
202
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/profile/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
203
+ },
204
+ "small": {
205
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/small/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
206
+ }
207
+ },
208
+ "bio": "* Member of the #ToutElite\r\n* Member of #ToutClub1000\r\n* I may or may not work at Tout so if you've got any questions, or just want some fun ideas for Touting I'm your guy!",
209
+ "followed_by": false,
210
+ "followers_count": 359,
211
+ "following": true,
212
+ "friendly_name": "Jonathan Abramson",
213
+ "friends_count": 948,
214
+ "fullname": "Jonathan Abramson",
215
+ "location": "San Francisco, CA",
216
+ "touts_count": 1093,
217
+ "uid": "jonathantouts",
218
+ "username": "JonathanTouts",
219
+ "verified": true
220
+ },
221
+ "video": {
222
+ "duration": 11,
223
+ "mp4": {
224
+ "height": 360,
225
+ "http_url": "http://videos.tout.com/watermark/mp4/7982789f912acbc0934973fcb14c60cd.mp4",
226
+ "width": 480
227
+ },
228
+ "type": "native"
229
+ }
230
+ }
231
+ },
232
+ {
233
+ "tout": {
234
+ "created_at": "2012-04-20T01:56:20-07:00",
235
+ "image": {
236
+ "poster": {
237
+ "height": 360,
238
+ "http_url": "http://thumbnails.tout.com/watermark/2078ab3eadd96005029726e38d4ecdbe/poster-3.jpg",
239
+ "width": 480
240
+ },
241
+ "thumbnail": {
242
+ "height": 112,
243
+ "http_url": "http://thumbnails.tout.com/watermark/2078ab3eadd96005029726e38d4ecdbe/thumbs-3.jpg",
244
+ "width": 150
245
+ }
246
+ },
247
+ "liked": false,
248
+ "likes_count": 2,
249
+ "privacy": "public",
250
+ "recorded_at": "2012-04-20T01:54:02-07:00",
251
+ "replies_count": 0,
252
+ "retouts_count": 0,
253
+ "text": "",
254
+ "uid": "zcws9f",
255
+ "user": {
256
+ "avatar": {
257
+ "large": {
258
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/large/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
259
+ },
260
+ "medium": {
261
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/medium/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
262
+ },
263
+ "profile": {
264
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/profile/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
265
+ },
266
+ "small": {
267
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/small/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
268
+ }
269
+ },
270
+ "bio": "* Member of the #ToutElite\r\n* Member of #ToutClub1000\r\n* I may or may not work at Tout so if you've got any questions, or just want some fun ideas for Touting I'm your guy!",
271
+ "followed_by": false,
272
+ "followers_count": 359,
273
+ "following": true,
274
+ "friendly_name": "Jonathan Abramson",
275
+ "friends_count": 948,
276
+ "fullname": "Jonathan Abramson",
277
+ "location": "San Francisco, CA",
278
+ "touts_count": 1093,
279
+ "uid": "jonathantouts",
280
+ "username": "JonathanTouts",
281
+ "verified": true
282
+ },
283
+ "video": {
284
+ "duration": 16,
285
+ "mp4": {
286
+ "height": 360,
287
+ "http_url": "http://videos.tout.com/watermark/mp4/2078ab3eadd96005029726e38d4ecdbe.mp4",
288
+ "width": 480
289
+ },
290
+ "type": "native"
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "tout": {
296
+ "created_at": "2012-04-20T01:54:00-07:00",
297
+ "image": {
298
+ "poster": {
299
+ "height": 360,
300
+ "http_url": "http://thumbnails.tout.com/watermark/fd6344db89179f46f038afc7cd0276af/poster-1.jpg",
301
+ "width": 480
302
+ },
303
+ "thumbnail": {
304
+ "height": 112,
305
+ "http_url": "http://thumbnails.tout.com/watermark/fd6344db89179f46f038afc7cd0276af/thumbs-1.jpg",
306
+ "width": 150
307
+ }
308
+ },
309
+ "liked": false,
310
+ "likes_count": 2,
311
+ "privacy": "public",
312
+ "recorded_at": "2012-04-20T01:53:20-07:00",
313
+ "replies_count": 0,
314
+ "retouts_count": 0,
315
+ "text": "That's a good Tout",
316
+ "uid": "08cv2r",
317
+ "user": {
318
+ "avatar": {
319
+ "large": {
320
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/large/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
321
+ },
322
+ "medium": {
323
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/medium/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
324
+ },
325
+ "profile": {
326
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/profile/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
327
+ },
328
+ "small": {
329
+ "http_url": "http://avatars.tout.com/u/3ad378fcc5a0edab9fb0784447e9a655/small/E6CA2185-D27E-4B01-B227-D0CCA8C6262C.png"
330
+ }
331
+ },
332
+ "bio": "* Member of the #ToutElite\r\n* Member of #ToutClub1000\r\n* I may or may not work at Tout so if you've got any questions, or just want some fun ideas for Touting I'm your guy!",
333
+ "followed_by": false,
334
+ "followers_count": 359,
335
+ "following": true,
336
+ "friendly_name": "Jonathan Abramson",
337
+ "friends_count": 948,
338
+ "fullname": "Jonathan Abramson",
339
+ "location": "San Francisco, CA",
340
+ "touts_count": 1093,
341
+ "uid": "jonathantouts",
342
+ "username": "JonathanTouts",
343
+ "verified": true
344
+ },
345
+ "video": {
346
+ "duration": 16,
347
+ "mp4": {
348
+ "height": 360,
349
+ "http_url": "http://videos.tout.com/watermark/mp4/fd6344db89179f46f038afc7cd0276af.mp4",
350
+ "width": 480
351
+ },
352
+ "type": "native"
353
+ }
354
+ }
355
+ }
356
+ ]
357
+ }
@@ -0,0 +1,304 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 5,
5
+ "total_entries": 867
6
+ },
7
+ "touts": [
8
+ {
9
+ "tout": {
10
+ "created_at": "2012-04-19T11:57:28-07:00",
11
+ "image": {
12
+ "poster": {
13
+ "height": 480,
14
+ "http_url": "http://thumbnails.tout.com/watermark/c4ef2fbd314cdc3e46d7b53f37edb089/poster-8.jpg",
15
+ "width": 360
16
+ },
17
+ "thumbnail": {
18
+ "height": 200,
19
+ "http_url": "http://thumbnails.tout.com/watermark/c4ef2fbd314cdc3e46d7b53f37edb089/thumbs-8.jpg",
20
+ "width": 150
21
+ }
22
+ },
23
+ "likes_count": 0,
24
+ "privacy": "public",
25
+ "recorded_at": "2012-04-19T11:55:22-07:00",
26
+ "replies_count": 0,
27
+ "retouts_count": 0,
28
+ "text": "Level Up is here in Staten Island! #Levelup #OSM #Shaq",
29
+ "uid": "l6op1b",
30
+ "user": {
31
+ "avatar": {
32
+ "large": {
33
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/large/Al_close_up.jpeg"
34
+ },
35
+ "medium": {
36
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/medium/Al_close_up.jpeg"
37
+ },
38
+ "profile": {
39
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/profile/Al_close_up.jpeg"
40
+ },
41
+ "small": {
42
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/small/Al_close_up.jpeg"
43
+ }
44
+ },
45
+ "bio": " \"Soup Is My Passion\"\r\nLong before Seinfeld, Al Yeganeh, \"The SoupMan\" created his critically acclaimed magical recipes in his landmark store in NYC. Even the NY Times referred to Al's masterpieces as \"Art\", Not Soup\". Each and every unique variety is slow-cooked to perfection and made with only the finest ingredients, exotic herbs and sprices. ",
46
+ "followers_count": 10,
47
+ "friendly_name": "OriginalSoupMan",
48
+ "friends_count": 2,
49
+ "fullname": "",
50
+ "location": "New York",
51
+ "touts_count": 12,
52
+ "uid": "originalsoupman",
53
+ "username": "OriginalSoupMan",
54
+ "verified": false
55
+ },
56
+ "video": {
57
+ "duration": 16,
58
+ "mp4": {
59
+ "height": 480,
60
+ "http_url": "http://videos.tout.com/watermark/mp4/c4ef2fbd314cdc3e46d7b53f37edb089.mp4",
61
+ "width": 360
62
+ },
63
+ "type": "native"
64
+ }
65
+ }
66
+ },
67
+ {
68
+ "tout": {
69
+ "created_at": "2012-04-18T12:57:26-07:00",
70
+ "image": {
71
+ "poster": {
72
+ "height": 360,
73
+ "http_url": "http://thumbnails.tout.com/watermark/2d4fc9e442c1e826c2acd3ad9320762a/poster-2.jpg",
74
+ "width": 640
75
+ },
76
+ "thumbnail": {
77
+ "height": 84,
78
+ "http_url": "http://thumbnails.tout.com/watermark/2d4fc9e442c1e826c2acd3ad9320762a/thumbs-2.jpg",
79
+ "width": 150
80
+ }
81
+ },
82
+ "likes_count": 0,
83
+ "privacy": "public",
84
+ "recorded_at": "2012-04-18T12:57:25-07:00",
85
+ "replies_count": 0,
86
+ "retouts_count": 0,
87
+ "text": "James asks Shaq \"age when he first dunked.\"",
88
+ "uid": "5v61pa",
89
+ "user": {
90
+ "avatar": {
91
+ "large": {
92
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/large/NBA_TV_Primary_1_.jpg"
93
+ },
94
+ "medium": {
95
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/medium/NBA_TV_Primary_1_.jpg"
96
+ },
97
+ "profile": {
98
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/profile/NBA_TV_Primary_1_.jpg"
99
+ },
100
+ "small": {
101
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/small/NBA_TV_Primary_1_.jpg"
102
+ }
103
+ },
104
+ "bio": "",
105
+ "followers_count": 11,
106
+ "friendly_name": "NBA TV",
107
+ "friends_count": 1,
108
+ "fullname": "NBA TV",
109
+ "location": "Atlanta, GA",
110
+ "touts_count": 9,
111
+ "uid": "nbatv",
112
+ "username": "NBATV",
113
+ "verified": false
114
+ },
115
+ "video": {
116
+ "duration": 5,
117
+ "mp4": {
118
+ "height": 360,
119
+ "http_url": "http://videos.tout.com/watermark/mp4/2d4fc9e442c1e826c2acd3ad9320762a.mp4",
120
+ "width": 640
121
+ },
122
+ "type": "native"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "tout": {
128
+ "created_at": "2012-04-18T12:44:41-07:00",
129
+ "image": {
130
+ "poster": {
131
+ "height": 360,
132
+ "http_url": "http://thumbnails.tout.com/watermark/e2e5d8d4ad92497f334a12217e33e25b/poster-4.jpg",
133
+ "width": 640
134
+ },
135
+ "thumbnail": {
136
+ "height": 84,
137
+ "http_url": "http://thumbnails.tout.com/watermark/e2e5d8d4ad92497f334a12217e33e25b/thumbs-4.jpg",
138
+ "width": 150
139
+ }
140
+ },
141
+ "likes_count": 1,
142
+ "privacy": "public",
143
+ "recorded_at": "2012-04-18T12:44:41-07:00",
144
+ "replies_count": 0,
145
+ "retouts_count": 0,
146
+ "text": "Kristen asks Shaq \"his most memorable game.\"",
147
+ "uid": "c15yl1",
148
+ "user": {
149
+ "avatar": {
150
+ "large": {
151
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/large/NBA_TV_Primary_1_.jpg"
152
+ },
153
+ "medium": {
154
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/medium/NBA_TV_Primary_1_.jpg"
155
+ },
156
+ "profile": {
157
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/profile/NBA_TV_Primary_1_.jpg"
158
+ },
159
+ "small": {
160
+ "http_url": "http://avatars.tout.com/u/49046267c45baf9183430a96820d0378/small/NBA_TV_Primary_1_.jpg"
161
+ }
162
+ },
163
+ "bio": "",
164
+ "followers_count": 11,
165
+ "friendly_name": "NBA TV",
166
+ "friends_count": 1,
167
+ "fullname": "NBA TV",
168
+ "location": "Atlanta, GA",
169
+ "touts_count": 9,
170
+ "uid": "nbatv",
171
+ "username": "NBATV",
172
+ "verified": false
173
+ },
174
+ "video": {
175
+ "duration": 6,
176
+ "mp4": {
177
+ "height": 360,
178
+ "http_url": "http://videos.tout.com/watermark/mp4/e2e5d8d4ad92497f334a12217e33e25b.mp4",
179
+ "width": 640
180
+ },
181
+ "type": "native"
182
+ }
183
+ }
184
+ },
185
+ {
186
+ "tout": {
187
+ "created_at": "2012-04-16T12:15:48-07:00",
188
+ "image": {
189
+ "poster": {
190
+ "height": 480,
191
+ "http_url": "http://thumbnails.tout.com/watermark/0d28ae00456cfb646e58dc23b520e6ee/poster-11.jpg",
192
+ "width": 360
193
+ },
194
+ "thumbnail": {
195
+ "height": 200,
196
+ "http_url": "http://thumbnails.tout.com/watermark/0d28ae00456cfb646e58dc23b520e6ee/thumbs-11.jpg",
197
+ "width": 150
198
+ }
199
+ },
200
+ "likes_count": 1,
201
+ "privacy": "public",
202
+ "recorded_at": "2012-04-16T12:10:08-07:00",
203
+ "replies_count": 0,
204
+ "retouts_count": 1,
205
+ "text": "Photo shoot with Chris Herder for new @OriginalSoupMan packaging!! #soup #OSM #summer #Shaq #Seinfeld ",
206
+ "uid": "mofmn1",
207
+ "user": {
208
+ "avatar": {
209
+ "large": {
210
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/large/Al_close_up.jpeg"
211
+ },
212
+ "medium": {
213
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/medium/Al_close_up.jpeg"
214
+ },
215
+ "profile": {
216
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/profile/Al_close_up.jpeg"
217
+ },
218
+ "small": {
219
+ "http_url": "http://avatars.tout.com/u/921d8a14a67014458b22109520993f44/small/Al_close_up.jpeg"
220
+ }
221
+ },
222
+ "bio": " \"Soup Is My Passion\"\r\nLong before Seinfeld, Al Yeganeh, \"The SoupMan\" created his critically acclaimed magical recipes in his landmark store in NYC. Even the NY Times referred to Al's masterpieces as \"Art\", Not Soup\". Each and every unique variety is slow-cooked to perfection and made with only the finest ingredients, exotic herbs and sprices. ",
223
+ "followers_count": 10,
224
+ "friendly_name": "OriginalSoupMan",
225
+ "friends_count": 2,
226
+ "fullname": "",
227
+ "location": "New York",
228
+ "touts_count": 12,
229
+ "uid": "originalsoupman",
230
+ "username": "OriginalSoupMan",
231
+ "verified": false
232
+ },
233
+ "video": {
234
+ "duration": 16,
235
+ "mp4": {
236
+ "height": 480,
237
+ "http_url": "http://videos.tout.com/watermark/mp4/0d28ae00456cfb646e58dc23b520e6ee.mp4",
238
+ "width": 360
239
+ },
240
+ "type": "native"
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "tout": {
246
+ "created_at": "2012-04-13T08:22:13-07:00",
247
+ "image": {
248
+ "poster": {
249
+ "height": 360,
250
+ "http_url": "http://thumbnails.tout.com/watermark/fae6f7a1746a552c4c5b1e4556b34407/poster-1.jpg",
251
+ "width": 480
252
+ },
253
+ "thumbnail": {
254
+ "height": 112,
255
+ "http_url": "http://thumbnails.tout.com/watermark/fae6f7a1746a552c4c5b1e4556b34407/thumbs-1.jpg",
256
+ "width": 150
257
+ }
258
+ },
259
+ "likes_count": 16,
260
+ "privacy": "public",
261
+ "recorded_at": "2012-04-13T08:19:54-07:00",
262
+ "replies_count": 0,
263
+ "retouts_count": 3,
264
+ "text": "#livewithkelly tout @Shaq",
265
+ "uid": "0pp8tk",
266
+ "user": {
267
+ "avatar": {
268
+ "large": {
269
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/large/Tout_rfile_picture.jpg"
270
+ },
271
+ "medium": {
272
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/medium/Tout_rfile_picture.jpg"
273
+ },
274
+ "profile": {
275
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/profile/Tout_rfile_picture.jpg"
276
+ },
277
+ "small": {
278
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/small/Tout_rfile_picture.jpg"
279
+ }
280
+ },
281
+ "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",
282
+ "followers_count": 819,
283
+ "friendly_name": "Live with Kelly",
284
+ "friends_count": 0,
285
+ "fullname": "Live with Kelly",
286
+ "location": "New York",
287
+ "touts_count": 27,
288
+ "uid": "livekelly",
289
+ "username": "LIVEKelly",
290
+ "verified": false
291
+ },
292
+ "video": {
293
+ "duration": 16,
294
+ "mp4": {
295
+ "height": 360,
296
+ "http_url": "http://videos.tout.com/watermark/mp4/fae6f7a1746a552c4c5b1e4556b34407.mp4",
297
+ "width": 480
298
+ },
299
+ "type": "native"
300
+ }
301
+ }
302
+ }
303
+ ]
304
+ }