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,109 @@
1
+ {
2
+ "like": {
3
+ "status": "liked",
4
+ "tout": {
5
+ "conversation": {
6
+ "image": {
7
+ "poster": {
8
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg"
9
+ },
10
+ "thumbnail": {
11
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg"
12
+ }
13
+ },
14
+ "privacy": "public",
15
+ "subject": "See you on Sunday!",
16
+ "uid": "cmbjd3xn",
17
+ "user": {
18
+ "avatar": {
19
+ "large": {
20
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
21
+ },
22
+ "medium": {
23
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
24
+ },
25
+ "profile": {
26
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
27
+ },
28
+ "small": {
29
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
30
+ }
31
+ },
32
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
33
+ "followed_by": false,
34
+ "followers_count": 7974,
35
+ "following": true,
36
+ "friendly_name": "Jeff Probst",
37
+ "friends_count": 0,
38
+ "fullname": "Jeff Probst",
39
+ "location": "LA,CA",
40
+ "touts_count": 755,
41
+ "uid": "jeffprobst",
42
+ "username": "JeffProbst",
43
+ "verified": true
44
+ }
45
+ },
46
+ "created_at": "2011-12-14T17:58:59-08:00",
47
+ "image": {
48
+ "poster": {
49
+ "height": 360,
50
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg",
51
+ "width": 480
52
+ },
53
+ "thumbnail": {
54
+ "height": 112,
55
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg",
56
+ "width": 150
57
+ }
58
+ },
59
+ "liked": true,
60
+ "likes_count": 18,
61
+ "privacy": "public",
62
+ "recorded_at": "2011-12-14T17:58:59-08:00",
63
+ "replies_count": 50,
64
+ "retouts_count": 2,
65
+ "text": "See you on Sunday!",
66
+ "uid": "fhcl57",
67
+ "user": {
68
+ "avatar": {
69
+ "large": {
70
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
71
+ },
72
+ "medium": {
73
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
74
+ },
75
+ "profile": {
76
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
77
+ },
78
+ "small": {
79
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
80
+ }
81
+ },
82
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
83
+ "followed_by": false,
84
+ "followers_count": 7974,
85
+ "following": true,
86
+ "friendly_name": "Jeff Probst",
87
+ "friends_count": 0,
88
+ "fullname": "Jeff Probst",
89
+ "location": "LA,CA",
90
+ "touts_count": 755,
91
+ "uid": "jeffprobst",
92
+ "username": "JeffProbst",
93
+ "verified": true
94
+ },
95
+ "video": {
96
+ "duration": 16,
97
+ "mp4": {
98
+ "height": 360,
99
+ "http_url": "http://videos.tout.com/watermark/mp4/b1b16265b0f3539fd6a34d59b2e5064d.mp4",
100
+ "width": 480
101
+ },
102
+ "type": "native"
103
+ }
104
+ },
105
+ "user": {
106
+ "uid": "teamtout"
107
+ }
108
+ }
109
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "authorizations":[
3
+ {
4
+ "authorization":{
5
+ "name":"Facebook",
6
+ "friendly_name":"facebook",
7
+ "meta_data":{
8
+ "full_username":"user",
9
+ "authorized_since":"2013-05-14T20:44:13Z"
10
+ }
11
+ }
12
+ }
13
+ ]
14
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "via": {
3
+ "name": "Facebook",
4
+ "uid": "facebook",
5
+ "auto_share": {
6
+ "touts": false,
7
+ "views": false,
8
+ "likes": false,
9
+ "follows": false
10
+ },
11
+ "profile_link": true,
12
+ "profile_link_to": "me",
13
+ "share_to": "me",
14
+ "tos": [{
15
+ "to": {
16
+ "name": "My Timeline",
17
+ "uid": "me"
18
+ }
19
+ }]
20
+ }
21
+ }
@@ -0,0 +1,121 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 50,
5
+ "total_entries": 4
6
+ },
7
+ "users": [
8
+ {
9
+ "user": {
10
+ "avatar": {
11
+ "large": {
12
+ "http_url": "http://avatars.tout.com/u/dc5e09f133eaa73a1487ace5feceaceb/large/JAnderson.JPG"
13
+ },
14
+ "medium": {
15
+ "http_url": "http://avatars.tout.com/u/dc5e09f133eaa73a1487ace5feceaceb/medium/JAnderson.JPG"
16
+ },
17
+ "profile": {
18
+ "http_url": "http://avatars.tout.com/u/dc5e09f133eaa73a1487ace5feceaceb/profile/JAnderson.JPG"
19
+ },
20
+ "small": {
21
+ "http_url": "http://avatars.tout.com/u/dc5e09f133eaa73a1487ace5feceaceb/small/JAnderson.JPG"
22
+ }
23
+ },
24
+ "bio": "",
25
+ "followers_count": 13,
26
+ "friendly_name": "Jaydan\tAnderson",
27
+ "friends_count": 19,
28
+ "fullname": "Jaydan\tAnderson",
29
+ "location": "Chattanooga,TN",
30
+ "touts_count": 2,
31
+ "uid": "_j_anderson_",
32
+ "username": "_J_Anderson_",
33
+ "verified": false
34
+ }
35
+ },
36
+ {
37
+ "user": {
38
+ "avatar": {
39
+ "large": {
40
+ "http_url": "http://avatars.tout.com/u/e656462a9cb9403d44ed34269ab65005/large/4.jpg"
41
+ },
42
+ "medium": {
43
+ "http_url": "http://avatars.tout.com/u/e656462a9cb9403d44ed34269ab65005/medium/4.jpg"
44
+ },
45
+ "profile": {
46
+ "http_url": "http://avatars.tout.com/u/e656462a9cb9403d44ed34269ab65005/profile/4.jpg"
47
+ },
48
+ "small": {
49
+ "http_url": "http://avatars.tout.com/u/e656462a9cb9403d44ed34269ab65005/small/4.jpg"
50
+ }
51
+ },
52
+ "bio": "",
53
+ "followers_count": 25,
54
+ "friendly_name": "Derrick\tAcres",
55
+ "friends_count": 76,
56
+ "fullname": "Derrick\tAcres",
57
+ "location": "Beverly Hills, Ca ",
58
+ "touts_count": 9,
59
+ "uid": "000derricka000",
60
+ "username": "000derricka000",
61
+ "verified": false
62
+ }
63
+ },
64
+ {
65
+ "user": {
66
+ "avatar": {
67
+ "large": {
68
+ "http_url": "http://avatars.tout.com/u/f5da33fdf938aaddef5f473ef01e1bea/large/060D8FB9-C435-4A6B-8EE3-6C7B79B64E8D.png"
69
+ },
70
+ "medium": {
71
+ "http_url": "http://avatars.tout.com/u/f5da33fdf938aaddef5f473ef01e1bea/medium/060D8FB9-C435-4A6B-8EE3-6C7B79B64E8D.png"
72
+ },
73
+ "profile": {
74
+ "http_url": "http://avatars.tout.com/u/f5da33fdf938aaddef5f473ef01e1bea/profile/060D8FB9-C435-4A6B-8EE3-6C7B79B64E8D.png"
75
+ },
76
+ "small": {
77
+ "http_url": "http://avatars.tout.com/u/f5da33fdf938aaddef5f473ef01e1bea/small/060D8FB9-C435-4A6B-8EE3-6C7B79B64E8D.png"
78
+ }
79
+ },
80
+ "bio": null,
81
+ "followers_count": 7,
82
+ "friendly_name": "Angelo Mejia",
83
+ "friends_count": 15,
84
+ "fullname": "Angelo Mejia",
85
+ "location": null,
86
+ "touts_count": 1,
87
+ "uid": "13king13",
88
+ "username": "13KING13",
89
+ "verified": false
90
+ }
91
+ },
92
+ {
93
+ "user": {
94
+ "avatar": {
95
+ "large": {
96
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/large/2238D9DF-A868-4A8F-BBC5-11DDD34879B1.png"
97
+ },
98
+ "medium": {
99
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/medium/2238D9DF-A868-4A8F-BBC5-11DDD34879B1.png"
100
+ },
101
+ "profile": {
102
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/profile/2238D9DF-A868-4A8F-BBC5-11DDD34879B1.png"
103
+ },
104
+ "small": {
105
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/small/2238D9DF-A868-4A8F-BBC5-11DDD34879B1.png"
106
+ }
107
+ },
108
+ "bio": "",
109
+ "followers_count": 5,
110
+ "friendly_name": "Jeff Adams (work In Music Industry) ",
111
+ "friends_count": 9,
112
+ "fullname": "Jeff Adams (work In Music Industry) ",
113
+ "location": "",
114
+ "touts_count": 21,
115
+ "uid": "220blackfuelmusic",
116
+ "username": "220Blackfuelmusic",
117
+ "verified": false
118
+ }
119
+ }
120
+ ]
121
+ }
@@ -0,0 +1,174 @@
1
+ {
2
+ "users": [
3
+ {
4
+ "user": {
5
+ "username": "DerkChrome51",
6
+ "uid": "derkchrome51",
7
+ "fullname": null,
8
+ "verified": false,
9
+ "location": null,
10
+ "headline": null,
11
+ "bio": null,
12
+ "friendly_name": "DerkChrome51",
13
+ "touts_count": 0,
14
+ "followers_count": 0,
15
+ "friends_count": 0,
16
+ "last_tout_recorded_at": null,
17
+ "created_at": "2013-02-11T18:48:27Z",
18
+ "avatar": {
19
+ "profile": {
20
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
21
+ },
22
+ "large": {
23
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
24
+ },
25
+ "medium": {
26
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
27
+ },
28
+ "small": {
29
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
30
+ }
31
+ },
32
+ "following": false,
33
+ "followed_by": false
34
+ }
35
+ },
36
+ {
37
+ "user": {
38
+ "username": "DerkFirefox",
39
+ "uid": "derkfirefox",
40
+ "fullname": "Derk F. Fox",
41
+ "verified": false,
42
+ "location": "",
43
+ "headline": "",
44
+ "bio": "",
45
+ "friendly_name": "Derk F. Fox",
46
+ "touts_count": 637,
47
+ "followers_count": 16,
48
+ "friends_count": 6,
49
+ "last_tout_recorded_at": "2013-02-08T23:50:59Z",
50
+ "created_at": "2012-08-26T22:40:30Z",
51
+ "avatar": {
52
+ "profile": {
53
+ "http_url": "http://avatars.tout.com/u/4bbdc457e89306dd1aa38f3f3bb2a466/profile/211255_100004223533818_131804456_n.jpg"
54
+ },
55
+ "large": {
56
+ "http_url": "http://avatars.tout.com/u/4bbdc457e89306dd1aa38f3f3bb2a466/large/211255_100004223533818_131804456_n.jpg"
57
+ },
58
+ "medium": {
59
+ "http_url": "http://avatars.tout.com/u/4bbdc457e89306dd1aa38f3f3bb2a466/medium/211255_100004223533818_131804456_n.jpg"
60
+ },
61
+ "small": {
62
+ "http_url": "http://avatars.tout.com/u/4bbdc457e89306dd1aa38f3f3bb2a466/small/211255_100004223533818_131804456_n.jpg"
63
+ }
64
+ },
65
+ "following": false,
66
+ "followed_by": false
67
+ }
68
+ },
69
+ {
70
+ "user": {
71
+ "username": "DerkSafari8",
72
+ "uid": "derksafari8",
73
+ "fullname": null,
74
+ "verified": false,
75
+ "location": null,
76
+ "headline": null,
77
+ "bio": null,
78
+ "friendly_name": "DerkSafari8",
79
+ "touts_count": 0,
80
+ "followers_count": 0,
81
+ "friends_count": 0,
82
+ "last_tout_recorded_at": null,
83
+ "created_at": "2013-02-06T22:42:02Z",
84
+ "avatar": {
85
+ "profile": {
86
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
87
+ },
88
+ "large": {
89
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
90
+ },
91
+ "medium": {
92
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
93
+ },
94
+ "small": {
95
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
96
+ }
97
+ },
98
+ "following": false,
99
+ "followed_by": false
100
+ }
101
+ },
102
+ {
103
+ "user": {
104
+ "username": "JonathanTouter",
105
+ "uid": "jonathantouter",
106
+ "fullname": "JonathanTouter",
107
+ "verified": false,
108
+ "location": "",
109
+ "headline": "",
110
+ "bio": "Foob",
111
+ "friendly_name": "JonathanTouter",
112
+ "touts_count": 212,
113
+ "followers_count": 9,
114
+ "friends_count": 8,
115
+ "last_tout_recorded_at": "2013-02-11T20:59:59Z",
116
+ "created_at": "2012-07-06T18:26:28Z",
117
+ "avatar": {
118
+ "profile": {
119
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
120
+ },
121
+ "large": {
122
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
123
+ },
124
+ "medium": {
125
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
126
+ },
127
+ "small": {
128
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
129
+ }
130
+ },
131
+ "following": true,
132
+ "followed_by": true
133
+ }
134
+ },
135
+ {
136
+ "user": {
137
+ "username": "PTTouting",
138
+ "uid": "pttouting",
139
+ "fullname": "PT Touting",
140
+ "verified": false,
141
+ "location": "",
142
+ "headline": null,
143
+ "bio": null,
144
+ "friendly_name": "PT Touting",
145
+ "touts_count": 27,
146
+ "followers_count": 2,
147
+ "friends_count": 0,
148
+ "last_tout_recorded_at": "2012-12-03T18:33:09Z",
149
+ "created_at": "2012-11-30T19:04:32Z",
150
+ "avatar": {
151
+ "profile": {
152
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
153
+ },
154
+ "large": {
155
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
156
+ },
157
+ "medium": {
158
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
159
+ },
160
+ "small": {
161
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
162
+ }
163
+ },
164
+ "following": false,
165
+ "followed_by": false
166
+ }
167
+ }
168
+ ],
169
+ "pagination": {
170
+ "current_page": 1,
171
+ "per_page": 50,
172
+ "total_entries": 5
173
+ }
174
+ }
@@ -0,0 +1,1255 @@
1
+ {
2
+ "touts": [
3
+ {
4
+ "tout": {
5
+ "uid": "ngwkwi",
6
+ "text": "Some text here",
7
+ "parsed_text": {
8
+ "hashtags": [],
9
+ "mentions": [],
10
+ "urls": []
11
+ },
12
+ "views_count": 2,
13
+ "likes_count": 1,
14
+ "total_likes_count": 1,
15
+ "replies_count": 0,
16
+ "retouts_count": 0,
17
+ "recorded_at": "2013-01-31T19:22:06Z",
18
+ "created_at": "2013-01-31T19:22:06Z",
19
+ "privacy": "public",
20
+ "user": {
21
+ "username": "ajbabz",
22
+ "uid": "ajbabz",
23
+ "fullname": "ajbabz",
24
+ "verified": false,
25
+ "location": "",
26
+ "headline": "",
27
+ "bio": "herping derps",
28
+ "friendly_name": "ajbabz",
29
+ "touts_count": 72,
30
+ "followers_count": 13,
31
+ "friends_count": 68,
32
+ "last_tout_recorded_at": "2013-01-31T19:22:06Z",
33
+ "created_at": "2012-07-04T22:00:33Z",
34
+ "avatar": {
35
+ "profile": {
36
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/profile/inverted_dali.jpg"
37
+ },
38
+ "large": {
39
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/large/inverted_dali.jpg"
40
+ },
41
+ "medium": {
42
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/medium/inverted_dali.jpg"
43
+ },
44
+ "small": {
45
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/small/inverted_dali.jpg"
46
+ }
47
+ },
48
+ "following": false,
49
+ "followed_by": false
50
+ },
51
+ "image": {
52
+ "poster": {
53
+ "width": 190,
54
+ "height": 240,
55
+ "http_url": "http://thumbnails.tout.com/watermark/ad73c7083777b4ea003d57c2d0088e45/poster-0.jpg"
56
+ },
57
+ "thumbnail": {
58
+ "width": 150,
59
+ "height": 189,
60
+ "http_url": "http://thumbnails.tout.com/watermark/ad73c7083777b4ea003d57c2d0088e45/thumbs-0.jpg"
61
+ }
62
+ },
63
+ "video": {
64
+ "type": "native",
65
+ "duration": 6,
66
+ "mp4": {
67
+ "width": 190,
68
+ "height": 240,
69
+ "http_url": "http://videos.tout.com/watermark/mp4/ad73c7083777b4ea003d57c2d0088e45.mp4"
70
+ }
71
+ },
72
+ "liked": true
73
+ }
74
+ },
75
+ {
76
+ "tout": {
77
+ "uid": "757jvk",
78
+ "text": "Some text here",
79
+ "parsed_text": {
80
+ "hashtags": [],
81
+ "mentions": [],
82
+ "urls": []
83
+ },
84
+ "views_count": 0,
85
+ "likes_count": 1,
86
+ "total_likes_count": 1,
87
+ "replies_count": 0,
88
+ "retouts_count": 0,
89
+ "recorded_at": "2013-01-31T19:08:58Z",
90
+ "created_at": "2013-01-31T19:08:58Z",
91
+ "privacy": "public",
92
+ "user": {
93
+ "username": "ajbabz",
94
+ "uid": "ajbabz",
95
+ "fullname": "ajbabz",
96
+ "verified": false,
97
+ "location": "",
98
+ "headline": "",
99
+ "bio": "herping derps",
100
+ "friendly_name": "ajbabz",
101
+ "touts_count": 71,
102
+ "followers_count": 13,
103
+ "friends_count": 68,
104
+ "last_tout_recorded_at": "2013-01-31T19:08:58Z",
105
+ "created_at": "2012-07-04T22:00:33Z",
106
+ "avatar": {
107
+ "profile": {
108
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/profile/inverted_dali.jpg"
109
+ },
110
+ "large": {
111
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/large/inverted_dali.jpg"
112
+ },
113
+ "medium": {
114
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/medium/inverted_dali.jpg"
115
+ },
116
+ "small": {
117
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/small/inverted_dali.jpg"
118
+ }
119
+ },
120
+ "following": false,
121
+ "followed_by": false
122
+ },
123
+ "image": {
124
+ "poster": {
125
+ "width": 190,
126
+ "height": 240,
127
+ "http_url": "http://thumbnails.tout.com/watermark/eadee48d6f82384791dfc37c0a86ac57/poster-0.jpg"
128
+ },
129
+ "thumbnail": {
130
+ "width": 150,
131
+ "height": 189,
132
+ "http_url": "http://thumbnails.tout.com/watermark/eadee48d6f82384791dfc37c0a86ac57/thumbs-0.jpg"
133
+ }
134
+ },
135
+ "video": {
136
+ "type": "native",
137
+ "duration": 6,
138
+ "mp4": {
139
+ "width": 190,
140
+ "height": 240,
141
+ "http_url": "http://videos.tout.com/watermark/mp4/eadee48d6f82384791dfc37c0a86ac57.mp4"
142
+ }
143
+ },
144
+ "liked": true
145
+ }
146
+ },
147
+ {
148
+ "tout": {
149
+ "uid": "yhpx78",
150
+ "text": "Some text here",
151
+ "parsed_text": {
152
+ "hashtags": [],
153
+ "mentions": [],
154
+ "urls": []
155
+ },
156
+ "views_count": 2,
157
+ "likes_count": 1,
158
+ "total_likes_count": 1,
159
+ "replies_count": 0,
160
+ "retouts_count": 0,
161
+ "recorded_at": "2013-01-31T01:43:02Z",
162
+ "created_at": "2013-01-31T01:43:02Z",
163
+ "privacy": "public",
164
+ "user": {
165
+ "username": "ajbabz",
166
+ "uid": "ajbabz",
167
+ "fullname": "ajbabz",
168
+ "verified": false,
169
+ "location": "",
170
+ "headline": "",
171
+ "bio": "herping derps",
172
+ "friendly_name": "ajbabz",
173
+ "touts_count": 70,
174
+ "followers_count": 13,
175
+ "friends_count": 68,
176
+ "last_tout_recorded_at": "2013-01-31T01:43:02Z",
177
+ "created_at": "2012-07-04T22:00:33Z",
178
+ "avatar": {
179
+ "profile": {
180
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/profile/inverted_dali.jpg"
181
+ },
182
+ "large": {
183
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/large/inverted_dali.jpg"
184
+ },
185
+ "medium": {
186
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/medium/inverted_dali.jpg"
187
+ },
188
+ "small": {
189
+ "http_url": "http://avatars.tout.com/u/16301f93ba3db9f8552412e5e67e0154/small/inverted_dali.jpg"
190
+ }
191
+ },
192
+ "following": false,
193
+ "followed_by": false
194
+ },
195
+ "image": {
196
+ "poster": {
197
+ "width": 190,
198
+ "height": 240,
199
+ "http_url": "http://thumbnails.tout.com/watermark/7beaa06e9de8f01a0288506046f399bc/poster-3.jpg"
200
+ },
201
+ "thumbnail": {
202
+ "width": 150,
203
+ "height": 189,
204
+ "http_url": "http://thumbnails.tout.com/watermark/7beaa06e9de8f01a0288506046f399bc/thumbs-3.jpg"
205
+ }
206
+ },
207
+ "video": {
208
+ "type": "native",
209
+ "duration": 6,
210
+ "mp4": {
211
+ "width": 190,
212
+ "height": 240,
213
+ "http_url": "http://videos.tout.com/watermark/mp4/7beaa06e9de8f01a0288506046f399bc.mp4"
214
+ }
215
+ },
216
+ "liked": true
217
+ }
218
+ },
219
+ {
220
+ "tout": {
221
+ "uid": "c9rco2",
222
+ "text": "sep 6 17:44",
223
+ "parsed_text": {
224
+ "hashtags": [],
225
+ "mentions": [],
226
+ "urls": []
227
+ },
228
+ "views_count": 5,
229
+ "likes_count": 1,
230
+ "total_likes_count": 1,
231
+ "replies_count": 0,
232
+ "retouts_count": 1,
233
+ "recorded_at": "2012-09-07T00:45:01Z",
234
+ "created_at": "2012-09-07T00:45:01Z",
235
+ "privacy": "public",
236
+ "user": {
237
+ "username": "JonathanTouter",
238
+ "uid": "jonathantouter",
239
+ "fullname": "JonathanTouter",
240
+ "verified": false,
241
+ "location": "",
242
+ "headline": "",
243
+ "bio": "Foob",
244
+ "friendly_name": "JonathanTouter",
245
+ "touts_count": 205,
246
+ "followers_count": 10,
247
+ "friends_count": 7,
248
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
249
+ "created_at": "2012-07-06T18:26:28Z",
250
+ "avatar": {
251
+ "profile": {
252
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
253
+ },
254
+ "large": {
255
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
256
+ },
257
+ "medium": {
258
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
259
+ },
260
+ "small": {
261
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
262
+ }
263
+ },
264
+ "following": true,
265
+ "followed_by": true
266
+ },
267
+ "image": {
268
+ "poster": {
269
+ "width": 640,
270
+ "height": 480,
271
+ "http_url": "http://thumbnails.tout.com/watermark/1ca04474b0e24a5b154dbbc5b16562f3/poster-2.jpg"
272
+ },
273
+ "thumbnail": {
274
+ "width": 150,
275
+ "height": 112,
276
+ "http_url": "http://thumbnails.tout.com/watermark/1ca04474b0e24a5b154dbbc5b16562f3/thumbs-2.jpg"
277
+ }
278
+ },
279
+ "video": {
280
+ "type": "native",
281
+ "duration": 3,
282
+ "mp4": {
283
+ "width": 640,
284
+ "height": 480,
285
+ "http_url": "http://videos.tout.com/watermark/mp4/1ca04474b0e24a5b154dbbc5b16562f3.mp4"
286
+ }
287
+ },
288
+ "liked": true
289
+ }
290
+ },
291
+ {
292
+ "tout": {
293
+ "uid": "fdtcwe",
294
+ "text": "Hello world! We'll be hanging out with Levi and Ryan of MMI all day and sending you quick video updates! ",
295
+ "parsed_text": {
296
+ "hashtags": [],
297
+ "mentions": [],
298
+ "urls": []
299
+ },
300
+ "views_count": 326,
301
+ "likes_count": 19,
302
+ "total_likes_count": 19,
303
+ "replies_count": 1,
304
+ "retouts_count": 2,
305
+ "recorded_at": "2012-08-30T16:20:09Z",
306
+ "created_at": "2012-08-30T16:23:45Z",
307
+ "privacy": "public",
308
+ "user": {
309
+ "username": "AltPress",
310
+ "uid": "altpress",
311
+ "fullname": "Alternative Press",
312
+ "verified": true,
313
+ "location": "",
314
+ "headline": "Celebrating 27 years of being the nation’s leading voice on underground, alternative and punk music both in print and online. Follow us for news, music + more!",
315
+ "bio": "Celebrating 27 years of being the nation’s leading voice on underground, alternative and punk music both in print and online. Follow us for news, music + more!",
316
+ "friendly_name": "Alternative Press",
317
+ "touts_count": 8,
318
+ "followers_count": 1396,
319
+ "friends_count": 1,
320
+ "last_tout_recorded_at": "2012-09-16T00:15:26Z",
321
+ "created_at": "2012-08-30T15:33:54Z",
322
+ "avatar": {
323
+ "profile": {
324
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/profile/AlternativePressAvatar.png"
325
+ },
326
+ "large": {
327
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/large/AlternativePressAvatar.png"
328
+ },
329
+ "medium": {
330
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/medium/AlternativePressAvatar.png"
331
+ },
332
+ "small": {
333
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/small/AlternativePressAvatar.png"
334
+ }
335
+ },
336
+ "following": false,
337
+ "followed_by": false
338
+ },
339
+ "image": {
340
+ "poster": {
341
+ "width": 360,
342
+ "height": 480,
343
+ "http_url": "http://thumbnails.tout.com/watermark/1f2d4f87b7eb186ee0e71f56a49349bc/poster-10.jpg"
344
+ },
345
+ "thumbnail": {
346
+ "width": 150,
347
+ "height": 200,
348
+ "http_url": "http://thumbnails.tout.com/watermark/1f2d4f87b7eb186ee0e71f56a49349bc/thumbs-10.jpg"
349
+ }
350
+ },
351
+ "video": {
352
+ "type": "native",
353
+ "duration": 13,
354
+ "mp4": {
355
+ "width": 360,
356
+ "height": 480,
357
+ "http_url": "http://videos.tout.com/watermark/mp4/1f2d4f87b7eb186ee0e71f56a49349bc.mp4"
358
+ }
359
+ },
360
+ "liked": true,
361
+ "conversation": {
362
+ "uid": "t2emvw33",
363
+ "subject": "Hello world! We'll be hanging out with Levi and Ryan of MMI all day and sending you quick video updates! ",
364
+ "privacy": "public",
365
+ "image": {
366
+ "poster": {
367
+ "http_url": "http://thumbnails.tout.com/watermark/1f2d4f87b7eb186ee0e71f56a49349bc/poster-10.jpg"
368
+ },
369
+ "thumbnail": {
370
+ "http_url": "http://thumbnails.tout.com/watermark/1f2d4f87b7eb186ee0e71f56a49349bc/thumbs-10.jpg"
371
+ }
372
+ },
373
+ "owner": {
374
+ "username": "AltPress",
375
+ "uid": "altpress",
376
+ "fullname": "Alternative Press",
377
+ "friendly_name": "Alternative Press",
378
+ "verified": true,
379
+ "touts_count": 8,
380
+ "followers_count": 1272,
381
+ "friends_count": 1,
382
+ "last_tout_recorded_at": "2012-09-16T00:15:26Z",
383
+ "created_at": "2012-08-30T15:33:54Z",
384
+ "avatar": {
385
+ "profile": {
386
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/profile/AlternativePressAvatar.png"
387
+ },
388
+ "large": {
389
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/large/AlternativePressAvatar.png"
390
+ },
391
+ "medium": {
392
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/medium/AlternativePressAvatar.png"
393
+ },
394
+ "small": {
395
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/small/AlternativePressAvatar.png"
396
+ }
397
+ }
398
+ }
399
+ }
400
+ }
401
+ },
402
+ {
403
+ "tout": {
404
+ "uid": "7fm4as",
405
+ "text": "Maxwell, investigating",
406
+ "parsed_text": {
407
+ "hashtags": [],
408
+ "mentions": [],
409
+ "urls": []
410
+ },
411
+ "views_count": 4,
412
+ "likes_count": 1,
413
+ "total_likes_count": 1,
414
+ "replies_count": 4,
415
+ "retouts_count": 0,
416
+ "recorded_at": "2012-08-24T08:26:05Z",
417
+ "created_at": "2012-08-24T08:27:16Z",
418
+ "privacy": "public",
419
+ "user": {
420
+ "username": "JonathanTouter",
421
+ "uid": "jonathantouter",
422
+ "fullname": "JonathanTouter",
423
+ "verified": false,
424
+ "location": "",
425
+ "headline": "",
426
+ "bio": "Foob",
427
+ "friendly_name": "JonathanTouter",
428
+ "touts_count": 205,
429
+ "followers_count": 10,
430
+ "friends_count": 7,
431
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
432
+ "created_at": "2012-07-06T18:26:28Z",
433
+ "avatar": {
434
+ "profile": {
435
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
436
+ },
437
+ "large": {
438
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
439
+ },
440
+ "medium": {
441
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
442
+ },
443
+ "small": {
444
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
445
+ }
446
+ },
447
+ "following": true,
448
+ "followed_by": true
449
+ },
450
+ "image": {
451
+ "poster": {
452
+ "width": 360,
453
+ "height": 480,
454
+ "http_url": "http://thumbnails.tout.com/watermark/66c4a8cf1ece2d545fe846c55a5b0df2/poster-6.jpg"
455
+ },
456
+ "thumbnail": {
457
+ "width": 150,
458
+ "height": 200,
459
+ "http_url": "http://thumbnails.tout.com/watermark/66c4a8cf1ece2d545fe846c55a5b0df2/thumbs-6.jpg"
460
+ }
461
+ },
462
+ "video": {
463
+ "type": "native",
464
+ "duration": 16,
465
+ "mp4": {
466
+ "width": 360,
467
+ "height": 480,
468
+ "http_url": "http://videos.tout.com/watermark/mp4/66c4a8cf1ece2d545fe846c55a5b0df2.mp4"
469
+ }
470
+ },
471
+ "conversation": {
472
+ "uid": "ypykckvx",
473
+ "subject": "Maxwell, investigating",
474
+ "privacy": "public",
475
+ "image": {
476
+ "poster": {
477
+ "http_url": "http://thumbnails.tout.com/watermark/66c4a8cf1ece2d545fe846c55a5b0df2/poster-6.jpg"
478
+ },
479
+ "thumbnail": {
480
+ "http_url": "http://thumbnails.tout.com/watermark/66c4a8cf1ece2d545fe846c55a5b0df2/thumbs-6.jpg"
481
+ }
482
+ },
483
+ "owner": {
484
+ "username": "JonathanTouter",
485
+ "uid": "jonathantouter",
486
+ "fullname": "JonathanTouter",
487
+ "friendly_name": "JonathanTouter",
488
+ "verified": false,
489
+ "touts_count": 205,
490
+ "followers_count": 10,
491
+ "friends_count": 7,
492
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
493
+ "created_at": "2012-07-06T18:26:28Z",
494
+ "avatar": {
495
+ "profile": {
496
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
497
+ },
498
+ "large": {
499
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
500
+ },
501
+ "medium": {
502
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
503
+ },
504
+ "small": {
505
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
506
+ }
507
+ }
508
+ }
509
+ },
510
+ "liked": true
511
+ }
512
+ },
513
+ {
514
+ "tout": {
515
+ "uid": "t0abhg",
516
+ "text": "Aug 8 13:55",
517
+ "parsed_text": {
518
+ "hashtags": [],
519
+ "mentions": [],
520
+ "urls": []
521
+ },
522
+ "views_count": 2,
523
+ "likes_count": 1,
524
+ "total_likes_count": 1,
525
+ "replies_count": 0,
526
+ "retouts_count": 0,
527
+ "recorded_at": "2012-08-08T20:54:42Z",
528
+ "created_at": "2012-08-08T20:56:20Z",
529
+ "privacy": "public",
530
+ "user": {
531
+ "username": "JonathanTouter",
532
+ "uid": "jonathantouter",
533
+ "fullname": "JonathanTouter",
534
+ "verified": false,
535
+ "location": "",
536
+ "headline": "",
537
+ "bio": "Foob",
538
+ "friendly_name": "JonathanTouter",
539
+ "touts_count": 205,
540
+ "followers_count": 10,
541
+ "friends_count": 7,
542
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
543
+ "created_at": "2012-07-06T18:26:28Z",
544
+ "avatar": {
545
+ "profile": {
546
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
547
+ },
548
+ "large": {
549
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
550
+ },
551
+ "medium": {
552
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
553
+ },
554
+ "small": {
555
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
556
+ }
557
+ },
558
+ "following": true,
559
+ "followed_by": true
560
+ },
561
+ "image": {
562
+ "poster": {
563
+ "width": 640,
564
+ "height": 384,
565
+ "http_url": "http://thumbnails.tout.com/watermark/6c5cee8fa796d72dc5138534ccbbc8a0/poster-2.jpg"
566
+ },
567
+ "thumbnail": {
568
+ "width": 150,
569
+ "height": 90,
570
+ "http_url": "http://thumbnails.tout.com/watermark/6c5cee8fa796d72dc5138534ccbbc8a0/thumbs-2.jpg"
571
+ }
572
+ },
573
+ "video": {
574
+ "type": "native",
575
+ "duration": 6,
576
+ "mp4": {
577
+ "width": 640,
578
+ "height": 384,
579
+ "http_url": "http://videos.tout.com/watermark/mp4/6c5cee8fa796d72dc5138534ccbbc8a0.mp4"
580
+ }
581
+ },
582
+ "liked": true
583
+ }
584
+ },
585
+ {
586
+ "tout": {
587
+ "uid": "ywtk4v",
588
+ "text": "",
589
+ "parsed_text": {
590
+ "hashtags": [],
591
+ "mentions": [],
592
+ "urls": []
593
+ },
594
+ "views_count": 19,
595
+ "likes_count": 2,
596
+ "total_likes_count": 2,
597
+ "replies_count": 2,
598
+ "retouts_count": 0,
599
+ "recorded_at": "2012-07-20T06:46:37Z",
600
+ "created_at": "2012-07-20T06:46:37Z",
601
+ "privacy": "public",
602
+ "user": {
603
+ "username": "JonathanTouter",
604
+ "uid": "jonathantouter",
605
+ "fullname": "JonathanTouter",
606
+ "verified": false,
607
+ "location": "",
608
+ "headline": "",
609
+ "bio": "Foob",
610
+ "friendly_name": "JonathanTouter",
611
+ "touts_count": 205,
612
+ "followers_count": 10,
613
+ "friends_count": 7,
614
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
615
+ "created_at": "2012-07-06T18:26:28Z",
616
+ "avatar": {
617
+ "profile": {
618
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
619
+ },
620
+ "large": {
621
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
622
+ },
623
+ "medium": {
624
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
625
+ },
626
+ "small": {
627
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
628
+ }
629
+ },
630
+ "following": true,
631
+ "followed_by": true
632
+ },
633
+ "image": {
634
+ "poster": {
635
+ "width": 352,
636
+ "height": 288,
637
+ "http_url": "http://thumbnails.tout.com/watermark/ebfcd980f509bb4a714beb7ad2a93cdc/poster-8.jpg"
638
+ },
639
+ "thumbnail": {
640
+ "width": 150,
641
+ "height": 122,
642
+ "http_url": "http://thumbnails.tout.com/watermark/ebfcd980f509bb4a714beb7ad2a93cdc/thumbs-8.jpg"
643
+ }
644
+ },
645
+ "video": {
646
+ "type": "native",
647
+ "duration": 15,
648
+ "mp4": {
649
+ "width": 352,
650
+ "height": 288,
651
+ "http_url": "http://videos.tout.com/watermark/mp4/ebfcd980f509bb4a714beb7ad2a93cdc.mp4"
652
+ }
653
+ },
654
+ "conversation": {
655
+ "uid": "t9j5mpow",
656
+ "subject": "",
657
+ "privacy": "public",
658
+ "image": {
659
+ "poster": {
660
+ "http_url": "http://thumbnails.tout.com/watermark/ebfcd980f509bb4a714beb7ad2a93cdc/poster-8.jpg"
661
+ },
662
+ "thumbnail": {
663
+ "http_url": "http://thumbnails.tout.com/watermark/ebfcd980f509bb4a714beb7ad2a93cdc/thumbs-8.jpg"
664
+ }
665
+ },
666
+ "owner": {
667
+ "username": "JonathanTouter",
668
+ "uid": "jonathantouter",
669
+ "fullname": "JonathanTouter",
670
+ "friendly_name": "JonathanTouter",
671
+ "verified": false,
672
+ "touts_count": 205,
673
+ "followers_count": 10,
674
+ "friends_count": 7,
675
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
676
+ "created_at": "2012-07-06T18:26:28Z",
677
+ "avatar": {
678
+ "profile": {
679
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
680
+ },
681
+ "large": {
682
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
683
+ },
684
+ "medium": {
685
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
686
+ },
687
+ "small": {
688
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
689
+ }
690
+ }
691
+ }
692
+ },
693
+ "liked": true
694
+ }
695
+ },
696
+ {
697
+ "tout": {
698
+ "uid": "apgqq6",
699
+ "text": "I've got a huge announcement tonight on #Raw! LIVE 9/8 CT @USA_Network - Video: ",
700
+ "parsed_text": {
701
+ "hashtags": [
702
+ {
703
+ "text": "#Raw",
704
+ "name": "Raw",
705
+ "indices": [
706
+ 40,
707
+ 44
708
+ ],
709
+ "uid": "raw"
710
+ }
711
+ ],
712
+ "mentions": [
713
+ {
714
+ "text": "@USA_Network",
715
+ "username": "USA_Network",
716
+ "indices": [
717
+ 59,
718
+ 71
719
+ ],
720
+ "uid": "usa_network"
721
+ }
722
+ ],
723
+ "urls": []
724
+ },
725
+ "views_count": 109755,
726
+ "likes_count": 2413,
727
+ "total_likes_count": 2413,
728
+ "replies_count": 860,
729
+ "retouts_count": 997,
730
+ "recorded_at": "2012-07-16T20:43:17Z",
731
+ "created_at": "2012-07-16T20:43:17Z",
732
+ "privacy": "public",
733
+ "user": {
734
+ "username": "JohnCena",
735
+ "uid": "johncena",
736
+ "fullname": "John Cena",
737
+ "verified": true,
738
+ "location": "",
739
+ "headline": "The Official Tout Page of John Cena",
740
+ "bio": "The Champ is Here on Tout! Leader of WWE's Cenation and 12-time World Champion, in 15 seconds or less.\r\nWest Newbury, MA · http://www.wwe.com/superstars/",
741
+ "friendly_name": "John Cena",
742
+ "touts_count": 38,
743
+ "followers_count": 124573,
744
+ "friends_count": 34,
745
+ "last_tout_recorded_at": "2013-01-29T03:05:43Z",
746
+ "created_at": "2012-07-03T00:35:25Z",
747
+ "avatar": {
748
+ "profile": {
749
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/profile/johncena-bio.png"
750
+ },
751
+ "large": {
752
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/large/johncena-bio.png"
753
+ },
754
+ "medium": {
755
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/medium/johncena-bio.png"
756
+ },
757
+ "small": {
758
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/small/johncena-bio.png"
759
+ }
760
+ },
761
+ "following": true,
762
+ "followed_by": false
763
+ },
764
+ "image": {
765
+ "poster": {
766
+ "width": 640,
767
+ "height": 480,
768
+ "http_url": "http://thumbnails.tout.com/watermark/97213a22bfe271f7ce3ee86a9504c498/poster-0.jpg"
769
+ },
770
+ "thumbnail": {
771
+ "width": 150,
772
+ "height": 112,
773
+ "http_url": "http://thumbnails.tout.com/watermark/97213a22bfe271f7ce3ee86a9504c498/thumbs-0.jpg"
774
+ }
775
+ },
776
+ "video": {
777
+ "type": "native",
778
+ "duration": 12,
779
+ "mp4": {
780
+ "width": 640,
781
+ "height": 480,
782
+ "http_url": "http://videos.tout.com/watermark/mp4/97213a22bfe271f7ce3ee86a9504c498.mp4"
783
+ }
784
+ },
785
+ "conversation": {
786
+ "uid": "fla3tzqw",
787
+ "subject": "I've got a huge announcement tonight on #Raw! LIVE 9/8 CT @USA_Network - Video: ",
788
+ "privacy": "public",
789
+ "image": {
790
+ "poster": {
791
+ "http_url": "http://thumbnails.tout.com/watermark/97213a22bfe271f7ce3ee86a9504c498/poster-0.jpg"
792
+ },
793
+ "thumbnail": {
794
+ "http_url": "http://thumbnails.tout.com/watermark/97213a22bfe271f7ce3ee86a9504c498/thumbs-0.jpg"
795
+ }
796
+ },
797
+ "owner": {
798
+ "username": "JohnCena",
799
+ "uid": "johncena",
800
+ "fullname": "John Cena",
801
+ "friendly_name": "John Cena",
802
+ "verified": true,
803
+ "touts_count": 38,
804
+ "followers_count": 124573,
805
+ "friends_count": 34,
806
+ "last_tout_recorded_at": "2013-01-29T03:05:43Z",
807
+ "created_at": "2012-07-03T00:35:25Z",
808
+ "avatar": {
809
+ "profile": {
810
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/profile/johncena-bio.png"
811
+ },
812
+ "large": {
813
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/large/johncena-bio.png"
814
+ },
815
+ "medium": {
816
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/medium/johncena-bio.png"
817
+ },
818
+ "small": {
819
+ "http_url": "http://avatars.tout.com/u/e79dd728f9d03da2e0c4ece34976c1e5/small/johncena-bio.png"
820
+ }
821
+ }
822
+ }
823
+ },
824
+ "liked": true
825
+ }
826
+ },
827
+ {
828
+ "tout": {
829
+ "uid": "h6p8bi",
830
+ "text": "Reminiscing about this past weekend's Madonna concert! #MDNA #LIVEwithKelly VIDEO:",
831
+ "parsed_text": {
832
+ "hashtags": [
833
+ {
834
+ "text": "#MDNA",
835
+ "name": "MDNA",
836
+ "indices": [
837
+ 55,
838
+ 60
839
+ ],
840
+ "uid": "mdna"
841
+ },
842
+ {
843
+ "text": "#LIVEwithKelly",
844
+ "name": "LIVEwithKelly",
845
+ "indices": [
846
+ 61,
847
+ 75
848
+ ],
849
+ "uid": "livewithkelly"
850
+ }
851
+ ],
852
+ "mentions": [],
853
+ "urls": []
854
+ },
855
+ "views_count": 7097,
856
+ "likes_count": 64,
857
+ "total_likes_count": 64,
858
+ "replies_count": 6,
859
+ "retouts_count": 21,
860
+ "recorded_at": "2012-07-16T20:37:30Z",
861
+ "created_at": "2012-07-16T20:37:30Z",
862
+ "privacy": "public",
863
+ "user": {
864
+ "username": "KellyandMichael",
865
+ "uid": "kellyandmichael",
866
+ "fullname": "LIVE! with Kelly and Michael",
867
+ "verified": true,
868
+ "location": "New York",
869
+ "headline": "Watch \"LIVE! with Kelly and Michael\" weekday mornings with Kelly Ripa and Michael Strahan.",
870
+ "bio": "The official “LIVE! with Kelly and Michael” Tout page! Be the first to know the latest from the show. Watch “LIVE! with Kelly and Michael” weekday mornings with Kelly Ripa and Michael Strahan.\r\n\r\n",
871
+ "friendly_name": "LIVE! with Kelly and Michael",
872
+ "touts_count": 582,
873
+ "followers_count": 34871,
874
+ "friends_count": 5,
875
+ "last_tout_recorded_at": "2013-01-28T14:47:04Z",
876
+ "created_at": "2012-03-27T16:32:02Z",
877
+ "avatar": {
878
+ "profile": {
879
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/profile/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
880
+ },
881
+ "large": {
882
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/large/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
883
+ },
884
+ "medium": {
885
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/medium/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
886
+ },
887
+ "small": {
888
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/small/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
889
+ }
890
+ },
891
+ "following": false,
892
+ "followed_by": false
893
+ },
894
+ "image": {
895
+ "poster": {
896
+ "width": 640,
897
+ "height": 362,
898
+ "http_url": "http://thumbnails.tout.com/watermark/3c61dad434c5f18cacaeb785c329c03c/poster-12.jpg"
899
+ },
900
+ "thumbnail": {
901
+ "width": 150,
902
+ "height": 84,
903
+ "http_url": "http://thumbnails.tout.com/watermark/3c61dad434c5f18cacaeb785c329c03c/thumbs-12.jpg"
904
+ }
905
+ },
906
+ "video": {
907
+ "type": "native",
908
+ "duration": 16,
909
+ "mp4": {
910
+ "width": 640,
911
+ "height": 362,
912
+ "http_url": "http://videos.tout.com/watermark/mp4/3c61dad434c5f18cacaeb785c329c03c.mp4"
913
+ }
914
+ },
915
+ "conversation": {
916
+ "uid": "jb75kdw9",
917
+ "subject": "Reminiscing about this past weekend's Madonna concert! #MDNA #LIVEwithKelly VIDEO:",
918
+ "privacy": "public",
919
+ "image": {
920
+ "poster": {
921
+ "http_url": "http://thumbnails.tout.com/watermark/3c61dad434c5f18cacaeb785c329c03c/poster-12.jpg"
922
+ },
923
+ "thumbnail": {
924
+ "http_url": "http://thumbnails.tout.com/watermark/3c61dad434c5f18cacaeb785c329c03c/thumbs-12.jpg"
925
+ }
926
+ },
927
+ "owner": {
928
+ "username": "KellyandMichael",
929
+ "uid": "kellyandmichael",
930
+ "fullname": "LIVE! with Kelly and Michael",
931
+ "friendly_name": "LIVE! with Kelly and Michael",
932
+ "verified": true,
933
+ "touts_count": 582,
934
+ "followers_count": 34871,
935
+ "friends_count": 5,
936
+ "last_tout_recorded_at": "2013-01-28T14:47:04Z",
937
+ "created_at": "2012-03-27T16:32:02Z",
938
+ "avatar": {
939
+ "profile": {
940
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/profile/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
941
+ },
942
+ "large": {
943
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/large/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
944
+ },
945
+ "medium": {
946
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/medium/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
947
+ },
948
+ "small": {
949
+ "http_url": "http://avatars.tout.com/u/20b3d997063c8b8ad60b4aa63c8ffbee/small/LIVE_Kelly_and_Michael_best_graphic_psd_copy.jpg"
950
+ }
951
+ }
952
+ }
953
+ },
954
+ "liked": true
955
+ }
956
+ },
957
+ {
958
+ "tout": {
959
+ "uid": "t6tibt",
960
+ "text": "Have a great Monday!!",
961
+ "parsed_text": {
962
+ "hashtags": [],
963
+ "mentions": [],
964
+ "urls": []
965
+ },
966
+ "views_count": 18,
967
+ "likes_count": 5,
968
+ "total_likes_count": 5,
969
+ "replies_count": 0,
970
+ "retouts_count": 0,
971
+ "recorded_at": "2012-07-09T21:46:27Z",
972
+ "created_at": "2012-07-09T21:46:27Z",
973
+ "privacy": "public",
974
+ "user": {
975
+ "username": "DaBrink",
976
+ "uid": "dabrink",
977
+ "fullname": "Derek Brinkman",
978
+ "verified": false,
979
+ "location": "San Francisco",
980
+ "headline": "Tout Product Guy: Making the future, 15 secs at a time",
981
+ "bio": "",
982
+ "friendly_name": "Derek Brinkman",
983
+ "touts_count": 129,
984
+ "followers_count": 116,
985
+ "friends_count": 59,
986
+ "last_tout_recorded_at": "2013-01-18T21:26:53Z",
987
+ "created_at": "2012-02-06T04:33:55Z",
988
+ "avatar": {
989
+ "profile": {
990
+ "http_url": "http://avatars.tout.com/u/81c84a8228a634738939df74b298c5aa/profile/97C14AFA-7906-431A-ADCC-36AE0EDDDC08.png"
991
+ },
992
+ "large": {
993
+ "http_url": "http://avatars.tout.com/u/81c84a8228a634738939df74b298c5aa/large/97C14AFA-7906-431A-ADCC-36AE0EDDDC08.png"
994
+ },
995
+ "medium": {
996
+ "http_url": "http://avatars.tout.com/u/81c84a8228a634738939df74b298c5aa/medium/97C14AFA-7906-431A-ADCC-36AE0EDDDC08.png"
997
+ },
998
+ "small": {
999
+ "http_url": "http://avatars.tout.com/u/81c84a8228a634738939df74b298c5aa/small/97C14AFA-7906-431A-ADCC-36AE0EDDDC08.png"
1000
+ }
1001
+ },
1002
+ "following": false,
1003
+ "followed_by": false
1004
+ },
1005
+ "image": {
1006
+ "poster": {
1007
+ "width": 360,
1008
+ "height": 480,
1009
+ "http_url": "http://thumbnails.tout.com/watermark/0811d43a55a541e6f39404f8e78f62aa/poster-1.jpg"
1010
+ },
1011
+ "thumbnail": {
1012
+ "width": 150,
1013
+ "height": 200,
1014
+ "http_url": "http://thumbnails.tout.com/watermark/0811d43a55a541e6f39404f8e78f62aa/thumbs-1.jpg"
1015
+ }
1016
+ },
1017
+ "video": {
1018
+ "type": "native",
1019
+ "duration": 12,
1020
+ "mp4": {
1021
+ "width": 360,
1022
+ "height": 480,
1023
+ "http_url": "http://videos.tout.com/watermark/mp4/0811d43a55a541e6f39404f8e78f62aa.mp4"
1024
+ }
1025
+ },
1026
+ "retouted_tout": {
1027
+ "uid": "wjf44m",
1028
+ "text": "Have a great Monday!!",
1029
+ "views_count": 4,
1030
+ "likes_count": 0,
1031
+ "total_likes_count": 0,
1032
+ "replies_count": 1,
1033
+ "retouts_count": 1,
1034
+ "privacy": "public",
1035
+ "recorded_at": "2012-07-09T17:51:57Z",
1036
+ "user": {
1037
+ "username": "rab9499",
1038
+ "uid": "rab9499",
1039
+ "fullname": "Becky",
1040
+ "friendly_name": "Becky",
1041
+ "verified": false,
1042
+ "touts_count": 471,
1043
+ "followers_count": 24,
1044
+ "friends_count": 24,
1045
+ "last_tout_recorded_at": "2013-01-28T22:47:19Z",
1046
+ "created_at": "2012-02-16T11:22:14Z",
1047
+ "avatar": {
1048
+ "profile": {
1049
+ "http_url": "http://avatars.tout.com/u/b47de2d9b8528bc9dc0f587a84eae28f/profile/2338468E-8207-40E8-B7C0-A8445FE46F2F.png"
1050
+ },
1051
+ "large": {
1052
+ "http_url": "http://avatars.tout.com/u/b47de2d9b8528bc9dc0f587a84eae28f/large/2338468E-8207-40E8-B7C0-A8445FE46F2F.png"
1053
+ },
1054
+ "medium": {
1055
+ "http_url": "http://avatars.tout.com/u/b47de2d9b8528bc9dc0f587a84eae28f/medium/2338468E-8207-40E8-B7C0-A8445FE46F2F.png"
1056
+ },
1057
+ "small": {
1058
+ "http_url": "http://avatars.tout.com/u/b47de2d9b8528bc9dc0f587a84eae28f/small/2338468E-8207-40E8-B7C0-A8445FE46F2F.png"
1059
+ }
1060
+ }
1061
+ }
1062
+ },
1063
+ "liked": true
1064
+ }
1065
+ },
1066
+ {
1067
+ "tout": {
1068
+ "uid": "j0pqmr",
1069
+ "text": "ganesha spins!",
1070
+ "parsed_text": {
1071
+ "hashtags": [],
1072
+ "mentions": [],
1073
+ "urls": []
1074
+ },
1075
+ "views_count": 5,
1076
+ "likes_count": 2,
1077
+ "total_likes_count": 2,
1078
+ "replies_count": 2,
1079
+ "retouts_count": 1,
1080
+ "recorded_at": "2012-07-06T23:53:21Z",
1081
+ "created_at": "2012-07-06T23:53:21Z",
1082
+ "privacy": "public",
1083
+ "user": {
1084
+ "username": "jba",
1085
+ "uid": "jba",
1086
+ "fullname": "jba",
1087
+ "verified": true,
1088
+ "location": "San Francisco, California",
1089
+ "headline": "",
1090
+ "bio": "",
1091
+ "friendly_name": "jba",
1092
+ "touts_count": 31,
1093
+ "followers_count": 40,
1094
+ "friends_count": 42,
1095
+ "last_tout_recorded_at": "2013-01-25T21:54:23Z",
1096
+ "created_at": "2012-06-05T20:59:03Z",
1097
+ "avatar": {
1098
+ "profile": {
1099
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/profile/621785_4588114665258_1525692807_o.jpg"
1100
+ },
1101
+ "large": {
1102
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/large/621785_4588114665258_1525692807_o.jpg"
1103
+ },
1104
+ "medium": {
1105
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/medium/621785_4588114665258_1525692807_o.jpg"
1106
+ },
1107
+ "small": {
1108
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/small/621785_4588114665258_1525692807_o.jpg"
1109
+ }
1110
+ },
1111
+ "following": false,
1112
+ "followed_by": false
1113
+ },
1114
+ "image": {
1115
+ "poster": {
1116
+ "width": 640,
1117
+ "height": 480,
1118
+ "http_url": "http://thumbnails.tout.com/watermark/df6dd79d9afa7536b62492850eace28d/poster-0.jpg"
1119
+ },
1120
+ "thumbnail": {
1121
+ "width": 150,
1122
+ "height": 112,
1123
+ "http_url": "http://thumbnails.tout.com/watermark/df6dd79d9afa7536b62492850eace28d/thumbs-0.jpg"
1124
+ }
1125
+ },
1126
+ "video": {
1127
+ "type": "native",
1128
+ "duration": 16,
1129
+ "mp4": {
1130
+ "width": 640,
1131
+ "height": 480,
1132
+ "http_url": "http://videos.tout.com/watermark/mp4/df6dd79d9afa7536b62492850eace28d.mp4"
1133
+ }
1134
+ },
1135
+ "conversation": {
1136
+ "uid": "ybpmxxoe",
1137
+ "subject": "ganesha spins!",
1138
+ "privacy": "public",
1139
+ "image": {
1140
+ "poster": {
1141
+ "http_url": "http://thumbnails.tout.com/watermark/df6dd79d9afa7536b62492850eace28d/poster-0.jpg"
1142
+ },
1143
+ "thumbnail": {
1144
+ "http_url": "http://thumbnails.tout.com/watermark/df6dd79d9afa7536b62492850eace28d/thumbs-0.jpg"
1145
+ }
1146
+ },
1147
+ "owner": {
1148
+ "username": "jba",
1149
+ "uid": "jba",
1150
+ "fullname": "jba",
1151
+ "friendly_name": "jba",
1152
+ "verified": true,
1153
+ "touts_count": 31,
1154
+ "followers_count": 40,
1155
+ "friends_count": 42,
1156
+ "last_tout_recorded_at": "2013-01-25T21:54:23Z",
1157
+ "created_at": "2012-06-05T20:59:03Z",
1158
+ "avatar": {
1159
+ "profile": {
1160
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/profile/621785_4588114665258_1525692807_o.jpg"
1161
+ },
1162
+ "large": {
1163
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/large/621785_4588114665258_1525692807_o.jpg"
1164
+ },
1165
+ "medium": {
1166
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/medium/621785_4588114665258_1525692807_o.jpg"
1167
+ },
1168
+ "small": {
1169
+ "http_url": "http://avatars.tout.com/u/8d732f6a71d64e25533e55c3bb673e8a/small/621785_4588114665258_1525692807_o.jpg"
1170
+ }
1171
+ }
1172
+ }
1173
+ },
1174
+ "liked": true
1175
+ }
1176
+ },
1177
+ {
1178
+ "tout": {
1179
+ "uid": "b5cjef",
1180
+ "text": "the green bottle cometh",
1181
+ "parsed_text": {
1182
+ "hashtags": [],
1183
+ "mentions": [],
1184
+ "urls": []
1185
+ },
1186
+ "views_count": 6,
1187
+ "likes_count": 1,
1188
+ "total_likes_count": 1,
1189
+ "replies_count": 0,
1190
+ "retouts_count": 0,
1191
+ "recorded_at": "2012-07-06T18:27:46Z",
1192
+ "created_at": "2012-07-06T18:27:46Z",
1193
+ "privacy": "public",
1194
+ "user": {
1195
+ "username": "JonathanTouter",
1196
+ "uid": "jonathantouter",
1197
+ "fullname": "JonathanTouter",
1198
+ "verified": false,
1199
+ "location": "",
1200
+ "headline": "",
1201
+ "bio": "Foob",
1202
+ "friendly_name": "JonathanTouter",
1203
+ "touts_count": 205,
1204
+ "followers_count": 10,
1205
+ "friends_count": 7,
1206
+ "last_tout_recorded_at": "2013-01-26T01:47:51Z",
1207
+ "created_at": "2012-07-06T18:26:28Z",
1208
+ "avatar": {
1209
+ "profile": {
1210
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/profile/maskeraid.JPG"
1211
+ },
1212
+ "large": {
1213
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/large/maskeraid.JPG"
1214
+ },
1215
+ "medium": {
1216
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/medium/maskeraid.JPG"
1217
+ },
1218
+ "small": {
1219
+ "http_url": "http://avatars.tout.com/u/1f5fe1df22715cdc72da5b61007a7630/small/maskeraid.JPG"
1220
+ }
1221
+ },
1222
+ "following": true,
1223
+ "followed_by": true
1224
+ },
1225
+ "image": {
1226
+ "poster": {
1227
+ "width": 640,
1228
+ "height": 480,
1229
+ "http_url": "http://thumbnails.tout.com/watermark/6d1dbb2c1ba332f6b44eb6271931eceb/poster-3.jpg"
1230
+ },
1231
+ "thumbnail": {
1232
+ "width": 150,
1233
+ "height": 112,
1234
+ "http_url": "http://thumbnails.tout.com/watermark/6d1dbb2c1ba332f6b44eb6271931eceb/thumbs-3.jpg"
1235
+ }
1236
+ },
1237
+ "video": {
1238
+ "type": "native",
1239
+ "duration": 6,
1240
+ "mp4": {
1241
+ "width": 640,
1242
+ "height": 480,
1243
+ "http_url": "http://videos.tout.com/watermark/mp4/6d1dbb2c1ba332f6b44eb6271931eceb.mp4"
1244
+ }
1245
+ },
1246
+ "liked": true
1247
+ }
1248
+ }
1249
+ ],
1250
+ "pagination": {
1251
+ "current_page": 1,
1252
+ "per_page": 50,
1253
+ "total_entries": 13
1254
+ }
1255
+ }