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,99 @@
1
+
2
+ {
3
+ "tout": {
4
+ "conversation": {
5
+ "image": {
6
+ "poster": {
7
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg"
8
+ },
9
+ "thumbnail": {
10
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg"
11
+ }
12
+ },
13
+ "privacy": "public",
14
+ "subject": "See you on Sunday!",
15
+ "uid": "cmbjd3xn",
16
+ "user": {
17
+ "avatar": {
18
+ "large": {
19
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
20
+ },
21
+ "medium": {
22
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
23
+ },
24
+ "profile": {
25
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
26
+ },
27
+ "small": {
28
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
29
+ }
30
+ },
31
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
32
+ "followers_count": 7974,
33
+ "friendly_name": "Jeff Probst",
34
+ "friends_count": 0,
35
+ "fullname": "Jeff Probst",
36
+ "location": "LA,CA",
37
+ "touts_count": 755,
38
+ "uid": "jeffprobst",
39
+ "username": "JeffProbst",
40
+ "verified": true
41
+ }
42
+ },
43
+ "created_at": "2011-12-14T17:58:59-08:00",
44
+ "image": {
45
+ "poster": {
46
+ "height": 360,
47
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg",
48
+ "width": 480
49
+ },
50
+ "thumbnail": {
51
+ "height": 112,
52
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg",
53
+ "width": 150
54
+ }
55
+ },
56
+ "likes_count": 19,
57
+ "privacy": "public",
58
+ "recorded_at": "2011-12-14T17:58:59-08:00",
59
+ "replies_count": 50,
60
+ "retouts_count": 2,
61
+ "text": "See you on Sunday!",
62
+ "uid": "fhcl57",
63
+ "user": {
64
+ "avatar": {
65
+ "large": {
66
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
67
+ },
68
+ "medium": {
69
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
70
+ },
71
+ "profile": {
72
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
73
+ },
74
+ "small": {
75
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
76
+ }
77
+ },
78
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
79
+ "followers_count": 7974,
80
+ "friendly_name": "Jeff Probst",
81
+ "friends_count": 0,
82
+ "fullname": "Jeff Probst",
83
+ "location": "LA,CA",
84
+ "touts_count": 755,
85
+ "uid": "jeffprobst",
86
+ "username": "JeffProbst",
87
+ "verified": true
88
+ },
89
+ "video": {
90
+ "duration": 16,
91
+ "mp4": {
92
+ "height": 360,
93
+ "http_url": "http://videos.tout.com/watermark/mp4/b1b16265b0f3539fd6a34d59b2e5064d.mp4",
94
+ "width": 480
95
+ },
96
+ "type": "native"
97
+ }
98
+ }
99
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "user":{
3
+ "username": "Karmin",
4
+ "uid": "karmin",
5
+ "fullname":"Amy & Nick",
6
+ "verified":true,
7
+ "location":"",
8
+ "headline":"",
9
+ "bio":"\"My favorite $#*! ever\" - Questlove\r\n\r\nKarmin is Amy Ellis' pronounced rap flow and searing R&B influenced pop vocals married with Nick Noonan's multi-instrumental talent and smooth harmonies. The duo's dynamic chemistry results in a perfect ble",
10
+ "friendly_name":"Amy & Nick",
11
+ "touts_count":28,
12
+ "followers_count":1564,
13
+ "friends_count":2,
14
+ "last_tout_recorded_at":null,
15
+ "created_at":"2013-05-14T20:44:12Z",
16
+ "avatar":{
17
+ "profile":{
18
+ "http_url":"http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/profile/TwitterIcon2.jpg"
19
+ },
20
+ "large":{
21
+ "http_url":"http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/large/TwitterIcon2.jpg"
22
+ },
23
+ "medium":{
24
+ "http_url":"http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/medium/TwitterIcon2.jpg"
25
+ },
26
+ "small":{
27
+ "http_url":"http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/small/TwitterIcon2.jpg"
28
+ }
29
+ },
30
+ "following":false,
31
+ "followed_by":false,
32
+ "blocking":false,
33
+ "email":"user@example.com"
34
+ }
35
+ }
@@ -0,0 +1,98 @@
1
+ {
2
+ "tout": {
3
+ "conversation": {
4
+ "image": {
5
+ "poster": {
6
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg"
7
+ },
8
+ "thumbnail": {
9
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg"
10
+ }
11
+ },
12
+ "privacy": "public",
13
+ "subject": "See you on Sunday!",
14
+ "uid": "cmbjd3xn",
15
+ "user": {
16
+ "avatar": {
17
+ "large": {
18
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
19
+ },
20
+ "medium": {
21
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
22
+ },
23
+ "profile": {
24
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
25
+ },
26
+ "small": {
27
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
28
+ }
29
+ },
30
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
31
+ "followers_count": 7974,
32
+ "friendly_name": "Jeff Probst",
33
+ "friends_count": 0,
34
+ "fullname": "Jeff Probst",
35
+ "location": "LA,CA",
36
+ "touts_count": 755,
37
+ "uid": "jeffprobst",
38
+ "username": "JeffProbst",
39
+ "verified": true
40
+ }
41
+ },
42
+ "created_at": "2011-12-14T17:58:59-08:00",
43
+ "image": {
44
+ "poster": {
45
+ "height": 360,
46
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg",
47
+ "width": 480
48
+ },
49
+ "thumbnail": {
50
+ "height": 112,
51
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg",
52
+ "width": 150
53
+ }
54
+ },
55
+ "likes_count": 19,
56
+ "privacy": "public",
57
+ "recorded_at": "2011-12-14T17:58:59-08:00",
58
+ "replies_count": 50,
59
+ "retouts_count": 2,
60
+ "text": "See you on Sunday!",
61
+ "uid": "fhcl57",
62
+ "user": {
63
+ "avatar": {
64
+ "large": {
65
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
66
+ },
67
+ "medium": {
68
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
69
+ },
70
+ "profile": {
71
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
72
+ },
73
+ "small": {
74
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
75
+ }
76
+ },
77
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
78
+ "followers_count": 7974,
79
+ "friendly_name": "Jeff Probst",
80
+ "friends_count": 0,
81
+ "fullname": "Jeff Probst",
82
+ "location": "LA,CA",
83
+ "touts_count": 755,
84
+ "uid": "jeffprobst",
85
+ "username": "JeffProbst",
86
+ "verified": true
87
+ },
88
+ "video": {
89
+ "duration": 16,
90
+ "mp4": {
91
+ "height": 360,
92
+ "http_url": "http://videos.tout.com/watermark/mp4/b1b16265b0f3539fd6a34d59b2e5064d.mp4",
93
+ "width": 480
94
+ },
95
+ "type": "native"
96
+ }
97
+ }
98
+ }
@@ -0,0 +1,98 @@
1
+ {
2
+ "tout": {
3
+ "conversation": {
4
+ "image": {
5
+ "poster": {
6
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg"
7
+ },
8
+ "thumbnail": {
9
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg"
10
+ }
11
+ },
12
+ "privacy": "public",
13
+ "subject": "See you on Sunday!",
14
+ "uid": "cmbjd3xn",
15
+ "user": {
16
+ "avatar": {
17
+ "large": {
18
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
19
+ },
20
+ "medium": {
21
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
22
+ },
23
+ "profile": {
24
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
25
+ },
26
+ "small": {
27
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
28
+ }
29
+ },
30
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
31
+ "followers_count": 7974,
32
+ "friendly_name": "Jeff Probst",
33
+ "friends_count": 0,
34
+ "fullname": "Jeff Probst",
35
+ "location": "LA,CA",
36
+ "touts_count": 755,
37
+ "uid": "jeffprobst",
38
+ "username": "JeffProbst",
39
+ "verified": true
40
+ }
41
+ },
42
+ "created_at": "2011-12-14T17:58:59-08:00",
43
+ "image": {
44
+ "poster": {
45
+ "height": 360,
46
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg",
47
+ "width": 480
48
+ },
49
+ "thumbnail": {
50
+ "height": 112,
51
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg",
52
+ "width": 150
53
+ }
54
+ },
55
+ "likes_count": 19,
56
+ "privacy": "public",
57
+ "recorded_at": "2011-12-14T17:58:59-08:00",
58
+ "replies_count": 50,
59
+ "retouts_count": 2,
60
+ "text": "See you on Sunday!",
61
+ "uid": "fhcl57",
62
+ "user": {
63
+ "avatar": {
64
+ "large": {
65
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
66
+ },
67
+ "medium": {
68
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
69
+ },
70
+ "profile": {
71
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
72
+ },
73
+ "small": {
74
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
75
+ }
76
+ },
77
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
78
+ "followers_count": 7974,
79
+ "friendly_name": "Jeff Probst",
80
+ "friends_count": 0,
81
+ "fullname": "Jeff Probst",
82
+ "location": "LA,CA",
83
+ "touts_count": 755,
84
+ "uid": "jeffprobst",
85
+ "username": "JeffProbst",
86
+ "verified": true
87
+ },
88
+ "video": {
89
+ "duration": 16,
90
+ "mp4": {
91
+ "height": 360,
92
+ "http_url": "http://videos.tout.com/watermark/mp4/b1b16265b0f3539fd6a34d59b2e5064d.mp4",
93
+ "width": 480
94
+ },
95
+ "type": "native"
96
+ }
97
+ }
98
+ }
@@ -0,0 +1,100 @@
1
+ {
2
+ "hashtags": [
3
+ {
4
+ "hashtag": {
5
+ "name": "Arch",
6
+ "touts_count": 3,
7
+ "uid": "arch"
8
+ }
9
+ },
10
+ {
11
+ "hashtag": {
12
+ "name": "Archie",
13
+ "touts_count": 549,
14
+ "uid": "archie"
15
+ }
16
+ },
17
+ {
18
+ "hashtag": {
19
+ "name": "archery",
20
+ "touts_count": 1,
21
+ "uid": "archery"
22
+ }
23
+ },
24
+ {
25
+ "hashtag": {
26
+ "name": "archer",
27
+ "touts_count": 2,
28
+ "uid": "archer"
29
+ }
30
+ },
31
+ {
32
+ "hashtag": {
33
+ "name": "Archies",
34
+ "touts_count": 3,
35
+ "uid": "archies"
36
+ }
37
+ },
38
+ {
39
+ "hashtag": {
40
+ "name": "ArchBar",
41
+ "touts_count": 1,
42
+ "uid": "archbar"
43
+ }
44
+ },
45
+ {
46
+ "hashtag": {
47
+ "name": "archibald",
48
+ "touts_count": 2,
49
+ "uid": "archibald"
50
+ }
51
+ },
52
+ {
53
+ "hashtag": {
54
+ "name": "Archivez",
55
+ "touts_count": 1,
56
+ "uid": "archivez"
57
+ }
58
+ },
59
+ {
60
+ "hashtag": {
61
+ "name": "architecture",
62
+ "touts_count": 12,
63
+ "uid": "architecture"
64
+ }
65
+ },
66
+ {
67
+ "hashtag": {
68
+ "name": "Archaeology",
69
+ "touts_count": 1,
70
+ "uid": "archaeology"
71
+ }
72
+ },
73
+ {
74
+ "hashtag": {
75
+ "name": "archersofloaf",
76
+ "touts_count": 0,
77
+ "uid": "archersofloaf"
78
+ }
79
+ },
80
+ {
81
+ "hashtag": {
82
+ "name": "Architracks",
83
+ "touts_count": 3,
84
+ "uid": "architracks"
85
+ }
86
+ },
87
+ {
88
+ "hashtag": {
89
+ "name": "ArchMadness",
90
+ "touts_count": 1,
91
+ "uid": "archmadness"
92
+ }
93
+ }
94
+ ],
95
+ "pagination": {
96
+ "current_page": 1,
97
+ "per_page": 50,
98
+ "total_entries": 13
99
+ }
100
+ }
@@ -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
+ }