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,37 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 50,
5
+ "total_entries": 1
6
+ },
7
+ "users": [
8
+ {
9
+ "user": {
10
+ "avatar": {
11
+ "large": {
12
+ "http_url": "http://avatars.tout.com/u/c8e5ce4920132c340a1004506cf92a3b/large/MelissaJHartavatar.jpg"
13
+ },
14
+ "medium": {
15
+ "http_url": "http://avatars.tout.com/u/c8e5ce4920132c340a1004506cf92a3b/medium/MelissaJHartavatar.jpg"
16
+ },
17
+ "profile": {
18
+ "http_url": "http://avatars.tout.com/u/c8e5ce4920132c340a1004506cf92a3b/profile/MelissaJHartavatar.jpg"
19
+ },
20
+ "small": {
21
+ "http_url": "http://avatars.tout.com/u/c8e5ce4920132c340a1004506cf92a3b/small/MelissaJHartavatar.jpg"
22
+ }
23
+ },
24
+ "bio": "You may know me as Clarissa or Sabrina but my 2 boys Mason and Brady call me Mommy! Thats my favorite role yet!",
25
+ "followers_count": 806,
26
+ "friendly_name": "Melissa Joan Hart ",
27
+ "friends_count": 0,
28
+ "fullname": "Melissa Joan Hart ",
29
+ "location": "Living life!",
30
+ "touts_count": 44,
31
+ "uid": "mellyjhart",
32
+ "username": "MellyJHart",
33
+ "verified": true
34
+ }
35
+ }
36
+ ]
37
+ }
@@ -0,0 +1,137 @@
1
+ {
2
+ "hashtags": [
3
+ {
4
+ "hashtag": {
5
+ "name": "arc",
6
+ "touts_count": 2,
7
+ "uid": "arc"
8
+ }
9
+ },
10
+ {
11
+ "hashtag": {
12
+ "name": "Arch",
13
+ "touts_count": 3,
14
+ "uid": "arch"
15
+ }
16
+ },
17
+ {
18
+ "hashtag": {
19
+ "name": "Archie",
20
+ "touts_count": 549,
21
+ "uid": "archie"
22
+ }
23
+ },
24
+ {
25
+ "hashtag": {
26
+ "name": "arcade",
27
+ "touts_count": 5,
28
+ "uid": "arcade"
29
+ }
30
+ },
31
+ {
32
+ "hashtag": {
33
+ "name": "archery",
34
+ "touts_count": 1,
35
+ "uid": "archery"
36
+ }
37
+ },
38
+ {
39
+ "hashtag": {
40
+ "name": "archer",
41
+ "touts_count": 2,
42
+ "uid": "archer"
43
+ }
44
+ },
45
+ {
46
+ "hashtag": {
47
+ "name": "Arcata",
48
+ "touts_count": 1,
49
+ "uid": "arcata"
50
+ }
51
+ },
52
+ {
53
+ "hashtag": {
54
+ "name": "Archies",
55
+ "touts_count": 3,
56
+ "uid": "archies"
57
+ }
58
+ },
59
+ {
60
+ "hashtag": {
61
+ "name": "ArchBar",
62
+ "touts_count": 1,
63
+ "uid": "archbar"
64
+ }
65
+ },
66
+ {
67
+ "hashtag": {
68
+ "name": "arctic",
69
+ "touts_count": 2,
70
+ "uid": "arctic"
71
+ }
72
+ },
73
+ {
74
+ "hashtag": {
75
+ "name": "ArcadeFire",
76
+ "touts_count": 3,
77
+ "uid": "arcadefire"
78
+ }
79
+ },
80
+ {
81
+ "hashtag": {
82
+ "name": "archibald",
83
+ "touts_count": 2,
84
+ "uid": "archibald"
85
+ }
86
+ },
87
+ {
88
+ "hashtag": {
89
+ "name": "Archivez",
90
+ "touts_count": 1,
91
+ "uid": "archivez"
92
+ }
93
+ },
94
+ {
95
+ "hashtag": {
96
+ "name": "architecture",
97
+ "touts_count": 12,
98
+ "uid": "architecture"
99
+ }
100
+ },
101
+ {
102
+ "hashtag": {
103
+ "name": "Archaeology",
104
+ "touts_count": 1,
105
+ "uid": "archaeology"
106
+ }
107
+ },
108
+ {
109
+ "hashtag": {
110
+ "name": "archersofloaf",
111
+ "touts_count": 0,
112
+ "uid": "archersofloaf"
113
+ }
114
+ },
115
+ {
116
+ "hashtag": {
117
+ "name": "Architracks",
118
+ "touts_count": 3,
119
+ "uid": "architracks"
120
+ }
121
+ },
122
+ {
123
+ "hashtag": {
124
+ "name": "ArcticBlast",
125
+ "touts_count": 1,
126
+ "uid": "arcticblast"
127
+ }
128
+ },
129
+ {
130
+ "hashtag": {
131
+ "name": "ArchMadness",
132
+ "touts_count": 1,
133
+ "uid": "archmadness"
134
+ }
135
+ }
136
+ ]
137
+ }
@@ -0,0 +1 @@
1
+ {"users":[{"user":{"username":"WWE","uid":"wwe","fullname":"WWE","friendly_name":"WWE","verified":true,"touts_count":353,"followers_count":85446,"friends_count":96,"last_tout_recorded_at":"2012-12-20T14:29:30Z","created_at":"2011-04-23T04:49:54Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/857c4ea3f088b9ff0a7ed562d4d2435d/profile/WWELogo.jpg"},"large":{"http_url":"http://avatars-staging.tout.com/u/857c4ea3f088b9ff0a7ed562d4d2435d/large/WWELogo.jpg"},"medium":{"http_url":"http://avatars-staging.tout.com/u/857c4ea3f088b9ff0a7ed562d4d2435d/medium/WWELogo.jpg"},"small":{"http_url":"http://avatars-staging.tout.com/u/857c4ea3f088b9ff0a7ed562d4d2435d/small/WWELogo.jpg"}}}},{"user":{"username":"WWEAJLee","uid":"wweajlee","fullname":"A.J.","friendly_name":"A.J.","verified":true,"touts_count":10,"followers_count":81817,"friends_count":0,"last_tout_recorded_at":"2012-11-17T20:11:52Z","created_at":"2012-07-09T19:38:49Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/7106aaa536cb19889110cc8777b99ef8/profile/aj_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/7106aaa536cb19889110cc8777b99ef8/large/aj_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/7106aaa536cb19889110cc8777b99ef8/medium/aj_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/7106aaa536cb19889110cc8777b99ef8/small/aj_bio.png"}}}},{"user":{"username":"WWEEpico","uid":"wweepico","fullname":"Epico","friendly_name":"Epico","verified":true,"touts_count":4,"followers_count":26088,"friends_count":7,"last_tout_recorded_at":"2012-08-07T19:35:07Z","created_at":"2012-07-10T00:48:07Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/c580fec9fe29128f9ad9119dd17bb65a/profile/epico-bio-updated.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/c580fec9fe29128f9ad9119dd17bb65a/large/epico-bio-updated.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/c580fec9fe29128f9ad9119dd17bb65a/medium/epico-bio-updated.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/c580fec9fe29128f9ad9119dd17bb65a/small/epico-bio-updated.png"}}}},{"user":{"username":"WWEUsos","uid":"wweusos","fullname":"The Usos","friendly_name":"The Usos","verified":true,"touts_count":11,"followers_count":29940,"friends_count":35,"last_tout_recorded_at":"2012-12-03T03:20:53Z","created_at":"2012-07-10T04:53:13Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/803a4b5f88856c457fd21764803b496d/profile/The_Usos-4.jpg"},"large":{"http_url":"http://avatars-staging.tout.com/u/803a4b5f88856c457fd21764803b496d/large/The_Usos-4.jpg"},"medium":{"http_url":"http://avatars-staging.tout.com/u/803a4b5f88856c457fd21764803b496d/medium/The_Usos-4.jpg"},"small":{"http_url":"http://avatars-staging.tout.com/u/803a4b5f88856c457fd21764803b496d/small/The_Usos-4.jpg"}}}},{"user":{"username":"WWESheamus","uid":"wwesheamus","fullname":"Sheamus","friendly_name":"Sheamus","verified":true,"touts_count":6,"followers_count":85684,"friends_count":8,"last_tout_recorded_at":"2012-08-21T02:08:50Z","created_at":"2012-07-06T14:00:38Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/c12a20fc250834aab07769770b80b043/profile/sheamus_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/c12a20fc250834aab07769770b80b043/large/sheamus_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/c12a20fc250834aab07769770b80b043/medium/sheamus_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/c12a20fc250834aab07769770b80b043/small/sheamus_bio.png"}}}},{"user":{"username":"WWECameron","uid":"wwecameron","fullname":"Cameron","friendly_name":"Cameron","verified":true,"touts_count":8,"followers_count":34240,"friends_count":0,"last_tout_recorded_at":"2012-11-23T21:25:27Z","created_at":"2012-07-09T20:19:30Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/28a2c11c3285b42ea9c6da18d4288581/profile/cameron_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/28a2c11c3285b42ea9c6da18d4288581/large/cameron_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/28a2c11c3285b42ea9c6da18d4288581/medium/cameron_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/28a2c11c3285b42ea9c6da18d4288581/small/cameron_bio.png"}}}},{"user":{"username":"WWEFandango","uid":"wwefandango","fullname":"Fandango","friendly_name":"Fandango","verified":true,"touts_count":0,"followers_count":21819,"friends_count":0,"last_tout_recorded_at":null,"created_at":"2012-07-13T22:41:21Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/99c3ac55d9d07e0f8d35fef8a1080d5e/profile/Fandango_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/99c3ac55d9d07e0f8d35fef8a1080d5e/large/Fandango_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/99c3ac55d9d07e0f8d35fef8a1080d5e/medium/Fandango_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/99c3ac55d9d07e0f8d35fef8a1080d5e/small/Fandango_bio.png"}}}},{"user":{"username":"WWERobinson","uid":"wwerobinson","fullname":"Charles Robinson","friendly_name":"Charles Robinson","verified":true,"touts_count":8,"followers_count":26369,"friends_count":67,"last_tout_recorded_at":"2012-10-13T13:35:02Z","created_at":"2012-07-23T21:33:08Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/989676ca89e765f7135d800cc91cb052/profile/WWE_Charles_Robinson.jpg"},"large":{"http_url":"http://avatars-staging.tout.com/u/989676ca89e765f7135d800cc91cb052/large/WWE_Charles_Robinson.jpg"},"medium":{"http_url":"http://avatars-staging.tout.com/u/989676ca89e765f7135d800cc91cb052/medium/WWE_Charles_Robinson.jpg"},"small":{"http_url":"http://avatars-staging.tout.com/u/989676ca89e765f7135d800cc91cb052/small/WWE_Charles_Robinson.jpg"}}}},{"user":{"username":"BookerT5x","uid":"bookert5x","fullname":"BookerT5x","friendly_name":"BookerT5x","verified":true,"touts_count":4,"followers_count":43040,"friends_count":0,"last_tout_recorded_at":"2012-10-30T20:03:33Z","created_at":"2012-08-07T19:12:27Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/fe98a6e338630a9e9ee09271cd0eff69/profile/booker-t-bio-updated.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/fe98a6e338630a9e9ee09271cd0eff69/large/booker-t-bio-updated.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/fe98a6e338630a9e9ee09271cd0eff69/medium/booker-t-bio-updated.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/fe98a6e338630a9e9ee09271cd0eff69/small/booker-t-bio-updated.png"}}}},{"user":{"username":"WWEDanielBryan","uid":"wwedanielbryan","fullname":"Daniel Bryan","friendly_name":"Daniel Bryan","verified":true,"touts_count":3,"followers_count":62347,"friends_count":4,"last_tout_recorded_at":"2012-08-21T02:26:54Z","created_at":"2012-07-03T01:09:28Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/83f61be867a9c808a47df4c82a4832a1/profile/daniel-bryan-bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/83f61be867a9c808a47df4c82a4832a1/large/daniel-bryan-bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/83f61be867a9c808a47df4c82a4832a1/medium/daniel-bryan-bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/83f61be867a9c808a47df4c82a4832a1/small/daniel-bryan-bio.png"}}}},{"user":{"username":"wwehornswoggle","uid":"wwehornswoggle","fullname":"Hornswoggle","friendly_name":"Hornswoggle","verified":true,"touts_count":7,"followers_count":43983,"friends_count":4,"last_tout_recorded_at":"2012-08-08T17:57:37Z","created_at":"2012-07-03T01:28:22Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/28fe144ceff6d3197f1b93ec43650aea/profile/hornswoggle-bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/28fe144ceff6d3197f1b93ec43650aea/large/hornswoggle-bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/28fe144ceff6d3197f1b93ec43650aea/medium/hornswoggle-bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/28fe144ceff6d3197f1b93ec43650aea/small/hornswoggle-bio.png"}}}},{"user":{"username":"WWETheBigShow","uid":"wwethebigshow","fullname":"Big Show","friendly_name":"Big Show","verified":true,"touts_count":2,"followers_count":39079,"friends_count":0,"last_tout_recorded_at":"2012-12-03T00:26:34Z","created_at":"2012-07-09T20:16:30Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/280526d236d0a72f317f75d42aa01546/profile/big_show_02_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/280526d236d0a72f317f75d42aa01546/large/big_show_02_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/280526d236d0a72f317f75d42aa01546/medium/big_show_02_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/280526d236d0a72f317f75d42aa01546/small/big_show_02_bio.png"}}}},{"user":{"username":"WWEJoshMathews","uid":"wwejoshmathews","fullname":"Josh Mathews","friendly_name":"Josh Mathews","verified":true,"touts_count":1,"followers_count":27089,"friends_count":0,"last_tout_recorded_at":"2012-10-23T18:01:35Z","created_at":"2012-07-10T01:33:39Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/9cbba9119f73cf33f775ee0bc2f79fd3/profile/josh-mathews-bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/9cbba9119f73cf33f775ee0bc2f79fd3/large/josh-mathews-bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/9cbba9119f73cf33f775ee0bc2f79fd3/medium/josh-mathews-bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/9cbba9119f73cf33f775ee0bc2f79fd3/small/josh-mathews-bio.png"}}}},{"user":{"username":"WWE_MasonRyan","uid":"wwe_masonryan","fullname":"Mason Ryan","friendly_name":"Mason Ryan","verified":true,"touts_count":0,"followers_count":25862,"friends_count":1,"last_tout_recorded_at":null,"created_at":"2012-07-10T02:02:05Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/03ff019973a42139cbc1cb8c6dcba23c/profile/mason-ryan-bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/03ff019973a42139cbc1cb8c6dcba23c/large/mason-ryan-bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/03ff019973a42139cbc1cb8c6dcba23c/medium/mason-ryan-bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/03ff019973a42139cbc1cb8c6dcba23c/small/mason-ryan-bio.png"}}}},{"user":{"username":"WWEMcGillicutty","uid":"wwemcgillicutty","fullname":"Mike McGillicutty","friendly_name":"Mike McGillicutty","verified":true,"touts_count":2,"followers_count":27079,"friends_count":12,"last_tout_recorded_at":"2012-08-12T19:52:40Z","created_at":"2012-07-10T02:05:26Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/e2c7f8d9d597b921a56d09f6a92f9402/profile/michael-mcgillicutty-bio-updated.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/e2c7f8d9d597b921a56d09f6a92f9402/large/michael-mcgillicutty-bio-updated.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/e2c7f8d9d597b921a56d09f6a92f9402/medium/michael-mcgillicutty-bio-updated.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/e2c7f8d9d597b921a56d09f6a92f9402/small/michael-mcgillicutty-bio-updated.png"}}}},{"user":{"username":"WWEPercyWatson","uid":"wwepercywatson","fullname":"Percy Watson","friendly_name":"Percy Watson","verified":true,"touts_count":7,"followers_count":28438,"friends_count":7,"last_tout_recorded_at":"2012-09-03T01:43:45Z","created_at":"2012-07-10T02:10:01Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/6542a80cdb7bf20a2e6cae3cce83a348/profile/percy-watson-bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/6542a80cdb7bf20a2e6cae3cce83a348/large/percy-watson-bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/6542a80cdb7bf20a2e6cae3cce83a348/medium/percy-watson-bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/6542a80cdb7bf20a2e6cae3cce83a348/small/percy-watson-bio.png"}}}},{"user":{"username":"WWEArmstrong","uid":"wwearmstrong","fullname":"Scott Armstrong","friendly_name":"Scott Armstrong","verified":true,"touts_count":70,"followers_count":32139,"friends_count":121,"last_tout_recorded_at":"2012-12-18T21:15:05Z","created_at":"2012-07-10T04:36:19Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/a657242a4984e3e00be6a6d4b29c1138/profile/47ED8282-4D67-46C3-B218-9170C8F8E14A.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/a657242a4984e3e00be6a6d4b29c1138/large/47ED8282-4D67-46C3-B218-9170C8F8E14A.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/a657242a4984e3e00be6a6d4b29c1138/medium/47ED8282-4D67-46C3-B218-9170C8F8E14A.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/a657242a4984e3e00be6a6d4b29c1138/small/47ED8282-4D67-46C3-B218-9170C8F8E14A.png"}}}},{"user":{"username":"WWErefJohnCone","uid":"wwerefjohncone","fullname":"John Cone","friendly_name":"John Cone","verified":true,"touts_count":0,"followers_count":21368,"friends_count":85,"last_tout_recorded_at":null,"created_at":"2012-07-13T22:34:30Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/bf9d2bddd4c83e77f89d2e296eb8eb2c/profile/WWE-Referee-John-Cone.jpg"},"large":{"http_url":"http://avatars-staging.tout.com/u/bf9d2bddd4c83e77f89d2e296eb8eb2c/large/WWE-Referee-John-Cone.jpg"},"medium":{"http_url":"http://avatars-staging.tout.com/u/bf9d2bddd4c83e77f89d2e296eb8eb2c/medium/WWE-Referee-John-Cone.jpg"},"small":{"http_url":"http://avatars-staging.tout.com/u/bf9d2bddd4c83e77f89d2e296eb8eb2c/small/WWE-Referee-John-Cone.jpg"}}}},{"user":{"username":"joeystyles","uid":"joeystyles","fullname":"Joey Styles ","friendly_name":"Joey Styles ","verified":true,"touts_count":2,"followers_count":25435,"friends_count":1,"last_tout_recorded_at":"2012-08-24T20:11:55Z","created_at":"2012-06-21T16:41:46Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/c488a8445b322529aaf20cdb5c413ff9/profile/JOEY_OMG__FACE_ONLY.jpg"},"large":{"http_url":"http://avatars-staging.tout.com/u/c488a8445b322529aaf20cdb5c413ff9/large/JOEY_OMG__FACE_ONLY.jpg"},"medium":{"http_url":"http://avatars-staging.tout.com/u/c488a8445b322529aaf20cdb5c413ff9/medium/JOEY_OMG__FACE_ONLY.jpg"},"small":{"http_url":"http://avatars-staging.tout.com/u/c488a8445b322529aaf20cdb5c413ff9/small/JOEY_OMG__FACE_ONLY.jpg"}}}},{"user":{"username":"TeddyLong","uid":"teddylong","fullname":"","friendly_name":"TeddyLong","verified":true,"touts_count":1,"followers_count":34483,"friends_count":0,"last_tout_recorded_at":"2012-07-19T14:47:57Z","created_at":"2012-07-19T14:28:44Z","avatar":{"profile":{"http_url":"http://avatars-staging.tout.com/u/468d31950188a4e1f7e848e156626d2e/profile/theodore_long_bio.png"},"large":{"http_url":"http://avatars-staging.tout.com/u/468d31950188a4e1f7e848e156626d2e/large/theodore_long_bio.png"},"medium":{"http_url":"http://avatars-staging.tout.com/u/468d31950188a4e1f7e848e156626d2e/medium/theodore_long_bio.png"},"small":{"http_url":"http://avatars-staging.tout.com/u/468d31950188a4e1f7e848e156626d2e/small/theodore_long_bio.png"}}}}]}
Binary file
@@ -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,41 @@
1
+ {
2
+ "conversation": {
3
+ "image": {
4
+ "poster": {
5
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/poster-0.jpg"
6
+ },
7
+ "thumbnail": {
8
+ "http_url": "http://thumbnails.tout.com/watermark/b1b16265b0f3539fd6a34d59b2e5064d/thumbs-0.jpg"
9
+ }
10
+ },
11
+ "privacy": "public",
12
+ "subject": "See you on Sunday!",
13
+ "uid": "cmbjd3xn",
14
+ "user": {
15
+ "avatar": {
16
+ "large": {
17
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/large/Jeffwithcrowntrophy_1.jpg"
18
+ },
19
+ "medium": {
20
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/medium/Jeffwithcrowntrophy_1.jpg"
21
+ },
22
+ "profile": {
23
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/profile/Jeffwithcrowntrophy_1.jpg"
24
+ },
25
+ "small": {
26
+ "http_url": "http://avatars.tout.com/u/67ec1a68dfadf28121e0f1b7a0d3d88b/small/Jeffwithcrowntrophy_1.jpg"
27
+ }
28
+ },
29
+ "bio": "American game show host, executive producer and reporter. Host of the reality show Survivor",
30
+ "followers_count": 7974,
31
+ "friendly_name": "Jeff Probst",
32
+ "friends_count": 0,
33
+ "fullname": "Jeff Probst",
34
+ "location": "LA,CA",
35
+ "touts_count": 755,
36
+ "uid": "jeffprobst",
37
+ "username": "JeffProbst",
38
+ "verified": true
39
+ }
40
+ }
41
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 2,
5
+ "total_entries": 19
6
+ },
7
+ "users": [
8
+ {
9
+ "user": {
10
+ "avatar": {
11
+ "large": {
12
+ "http_url": "http://avatars.tout.com/u/c691ea6edf6fec63e9097a3cc64a0c18/large/me_and_my_besties.jpg"
13
+ },
14
+ "medium": {
15
+ "http_url": "http://avatars.tout.com/u/c691ea6edf6fec63e9097a3cc64a0c18/medium/me_and_my_besties.jpg"
16
+ },
17
+ "profile": {
18
+ "http_url": "http://avatars.tout.com/u/c691ea6edf6fec63e9097a3cc64a0c18/profile/me_and_my_besties.jpg"
19
+ },
20
+ "small": {
21
+ "http_url": "http://avatars.tout.com/u/c691ea6edf6fec63e9097a3cc64a0c18/small/me_and_my_besties.jpg"
22
+ }
23
+ },
24
+ "bio": "",
25
+ "followers_count": 828,
26
+ "friendly_name": "Katie Fountain",
27
+ "friends_count": 1706,
28
+ "fullname": "Katie Fountain",
29
+ "location": "San Francisco",
30
+ "touts_count": 982,
31
+ "uid": "kt_fountain",
32
+ "username": "kt_fountain",
33
+ "verified": true
34
+ }
35
+ },
36
+ {
37
+ "user": {
38
+ "avatar": {
39
+ "large": {
40
+ "http_url": "http://avatars.tout.com/u/905312139ed53a007fb0ef5e073dd9d4/large/41619_199102880_213_n.jpg"
41
+ },
42
+ "medium": {
43
+ "http_url": "http://avatars.tout.com/u/905312139ed53a007fb0ef5e073dd9d4/medium/41619_199102880_213_n.jpg"
44
+ },
45
+ "profile": {
46
+ "http_url": "http://avatars.tout.com/u/905312139ed53a007fb0ef5e073dd9d4/profile/41619_199102880_213_n.jpg"
47
+ },
48
+ "small": {
49
+ "http_url": "http://avatars.tout.com/u/905312139ed53a007fb0ef5e073dd9d4/small/41619_199102880_213_n.jpg"
50
+ }
51
+ },
52
+ "bio": "",
53
+ "followers_count": 51,
54
+ "friendly_name": "Dan Weinand",
55
+ "friends_count": 163,
56
+ "fullname": "Dan Weinand",
57
+ "location": "San Francisco",
58
+ "touts_count": 94,
59
+ "uid": "danweinand",
60
+ "username": "DanWeinand",
61
+ "verified": true
62
+ }
63
+ }
64
+ ]
65
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 2,
5
+ "total_entries": 9900
6
+ },
7
+ "touts": [
8
+ {
9
+ "tout": {
10
+ "created_at": "2012-04-19T21:00:59-07:00",
11
+ "image": {
12
+ "poster": {
13
+ "height": 360,
14
+ "http_url": "http://thumbnails.tout.com/watermark/557c513c7be22ecbc146304131e21224/poster-12.jpg",
15
+ "width": 480
16
+ },
17
+ "thumbnail": {
18
+ "height": 112,
19
+ "http_url": "http://thumbnails.tout.com/watermark/557c513c7be22ecbc146304131e21224/thumbs-12.jpg",
20
+ "width": 150
21
+ }
22
+ },
23
+ "likes_count": 4,
24
+ "privacy": "public",
25
+ "recorded_at": "2012-04-19T20:58:35-07:00",
26
+ "replies_count": 0,
27
+ "retouts_count": 2,
28
+ "text": "Leonard Maltins USC film school class screening ",
29
+ "uid": "17gr8r",
30
+ "user": {
31
+ "avatar": {
32
+ "large": {
33
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/large/03.jpg"
34
+ },
35
+ "medium": {
36
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/medium/03.jpg"
37
+ },
38
+ "profile": {
39
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/profile/03.jpg"
40
+ },
41
+ "small": {
42
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/small/03.jpg"
43
+ }
44
+ },
45
+ "bio": "Attended Fordham University in the Bronx. Boxed in several New York Golden Gloves. Landed on the cover of Vogue/Armani ads. Had cancer. Cancer sucks. Directed numerous videos and commercials. Wrote for New York Magazine and Rolling Stone. Lived with and wrote about Ginger Baker, but needed to return to make a documentary.",
46
+ "followers_count": 30,
47
+ "friendly_name": "Jay Bulger",
48
+ "friends_count": 2,
49
+ "fullname": "Jay Bulger",
50
+ "location": "Klusterfucken",
51
+ "touts_count": 38,
52
+ "uid": "jaybulger",
53
+ "username": "jaybulger",
54
+ "verified": false
55
+ },
56
+ "video": {
57
+ "duration": 16,
58
+ "mp4": {
59
+ "height": 360,
60
+ "http_url": "http://videos.tout.com/watermark/mp4/557c513c7be22ecbc146304131e21224.mp4",
61
+ "width": 480
62
+ },
63
+ "type": "native"
64
+ }
65
+ }
66
+ },
67
+ {
68
+ "tout": {
69
+ "created_at": "2012-04-19T20:58:02-07:00",
70
+ "likes_count": 2,
71
+ "privacy": "public",
72
+ "recorded_at": "2012-04-19T18:47:13-07:00",
73
+ "replies_count": 0,
74
+ "retouts_count": 0,
75
+ "text": "Poland is a cheesy place",
76
+ "uid": "saj002",
77
+ "user": {
78
+ "avatar": {
79
+ "large": {
80
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/large/03.jpg"
81
+ },
82
+ "medium": {
83
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/medium/03.jpg"
84
+ },
85
+ "profile": {
86
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/profile/03.jpg"
87
+ },
88
+ "small": {
89
+ "http_url": "http://avatars.tout.com/u/b4e14a9efdd1b0bc525be8572e837f4a/small/03.jpg"
90
+ }
91
+ },
92
+ "bio": "Attended Fordham University in the Bronx. Boxed in several New York Golden Gloves. Landed on the cover of Vogue/Armani ads. Had cancer. Cancer sucks. Directed numerous videos and commercials. Wrote for New York Magazine and Rolling Stone. Lived with and wrote about Ginger Baker, but needed to return to make a documentary.",
93
+ "followers_count": 30,
94
+ "friendly_name": "Jay Bulger",
95
+ "friends_count": 2,
96
+ "fullname": "Jay Bulger",
97
+ "location": "Klusterfucken",
98
+ "touts_count": 38,
99
+ "uid": "jaybulger",
100
+ "username": "jaybulger",
101
+ "verified": false
102
+ }
103
+ }
104
+ }
105
+ ]
106
+ }