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,149 @@
1
+ {
2
+ "hashtags": [
3
+ {
4
+ "hashtag": {
5
+ "name": "VoltaNY",
6
+ "touts_count": 32,
7
+ "uid": "voltany"
8
+ }
9
+ },
10
+ {
11
+ "hashtag": {
12
+ "name": "GDC2012",
13
+ "touts_count": 32,
14
+ "uid": "gdc2012"
15
+ }
16
+ },
17
+ {
18
+ "hashtag": {
19
+ "name": "StatedMag",
20
+ "touts_count": 27,
21
+ "uid": "statedmag"
22
+ }
23
+ },
24
+ {
25
+ "hashtag": {
26
+ "name": "Manno",
27
+ "touts_count": 15,
28
+ "uid": "manno"
29
+ }
30
+ },
31
+ {
32
+ "hashtag": {
33
+ "name": "italy",
34
+ "touts_count": 38,
35
+ "uid": "italy"
36
+ }
37
+ },
38
+ {
39
+ "hashtag": {
40
+ "name": "Tout",
41
+ "touts_count": 1700,
42
+ "uid": "tout"
43
+ }
44
+ },
45
+ {
46
+ "hashtag": {
47
+ "name": "ibmpulse",
48
+ "touts_count": 29,
49
+ "uid": "ibmpulse"
50
+ }
51
+ },
52
+ {
53
+ "hashtag": {
54
+ "name": "Venice",
55
+ "touts_count": 50,
56
+ "uid": "venice"
57
+ }
58
+ },
59
+ {
60
+ "hashtag": {
61
+ "name": "uglyface",
62
+ "touts_count": 17,
63
+ "uid": "uglyface"
64
+ }
65
+ },
66
+ {
67
+ "hashtag": {
68
+ "name": "men",
69
+ "touts_count": 19,
70
+ "uid": "men"
71
+ }
72
+ },
73
+ {
74
+ "hashtag": {
75
+ "name": "goodenufmother",
76
+ "touts_count": 10,
77
+ "uid": "goodenufmother"
78
+ }
79
+ },
80
+ {
81
+ "hashtag": {
82
+ "name": "gdc",
83
+ "touts_count": 10,
84
+ "uid": "gdc"
85
+ }
86
+ },
87
+ {
88
+ "hashtag": {
89
+ "name": "SECNOLA",
90
+ "touts_count": 5,
91
+ "uid": "secnola"
92
+ }
93
+ },
94
+ {
95
+ "hashtag": {
96
+ "name": "Stopkony",
97
+ "touts_count": 4,
98
+ "uid": "stopkony"
99
+ }
100
+ },
101
+ {
102
+ "hashtag": {
103
+ "name": "SF",
104
+ "touts_count": 581,
105
+ "uid": "sf"
106
+ }
107
+ },
108
+ {
109
+ "hashtag": {
110
+ "name": "crossfit",
111
+ "touts_count": 60,
112
+ "uid": "crossfit"
113
+ }
114
+ },
115
+ {
116
+ "hashtag": {
117
+ "name": "TV",
118
+ "touts_count": 108,
119
+ "uid": "tv"
120
+ }
121
+ },
122
+ {
123
+ "hashtag": {
124
+ "name": "reebok",
125
+ "touts_count": 4,
126
+ "uid": "reebok"
127
+ }
128
+ },
129
+ {
130
+ "hashtag": {
131
+ "name": "kony2012",
132
+ "touts_count": 4,
133
+ "uid": "kony2012"
134
+ }
135
+ },
136
+ {
137
+ "hashtag": {
138
+ "name": "LauraGrier",
139
+ "touts_count": 4,
140
+ "uid": "lauragrier"
141
+ }
142
+ }
143
+ ],
144
+ "pagination": {
145
+ "current_page": 1,
146
+ "per_page": 20,
147
+ "total_entries": 267
148
+ }
149
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "like": {
3
+ "status": "not_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,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,28 @@
1
+ {
2
+ "user": {
3
+ "avatar": {
4
+ "large": {
5
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/large/TwitterIcon2.jpg"
6
+ },
7
+ "medium": {
8
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/medium/TwitterIcon2.jpg"
9
+ },
10
+ "profile": {
11
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/profile/TwitterIcon2.jpg"
12
+ },
13
+ "small": {
14
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/small/TwitterIcon2.jpg"
15
+ }
16
+ },
17
+ "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",
18
+ "followers_count": 1564,
19
+ "friendly_name": "Amy & Nick",
20
+ "friends_count": 2,
21
+ "fullname": "Amy & Nick",
22
+ "location": "",
23
+ "touts_count": 28,
24
+ "uid": "karmin",
25
+ "username": "Karmin",
26
+ "verified": true
27
+ }
28
+ }
@@ -0,0 +1,1409 @@
1
+ {
2
+ "pagination": {
3
+ "current_page": 1,
4
+ "per_page": 50,
5
+ "total_entries": 563
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
+ "user": {
122
+ "avatar": {
123
+ "large": {
124
+ "http_url": "http://avatars.tout.com/u/192de95321d6f552f7a4d70f13744a5a/large/Sixers_Logo.jpg"
125
+ },
126
+ "medium": {
127
+ "http_url": "http://avatars.tout.com/u/192de95321d6f552f7a4d70f13744a5a/medium/Sixers_Logo.jpg"
128
+ },
129
+ "profile": {
130
+ "http_url": "http://avatars.tout.com/u/192de95321d6f552f7a4d70f13744a5a/profile/Sixers_Logo.jpg"
131
+ },
132
+ "small": {
133
+ "http_url": "http://avatars.tout.com/u/192de95321d6f552f7a4d70f13744a5a/small/Sixers_Logo.jpg"
134
+ }
135
+ },
136
+ "bio": "The Philadelphia 76ers are one of the elite franchises in the National Basketball Association and have achieved the third most wins in league history, as well as the third most playoff appearances of any team in the NBA along with three World Championships.",
137
+ "followers_count": 363,
138
+ "friendly_name": "Philadelphia 76ers",
139
+ "friends_count": 7,
140
+ "fullname": "Philadelphia 76ers",
141
+ "location": "Philadelphia, PA",
142
+ "touts_count": 27,
143
+ "uid": "76ers",
144
+ "username": "76ers",
145
+ "verified": false
146
+ }
147
+ },
148
+ {
149
+ "user": {
150
+ "avatar": {
151
+ "large": {
152
+ "http_url": "http://avatars.tout.com/u/b7643803b26dc09b333cfef69d4602f9/large/10.jpg"
153
+ },
154
+ "medium": {
155
+ "http_url": "http://avatars.tout.com/u/b7643803b26dc09b333cfef69d4602f9/medium/10.jpg"
156
+ },
157
+ "profile": {
158
+ "http_url": "http://avatars.tout.com/u/b7643803b26dc09b333cfef69d4602f9/profile/10.jpg"
159
+ },
160
+ "small": {
161
+ "http_url": "http://avatars.tout.com/u/b7643803b26dc09b333cfef69d4602f9/small/10.jpg"
162
+ }
163
+ },
164
+ "bio": "",
165
+ "followers_count": 21,
166
+ "friendly_name": "Corey Drost",
167
+ "friends_count": 46,
168
+ "fullname": "Corey Drost",
169
+ "location": "Flagstaff,AZ",
170
+ "touts_count": 7,
171
+ "uid": "8-corey-8",
172
+ "username": "8-Corey-8",
173
+ "verified": false
174
+ }
175
+ },
176
+ {
177
+ "user": {
178
+ "avatar": {
179
+ "large": {
180
+ "http_url": "http://avatars.tout.com/u/d586505d14c318ebfac548a1e4e99fee/large/AaronSmith.JPG"
181
+ },
182
+ "medium": {
183
+ "http_url": "http://avatars.tout.com/u/d586505d14c318ebfac548a1e4e99fee/medium/AaronSmith.JPG"
184
+ },
185
+ "profile": {
186
+ "http_url": "http://avatars.tout.com/u/d586505d14c318ebfac548a1e4e99fee/profile/AaronSmith.JPG"
187
+ },
188
+ "small": {
189
+ "http_url": "http://avatars.tout.com/u/d586505d14c318ebfac548a1e4e99fee/small/AaronSmith.JPG"
190
+ }
191
+ },
192
+ "bio": "",
193
+ "followers_count": 31,
194
+ "friendly_name": "Aaron Smith",
195
+ "friends_count": 48,
196
+ "fullname": "Aaron Smith",
197
+ "location": "Miami,FL",
198
+ "touts_count": 5,
199
+ "uid": "a_a_r_o_n_s",
200
+ "username": "A_a_R_o_N_S",
201
+ "verified": false
202
+ }
203
+ },
204
+ {
205
+ "user": {
206
+ "avatar": {
207
+ "large": {
208
+ "http_url": "http://avatars.tout.com/u/dd6a34abef787dc50fbe13c6a8a03599/large/44CCD821-A795-47E0-9C5B-C2EF22B9AEAF.png"
209
+ },
210
+ "medium": {
211
+ "http_url": "http://avatars.tout.com/u/dd6a34abef787dc50fbe13c6a8a03599/medium/44CCD821-A795-47E0-9C5B-C2EF22B9AEAF.png"
212
+ },
213
+ "profile": {
214
+ "http_url": "http://avatars.tout.com/u/dd6a34abef787dc50fbe13c6a8a03599/profile/44CCD821-A795-47E0-9C5B-C2EF22B9AEAF.png"
215
+ },
216
+ "small": {
217
+ "http_url": "http://avatars.tout.com/u/dd6a34abef787dc50fbe13c6a8a03599/small/44CCD821-A795-47E0-9C5B-C2EF22B9AEAF.png"
218
+ }
219
+ },
220
+ "bio": "",
221
+ "followers_count": 53,
222
+ "friendly_name": "A. Riseberry",
223
+ "friends_count": 377,
224
+ "fullname": "A. Riseberry",
225
+ "location": "Perth, Australia",
226
+ "touts_count": 16,
227
+ "uid": "a_reeezy",
228
+ "username": "A_Reeezy",
229
+ "verified": false
230
+ }
231
+ },
232
+ {
233
+ "user": {
234
+ "avatar": {
235
+ "large": {
236
+ "http_url": "http://avatars.tout.com/u/153aa9f84c0b99daf3caa27ac6c6e317/large/me_smiling.jpg"
237
+ },
238
+ "medium": {
239
+ "http_url": "http://avatars.tout.com/u/153aa9f84c0b99daf3caa27ac6c6e317/medium/me_smiling.jpg"
240
+ },
241
+ "profile": {
242
+ "http_url": "http://avatars.tout.com/u/153aa9f84c0b99daf3caa27ac6c6e317/profile/me_smiling.jpg"
243
+ },
244
+ "small": {
245
+ "http_url": "http://avatars.tout.com/u/153aa9f84c0b99daf3caa27ac6c6e317/small/me_smiling.jpg"
246
+ }
247
+ },
248
+ "bio": "Transplant from the North. I enjoy building and destroying. ",
249
+ "followers_count": 180,
250
+ "friendly_name": "Aaron Glenn",
251
+ "friends_count": 281,
252
+ "fullname": "Aaron Glenn",
253
+ "location": "Frisco, kid.",
254
+ "touts_count": 377,
255
+ "uid": "aaron",
256
+ "username": "aaron",
257
+ "verified": true
258
+ }
259
+ },
260
+ {
261
+ "user": {
262
+ "avatar": {
263
+ "large": {
264
+ "http_url": "http://avatars.tout.com/u/cc0bb35a20d3ae6217f461ffad56abf5/large/daphotographer.jpg"
265
+ },
266
+ "medium": {
267
+ "http_url": "http://avatars.tout.com/u/cc0bb35a20d3ae6217f461ffad56abf5/medium/daphotographer.jpg"
268
+ },
269
+ "profile": {
270
+ "http_url": "http://avatars.tout.com/u/cc0bb35a20d3ae6217f461ffad56abf5/profile/daphotographer.jpg"
271
+ },
272
+ "small": {
273
+ "http_url": "http://avatars.tout.com/u/cc0bb35a20d3ae6217f461ffad56abf5/small/daphotographer.jpg"
274
+ }
275
+ },
276
+ "bio": "",
277
+ "followers_count": 10,
278
+ "friendly_name": "Aaron D. Stallworth Jr. ",
279
+ "friends_count": 6,
280
+ "fullname": "Aaron D. Stallworth Jr. ",
281
+ "location": "Philadelphia PA",
282
+ "touts_count": 68,
283
+ "uid": "aaronstallworth",
284
+ "username": "AaronStallworth",
285
+ "verified": false
286
+ }
287
+ },
288
+ {
289
+ "user": {
290
+ "avatar": {
291
+ "large": {
292
+ "http_url": "http://avatars.tout.com/u/1fd16807212d105700557acd34f1469f/large/Tout_300x300.jpg"
293
+ },
294
+ "medium": {
295
+ "http_url": "http://avatars.tout.com/u/1fd16807212d105700557acd34f1469f/medium/Tout_300x300.jpg"
296
+ },
297
+ "profile": {
298
+ "http_url": "http://avatars.tout.com/u/1fd16807212d105700557acd34f1469f/profile/Tout_300x300.jpg"
299
+ },
300
+ "small": {
301
+ "http_url": "http://avatars.tout.com/u/1fd16807212d105700557acd34f1469f/small/Tout_300x300.jpg"
302
+ }
303
+ },
304
+ "bio": "Access Hollywood, currently in its 16th season is a national syndicated entertainment news magazine ",
305
+ "followers_count": 2005,
306
+ "friendly_name": "Access Hollywood",
307
+ "friends_count": 39,
308
+ "fullname": "Access Hollywood",
309
+ "location": "Hollywood, CA",
310
+ "touts_count": 73,
311
+ "uid": "accesshollywood",
312
+ "username": "AccessHollywood",
313
+ "verified": true
314
+ }
315
+ },
316
+ {
317
+ "user": {
318
+ "avatar": {
319
+ "large": {
320
+ "http_url": "http://avatars.tout.com/u/844dcf63e649f2b29315ce751b412a31/large/photo__1_.JPG"
321
+ },
322
+ "medium": {
323
+ "http_url": "http://avatars.tout.com/u/844dcf63e649f2b29315ce751b412a31/medium/photo__1_.JPG"
324
+ },
325
+ "profile": {
326
+ "http_url": "http://avatars.tout.com/u/844dcf63e649f2b29315ce751b412a31/profile/photo__1_.JPG"
327
+ },
328
+ "small": {
329
+ "http_url": "http://avatars.tout.com/u/844dcf63e649f2b29315ce751b412a31/small/photo__1_.JPG"
330
+ }
331
+ },
332
+ "bio": "",
333
+ "followers_count": 4,
334
+ "friendly_name": "Audrea Storey",
335
+ "friends_count": 12,
336
+ "fullname": "Audrea Storey",
337
+ "location": "Thomasville, Georgia",
338
+ "touts_count": 0,
339
+ "uid": "adstorey",
340
+ "username": "adstorey",
341
+ "verified": false
342
+ }
343
+ },
344
+ {
345
+ "user": {
346
+ "avatar": {
347
+ "large": {
348
+ "http_url": "http://avatars.tout.com/u/1dedd0f770bf97e0407f5c619c3d8f62/large/1.jpg"
349
+ },
350
+ "medium": {
351
+ "http_url": "http://avatars.tout.com/u/1dedd0f770bf97e0407f5c619c3d8f62/medium/1.jpg"
352
+ },
353
+ "profile": {
354
+ "http_url": "http://avatars.tout.com/u/1dedd0f770bf97e0407f5c619c3d8f62/profile/1.jpg"
355
+ },
356
+ "small": {
357
+ "http_url": "http://avatars.tout.com/u/1dedd0f770bf97e0407f5c619c3d8f62/small/1.jpg"
358
+ }
359
+ },
360
+ "bio": "",
361
+ "followers_count": 9,
362
+ "friendly_name": "Anthony Hertel",
363
+ "friends_count": 21,
364
+ "fullname": "Anthony Hertel",
365
+ "location": "Miami, Fl",
366
+ "touts_count": 2,
367
+ "uid": "ahhertel9",
368
+ "username": "ahhertel9",
369
+ "verified": false
370
+ }
371
+ },
372
+ {
373
+ "user": {
374
+ "avatar": {
375
+ "large": {
376
+ "http_url": "http://avatars.tout.com/u/d76d75dc87078d7821ca395e93b248fd/large/AidenFoster.JPG"
377
+ },
378
+ "medium": {
379
+ "http_url": "http://avatars.tout.com/u/d76d75dc87078d7821ca395e93b248fd/medium/AidenFoster.JPG"
380
+ },
381
+ "profile": {
382
+ "http_url": "http://avatars.tout.com/u/d76d75dc87078d7821ca395e93b248fd/profile/AidenFoster.JPG"
383
+ },
384
+ "small": {
385
+ "http_url": "http://avatars.tout.com/u/d76d75dc87078d7821ca395e93b248fd/small/AidenFoster.JPG"
386
+ }
387
+ },
388
+ "bio": "",
389
+ "followers_count": 21,
390
+ "friendly_name": "Aiden\tFoster ",
391
+ "friends_count": 61,
392
+ "fullname": "Aiden\tFoster ",
393
+ "location": "Raleigh,North Carolina ",
394
+ "touts_count": 5,
395
+ "uid": "aidenfoster",
396
+ "username": "AidenFoster",
397
+ "verified": false
398
+ }
399
+ },
400
+ {
401
+ "user": {
402
+ "avatar": {
403
+ "large": {
404
+ "http_url": "http://avatars.tout.com/u/cd4a237a4b48801a6dfb9616905c09f6/large/800z052hun2.jpg"
405
+ },
406
+ "medium": {
407
+ "http_url": "http://avatars.tout.com/u/cd4a237a4b48801a6dfb9616905c09f6/medium/800z052hun2.jpg"
408
+ },
409
+ "profile": {
410
+ "http_url": "http://avatars.tout.com/u/cd4a237a4b48801a6dfb9616905c09f6/profile/800z052hun2.jpg"
411
+ },
412
+ "small": {
413
+ "http_url": "http://avatars.tout.com/u/cd4a237a4b48801a6dfb9616905c09f6/small/800z052hun2.jpg"
414
+ }
415
+ },
416
+ "bio": "",
417
+ "followers_count": 14,
418
+ "friendly_name": "Alan Maxson",
419
+ "friends_count": 30,
420
+ "fullname": "Alan Maxson",
421
+ "location": "Playa Del Rey, Ca",
422
+ "touts_count": 2,
423
+ "uid": "alanmaxson",
424
+ "username": "AlanMaxson",
425
+ "verified": false
426
+ }
427
+ },
428
+ {
429
+ "user": {
430
+ "avatar": {
431
+ "large": {
432
+ "http_url": "http://avatars.tout.com/u/69149b888571e33e64d3ffa2b4eef8ce/large/500.jpg"
433
+ },
434
+ "medium": {
435
+ "http_url": "http://avatars.tout.com/u/69149b888571e33e64d3ffa2b4eef8ce/medium/500.jpg"
436
+ },
437
+ "profile": {
438
+ "http_url": "http://avatars.tout.com/u/69149b888571e33e64d3ffa2b4eef8ce/profile/500.jpg"
439
+ },
440
+ "small": {
441
+ "http_url": "http://avatars.tout.com/u/69149b888571e33e64d3ffa2b4eef8ce/small/500.jpg"
442
+ }
443
+ },
444
+ "bio": "",
445
+ "followers_count": 8,
446
+ "friendly_name": "Albie Masland",
447
+ "friends_count": 4,
448
+ "fullname": "Albie Masland",
449
+ "location": "San Diego, California",
450
+ "touts_count": 3,
451
+ "uid": "albiemasland",
452
+ "username": "AlbieMasland",
453
+ "verified": false
454
+ }
455
+ },
456
+ {
457
+ "user": {
458
+ "avatar": {
459
+ "large": {
460
+ "http_url": "http://avatars.tout.com/u/212eba8342c452ff3ebc1233da6f3b19/large/00C9208D-965F-4B38-8C14-65FFB189703D.png"
461
+ },
462
+ "medium": {
463
+ "http_url": "http://avatars.tout.com/u/212eba8342c452ff3ebc1233da6f3b19/medium/00C9208D-965F-4B38-8C14-65FFB189703D.png"
464
+ },
465
+ "profile": {
466
+ "http_url": "http://avatars.tout.com/u/212eba8342c452ff3ebc1233da6f3b19/profile/00C9208D-965F-4B38-8C14-65FFB189703D.png"
467
+ },
468
+ "small": {
469
+ "http_url": "http://avatars.tout.com/u/212eba8342c452ff3ebc1233da6f3b19/small/00C9208D-965F-4B38-8C14-65FFB189703D.png"
470
+ }
471
+ },
472
+ "bio": "",
473
+ "followers_count": 29,
474
+ "friendly_name": "Alexander Fost",
475
+ "friends_count": 3,
476
+ "fullname": "Alexander Fost",
477
+ "location": "",
478
+ "touts_count": 35,
479
+ "uid": "alexanderfost",
480
+ "username": "AlexanderFost",
481
+ "verified": false
482
+ }
483
+ },
484
+ {
485
+ "user": {
486
+ "avatar": {
487
+ "large": {
488
+ "http_url": "http://avatars.tout.com/u/0a05e343f5b4b1652708b8955226a570/large/8114129D-B4EE-41BF-A950-B4C4AAF5458D.png"
489
+ },
490
+ "medium": {
491
+ "http_url": "http://avatars.tout.com/u/0a05e343f5b4b1652708b8955226a570/medium/8114129D-B4EE-41BF-A950-B4C4AAF5458D.png"
492
+ },
493
+ "profile": {
494
+ "http_url": "http://avatars.tout.com/u/0a05e343f5b4b1652708b8955226a570/profile/8114129D-B4EE-41BF-A950-B4C4AAF5458D.png"
495
+ },
496
+ "small": {
497
+ "http_url": "http://avatars.tout.com/u/0a05e343f5b4b1652708b8955226a570/small/8114129D-B4EE-41BF-A950-B4C4AAF5458D.png"
498
+ }
499
+ },
500
+ "bio": "I'm the @Glittarazzi business diva! I \u2665 high heels, PiNK nails, house music & politicians that look like Ken. Accessorize, people!\r\nhttp://www.glittarazzi.com",
501
+ "followers_count": 37,
502
+ "friendly_name": "Alicia Lewis",
503
+ "friends_count": 97,
504
+ "fullname": "Alicia Lewis",
505
+ "location": "Washington, DC",
506
+ "touts_count": 20,
507
+ "uid": "alilewis",
508
+ "username": "AliLewis",
509
+ "verified": false
510
+ }
511
+ },
512
+ {
513
+ "user": {
514
+ "avatar": {
515
+ "large": {
516
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
517
+ },
518
+ "medium": {
519
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
520
+ },
521
+ "profile": {
522
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
523
+ },
524
+ "small": {
525
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
526
+ }
527
+ },
528
+ "bio": null,
529
+ "followers_count": 0,
530
+ "friendly_name": "alisonhockenberry",
531
+ "friends_count": 2,
532
+ "fullname": null,
533
+ "location": null,
534
+ "touts_count": 0,
535
+ "uid": "alisonhockenberry",
536
+ "username": "alisonhockenberry",
537
+ "verified": false
538
+ }
539
+ },
540
+ {
541
+ "user": {
542
+ "avatar": {
543
+ "large": {
544
+ "http_url": "http://avatars.tout.com/u/4295b8437a5d783b3a23d0d32385b57f/large/David_Almacy.jpg"
545
+ },
546
+ "medium": {
547
+ "http_url": "http://avatars.tout.com/u/4295b8437a5d783b3a23d0d32385b57f/medium/David_Almacy.jpg"
548
+ },
549
+ "profile": {
550
+ "http_url": "http://avatars.tout.com/u/4295b8437a5d783b3a23d0d32385b57f/profile/David_Almacy.jpg"
551
+ },
552
+ "small": {
553
+ "http_url": "http://avatars.tout.com/u/4295b8437a5d783b3a23d0d32385b57f/small/David_Almacy.jpg"
554
+ }
555
+ },
556
+ "bio": "Edelman DC, fmr Bush White House staffer, husband, soccer dad, politics, \u03a6\u0394\u0398, UMD Terp fan.",
557
+ "followers_count": 8,
558
+ "friendly_name": "David Almacy",
559
+ "friends_count": 16,
560
+ "fullname": "David Almacy",
561
+ "location": "Washington, DC",
562
+ "touts_count": 9,
563
+ "uid": "almacy",
564
+ "username": "almacy",
565
+ "verified": false
566
+ }
567
+ },
568
+ {
569
+ "user": {
570
+ "avatar": {
571
+ "large": {
572
+ "http_url": "http://avatars.tout.com/u/8d448eb6172d7f81a88fa4b091b4533d/large/rr-enriquez-and-summer-love-sabayton-pics-20_reasonably_small.jpg"
573
+ },
574
+ "medium": {
575
+ "http_url": "http://avatars.tout.com/u/8d448eb6172d7f81a88fa4b091b4533d/medium/rr-enriquez-and-summer-love-sabayton-pics-20_reasonably_small.jpg"
576
+ },
577
+ "profile": {
578
+ "http_url": "http://avatars.tout.com/u/8d448eb6172d7f81a88fa4b091b4533d/profile/rr-enriquez-and-summer-love-sabayton-pics-20_reasonably_small.jpg"
579
+ },
580
+ "small": {
581
+ "http_url": "http://avatars.tout.com/u/8d448eb6172d7f81a88fa4b091b4533d/small/rr-enriquez-and-summer-love-sabayton-pics-20_reasonably_small.jpg"
582
+ }
583
+ },
584
+ "bio": "",
585
+ "followers_count": 18,
586
+ "friendly_name": "Alyssa\tMoyer",
587
+ "friends_count": 23,
588
+ "fullname": "Alyssa\tMoyer",
589
+ "location": "Auburn Hills, Michigan",
590
+ "touts_count": 2,
591
+ "uid": "alyssamoyer52",
592
+ "username": "alyssamoyer52",
593
+ "verified": false
594
+ }
595
+ },
596
+ {
597
+ "user": {
598
+ "avatar": {
599
+ "large": {
600
+ "http_url": "http://avatars.tout.com/u/4215ca57a4e18edc417cace08750b5b3/large/ambertwitter6.jpg"
601
+ },
602
+ "medium": {
603
+ "http_url": "http://avatars.tout.com/u/4215ca57a4e18edc417cace08750b5b3/medium/ambertwitter6.jpg"
604
+ },
605
+ "profile": {
606
+ "http_url": "http://avatars.tout.com/u/4215ca57a4e18edc417cace08750b5b3/profile/ambertwitter6.jpg"
607
+ },
608
+ "small": {
609
+ "http_url": "http://avatars.tout.com/u/4215ca57a4e18edc417cace08750b5b3/small/ambertwitter6.jpg"
610
+ }
611
+ },
612
+ "bio": "\"Well behaved women seldom make history...\"",
613
+ "followers_count": 549,
614
+ "friendly_name": "Amber Lyon",
615
+ "friends_count": 4,
616
+ "fullname": "Amber Lyon",
617
+ "location": "",
618
+ "touts_count": 36,
619
+ "uid": "amberlyon",
620
+ "username": "amberlyon",
621
+ "verified": true
622
+ }
623
+ },
624
+ {
625
+ "user": {
626
+ "avatar": {
627
+ "large": {
628
+ "http_url": "http://avatars.tout.com/u/6e74a58946d254ab0bf78e51de96c538/large/Screen_Shot_2012-03-28_at_2.26.41_PM.png"
629
+ },
630
+ "medium": {
631
+ "http_url": "http://avatars.tout.com/u/6e74a58946d254ab0bf78e51de96c538/medium/Screen_Shot_2012-03-28_at_2.26.41_PM.png"
632
+ },
633
+ "profile": {
634
+ "http_url": "http://avatars.tout.com/u/6e74a58946d254ab0bf78e51de96c538/profile/Screen_Shot_2012-03-28_at_2.26.41_PM.png"
635
+ },
636
+ "small": {
637
+ "http_url": "http://avatars.tout.com/u/6e74a58946d254ab0bf78e51de96c538/small/Screen_Shot_2012-03-28_at_2.26.41_PM.png"
638
+ }
639
+ },
640
+ "bio": "I am a TV host, author, and entrepreneur.",
641
+ "followers_count": 105,
642
+ "friendly_name": "Amber Mac",
643
+ "friends_count": 26,
644
+ "fullname": "Amber Mac",
645
+ "location": "Toronto, Ontario",
646
+ "touts_count": 13,
647
+ "uid": "ambermac",
648
+ "username": "AmberMac",
649
+ "verified": false
650
+ }
651
+ },
652
+ {
653
+ "user": {
654
+ "avatar": {
655
+ "large": {
656
+ "http_url": "http://avatars.tout.com/u/a7e5ab76c671e653d81c4d7d1d4f1b27/large/AMOVETweetTout.png"
657
+ },
658
+ "medium": {
659
+ "http_url": "http://avatars.tout.com/u/a7e5ab76c671e653d81c4d7d1d4f1b27/medium/AMOVETweetTout.png"
660
+ },
661
+ "profile": {
662
+ "http_url": "http://avatars.tout.com/u/a7e5ab76c671e653d81c4d7d1d4f1b27/profile/AMOVETweetTout.png"
663
+ },
664
+ "small": {
665
+ "http_url": "http://avatars.tout.com/u/a7e5ab76c671e653d81c4d7d1d4f1b27/small/AMOVETweetTout.png"
666
+ }
667
+ },
668
+ "bio": "",
669
+ "followers_count": 3,
670
+ "friendly_name": "AMOVE Movement",
671
+ "friends_count": 8,
672
+ "fullname": "AMOVE Movement",
673
+ "location": "Chicago, IL",
674
+ "touts_count": 0,
675
+ "uid": "amove",
676
+ "username": "AMOVE",
677
+ "verified": false
678
+ }
679
+ },
680
+ {
681
+ "user": {
682
+ "avatar": {
683
+ "large": {
684
+ "http_url": "http://avatars.tout.com/u/20808b74bc53bb88397bac76edd62323/large/Avatar_Anderson.jpg"
685
+ },
686
+ "medium": {
687
+ "http_url": "http://avatars.tout.com/u/20808b74bc53bb88397bac76edd62323/medium/Avatar_Anderson.jpg"
688
+ },
689
+ "profile": {
690
+ "http_url": "http://avatars.tout.com/u/20808b74bc53bb88397bac76edd62323/profile/Avatar_Anderson.jpg"
691
+ },
692
+ "small": {
693
+ "http_url": "http://avatars.tout.com/u/20808b74bc53bb88397bac76edd62323/small/Avatar_Anderson.jpg"
694
+ }
695
+ },
696
+ "bio": "Can\u2019t get enough @AndersonCooper? Follow us for insider info from his new daytime talk show \u2018Anderson.\u2019 Visit the website here: http://www.andersoncooper.com",
697
+ "followers_count": 683,
698
+ "friendly_name": "Anderson ",
699
+ "friends_count": 8,
700
+ "fullname": "Anderson ",
701
+ "location": "New York",
702
+ "touts_count": 5,
703
+ "uid": "anderson",
704
+ "username": "Anderson",
705
+ "verified": false
706
+ }
707
+ },
708
+ {
709
+ "user": {
710
+ "avatar": {
711
+ "large": {
712
+ "http_url": "http://avatars.tout.com/u/08f1ae1c73350697cd2e71566c3eef9e/large/andrea.jpg"
713
+ },
714
+ "medium": {
715
+ "http_url": "http://avatars.tout.com/u/08f1ae1c73350697cd2e71566c3eef9e/medium/andrea.jpg"
716
+ },
717
+ "profile": {
718
+ "http_url": "http://avatars.tout.com/u/08f1ae1c73350697cd2e71566c3eef9e/profile/andrea.jpg"
719
+ },
720
+ "small": {
721
+ "http_url": "http://avatars.tout.com/u/08f1ae1c73350697cd2e71566c3eef9e/small/andrea.jpg"
722
+ }
723
+ },
724
+ "bio": "",
725
+ "followers_count": 6,
726
+ "friendly_name": "Andrea Prearo",
727
+ "friends_count": 7,
728
+ "fullname": "Andrea Prearo",
729
+ "location": "San Francisco",
730
+ "touts_count": 10,
731
+ "uid": "andreaprearo",
732
+ "username": "andreaprearo",
733
+ "verified": false
734
+ }
735
+ },
736
+ {
737
+ "user": {
738
+ "avatar": {
739
+ "large": {
740
+ "http_url": "http://avatars.tout.com/u/d2ee92234f8c469b51c3b410170cf602/large/angelanyc.JPG"
741
+ },
742
+ "medium": {
743
+ "http_url": "http://avatars.tout.com/u/d2ee92234f8c469b51c3b410170cf602/medium/angelanyc.JPG"
744
+ },
745
+ "profile": {
746
+ "http_url": "http://avatars.tout.com/u/d2ee92234f8c469b51c3b410170cf602/profile/angelanyc.JPG"
747
+ },
748
+ "small": {
749
+ "http_url": "http://avatars.tout.com/u/d2ee92234f8c469b51c3b410170cf602/small/angelanyc.JPG"
750
+ }
751
+ },
752
+ "bio": "I'm a slash. Producer/Editor/Executive/Writer/Mom/Wife and many more. I have lived & learned how important Touting life's gifts and moments are which is why I started the blog and online hot spot http://www.ladiesliveandlearn.com",
753
+ "followers_count": 39,
754
+ "friendly_name": "Angela Burgin Logan",
755
+ "friends_count": 60,
756
+ "fullname": "Angela Burgin Logan",
757
+ "location": "Everywhere. And as a mom I do have eyes in the back of my head",
758
+ "touts_count": 12,
759
+ "uid": "angelablogan",
760
+ "username": "AngelaBLogan",
761
+ "verified": false
762
+ }
763
+ },
764
+ {
765
+ "user": {
766
+ "avatar": {
767
+ "large": {
768
+ "http_url": "http://avatars.tout.com/u/f9a2355f091d573a268979970787ef05/large/2.jpg"
769
+ },
770
+ "medium": {
771
+ "http_url": "http://avatars.tout.com/u/f9a2355f091d573a268979970787ef05/medium/2.jpg"
772
+ },
773
+ "profile": {
774
+ "http_url": "http://avatars.tout.com/u/f9a2355f091d573a268979970787ef05/profile/2.jpg"
775
+ },
776
+ "small": {
777
+ "http_url": "http://avatars.tout.com/u/f9a2355f091d573a268979970787ef05/small/2.jpg"
778
+ }
779
+ },
780
+ "bio": "",
781
+ "followers_count": 17,
782
+ "friendly_name": "Anthony Finger",
783
+ "friends_count": 36,
784
+ "fullname": "Anthony Finger",
785
+ "location": "Flagstaff,AZ",
786
+ "touts_count": 2,
787
+ "uid": "anthonyf",
788
+ "username": "AnthonyF",
789
+ "verified": false
790
+ }
791
+ },
792
+ {
793
+ "user": {
794
+ "avatar": {
795
+ "large": {
796
+ "http_url": "http://avatars.tout.com/u/3e8b4f3855920a613c64dc8efd49dde8/large/E41B417E-6FDC-432D-B082-E796142750AF.png"
797
+ },
798
+ "medium": {
799
+ "http_url": "http://avatars.tout.com/u/3e8b4f3855920a613c64dc8efd49dde8/medium/E41B417E-6FDC-432D-B082-E796142750AF.png"
800
+ },
801
+ "profile": {
802
+ "http_url": "http://avatars.tout.com/u/3e8b4f3855920a613c64dc8efd49dde8/profile/E41B417E-6FDC-432D-B082-E796142750AF.png"
803
+ },
804
+ "small": {
805
+ "http_url": "http://avatars.tout.com/u/3e8b4f3855920a613c64dc8efd49dde8/small/E41B417E-6FDC-432D-B082-E796142750AF.png"
806
+ }
807
+ },
808
+ "bio": null,
809
+ "followers_count": 6,
810
+ "friendly_name": "anthonypascucci52",
811
+ "friends_count": 32,
812
+ "fullname": null,
813
+ "location": null,
814
+ "touts_count": 97,
815
+ "uid": "anthonypascucci52",
816
+ "username": "anthonypascucci52",
817
+ "verified": false
818
+ }
819
+ },
820
+ {
821
+ "user": {
822
+ "avatar": {
823
+ "large": {
824
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
825
+ },
826
+ "medium": {
827
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
828
+ },
829
+ "profile": {
830
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
831
+ },
832
+ "small": {
833
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
834
+ }
835
+ },
836
+ "bio": null,
837
+ "followers_count": 4,
838
+ "friendly_name": "Anthony Zangrillo",
839
+ "friends_count": 6,
840
+ "fullname": "Anthony Zangrillo",
841
+ "location": "Oceanside, New York",
842
+ "touts_count": 0,
843
+ "uid": "anthonyzangrillo",
844
+ "username": "AnthonyZangrillo",
845
+ "verified": false
846
+ }
847
+ },
848
+ {
849
+ "user": {
850
+ "avatar": {
851
+ "large": {
852
+ "http_url": "http://avatars.tout.com/u/bceaefa24e5ef892236d6d50e0f37db6/large/icon-1329744056971.png"
853
+ },
854
+ "medium": {
855
+ "http_url": "http://avatars.tout.com/u/bceaefa24e5ef892236d6d50e0f37db6/medium/icon-1329744056971.png"
856
+ },
857
+ "profile": {
858
+ "http_url": "http://avatars.tout.com/u/bceaefa24e5ef892236d6d50e0f37db6/profile/icon-1329744056971.png"
859
+ },
860
+ "small": {
861
+ "http_url": "http://avatars.tout.com/u/bceaefa24e5ef892236d6d50e0f37db6/small/icon-1329744056971.png"
862
+ }
863
+ },
864
+ "bio": null,
865
+ "followers_count": 7,
866
+ "friendly_name": "Antonio Manno - Venezia",
867
+ "friends_count": 3,
868
+ "fullname": "Antonio Manno - Venezia",
869
+ "location": null,
870
+ "touts_count": 72,
871
+ "uid": "antoniomanno",
872
+ "username": "AntonioManno",
873
+ "verified": false
874
+ }
875
+ },
876
+ {
877
+ "user": {
878
+ "avatar": {
879
+ "large": {
880
+ "http_url": "http://avatars.tout.com/u/16bb061e0bb4e7534db40454f508ef5e/large/3.jpg"
881
+ },
882
+ "medium": {
883
+ "http_url": "http://avatars.tout.com/u/16bb061e0bb4e7534db40454f508ef5e/medium/3.jpg"
884
+ },
885
+ "profile": {
886
+ "http_url": "http://avatars.tout.com/u/16bb061e0bb4e7534db40454f508ef5e/profile/3.jpg"
887
+ },
888
+ "small": {
889
+ "http_url": "http://avatars.tout.com/u/16bb061e0bb4e7534db40454f508ef5e/small/3.jpg"
890
+ }
891
+ },
892
+ "bio": "",
893
+ "followers_count": 17,
894
+ "friendly_name": "Antonio Spinner",
895
+ "friends_count": 25,
896
+ "fullname": "Antonio Spinner",
897
+ "location": "Bristol,TN ",
898
+ "touts_count": 1,
899
+ "uid": "antoniospinner",
900
+ "username": "AntonioSpinner",
901
+ "verified": false
902
+ }
903
+ },
904
+ {
905
+ "user": {
906
+ "avatar": {
907
+ "large": {
908
+ "http_url": "http://avatars.tout.com/u/5bf68bfa84f544c96229837b1cbb2d61/large/post140151154665861rh0_reasonably_small.jpg"
909
+ },
910
+ "medium": {
911
+ "http_url": "http://avatars.tout.com/u/5bf68bfa84f544c96229837b1cbb2d61/medium/post140151154665861rh0_reasonably_small.jpg"
912
+ },
913
+ "profile": {
914
+ "http_url": "http://avatars.tout.com/u/5bf68bfa84f544c96229837b1cbb2d61/profile/post140151154665861rh0_reasonably_small.jpg"
915
+ },
916
+ "small": {
917
+ "http_url": "http://avatars.tout.com/u/5bf68bfa84f544c96229837b1cbb2d61/small/post140151154665861rh0_reasonably_small.jpg"
918
+ }
919
+ },
920
+ "bio": "",
921
+ "followers_count": 12,
922
+ "friendly_name": "Arla\tHayden",
923
+ "friends_count": 20,
924
+ "fullname": "Arla\tHayden",
925
+ "location": "Dana Point, Ca",
926
+ "touts_count": 3,
927
+ "uid": "arlahayden",
928
+ "username": "arlahayden",
929
+ "verified": false
930
+ }
931
+ },
932
+ {
933
+ "user": {
934
+ "avatar": {
935
+ "large": {
936
+ "http_url": "http://avatars.tout.com/u/09fb6e23c067d8ceea4c0a80345d43d0/large/607FBEE7-33E8-4CA5-894B-0A5D3BBEE74A.png"
937
+ },
938
+ "medium": {
939
+ "http_url": "http://avatars.tout.com/u/09fb6e23c067d8ceea4c0a80345d43d0/medium/607FBEE7-33E8-4CA5-894B-0A5D3BBEE74A.png"
940
+ },
941
+ "profile": {
942
+ "http_url": "http://avatars.tout.com/u/09fb6e23c067d8ceea4c0a80345d43d0/profile/607FBEE7-33E8-4CA5-894B-0A5D3BBEE74A.png"
943
+ },
944
+ "small": {
945
+ "http_url": "http://avatars.tout.com/u/09fb6e23c067d8ceea4c0a80345d43d0/small/607FBEE7-33E8-4CA5-894B-0A5D3BBEE74A.png"
946
+ }
947
+ },
948
+ "bio": "",
949
+ "followers_count": 59,
950
+ "friendly_name": "ARS",
951
+ "friends_count": 70,
952
+ "fullname": "",
953
+ "location": "Earth",
954
+ "touts_count": 470,
955
+ "uid": "ars",
956
+ "username": "ARS",
957
+ "verified": false
958
+ }
959
+ },
960
+ {
961
+ "user": {
962
+ "avatar": {
963
+ "large": {
964
+ "http_url": "http://avatars.tout.com/u/4993ad1f50eab13a2e5783bebb734ad6/large/icon-1334592143978.png"
965
+ },
966
+ "medium": {
967
+ "http_url": "http://avatars.tout.com/u/4993ad1f50eab13a2e5783bebb734ad6/medium/icon-1334592143978.png"
968
+ },
969
+ "profile": {
970
+ "http_url": "http://avatars.tout.com/u/4993ad1f50eab13a2e5783bebb734ad6/profile/icon-1334592143978.png"
971
+ },
972
+ "small": {
973
+ "http_url": "http://avatars.tout.com/u/4993ad1f50eab13a2e5783bebb734ad6/small/icon-1334592143978.png"
974
+ }
975
+ },
976
+ "bio": null,
977
+ "followers_count": 0,
978
+ "friendly_name": "Ashley",
979
+ "friends_count": 3,
980
+ "fullname": "Ashley",
981
+ "location": null,
982
+ "touts_count": 1,
983
+ "uid": "ashl3yb3ck",
984
+ "username": "ashl3yb3ck",
985
+ "verified": false
986
+ }
987
+ },
988
+ {
989
+ "user": {
990
+ "avatar": {
991
+ "large": {
992
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
993
+ },
994
+ "medium": {
995
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
996
+ },
997
+ "profile": {
998
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
999
+ },
1000
+ "small": {
1001
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
1002
+ }
1003
+ },
1004
+ "bio": "",
1005
+ "followers_count": 2,
1006
+ "friendly_name": "Ashley Fulloflove Williams",
1007
+ "friends_count": 5,
1008
+ "fullname": "Ashley Fulloflove Williams",
1009
+ "location": "",
1010
+ "touts_count": 0,
1011
+ "uid": "ashleyfulloflovewilliams",
1012
+ "username": "AshleyFullofloveWilliams",
1013
+ "verified": false
1014
+ }
1015
+ },
1016
+ {
1017
+ "user": {
1018
+ "avatar": {
1019
+ "large": {
1020
+ "http_url": "http://avatars.tout.com/u/a6a23eb674f14a21dcfa806d0e713db3/large/7871A178-00C5-4119-AF11-61C83F8D0595.png"
1021
+ },
1022
+ "medium": {
1023
+ "http_url": "http://avatars.tout.com/u/a6a23eb674f14a21dcfa806d0e713db3/medium/7871A178-00C5-4119-AF11-61C83F8D0595.png"
1024
+ },
1025
+ "profile": {
1026
+ "http_url": "http://avatars.tout.com/u/a6a23eb674f14a21dcfa806d0e713db3/profile/7871A178-00C5-4119-AF11-61C83F8D0595.png"
1027
+ },
1028
+ "small": {
1029
+ "http_url": "http://avatars.tout.com/u/a6a23eb674f14a21dcfa806d0e713db3/small/7871A178-00C5-4119-AF11-61C83F8D0595.png"
1030
+ }
1031
+ },
1032
+ "bio": null,
1033
+ "followers_count": 2,
1034
+ "friendly_name": "ausphotog",
1035
+ "friends_count": 10,
1036
+ "fullname": null,
1037
+ "location": null,
1038
+ "touts_count": 5,
1039
+ "uid": "ausphotog",
1040
+ "username": "ausphotog",
1041
+ "verified": false
1042
+ }
1043
+ },
1044
+ {
1045
+ "user": {
1046
+ "avatar": {
1047
+ "large": {
1048
+ "http_url": "http://avatars.tout.com/u/b093658f3b8abbdab5bfd692f3a7ac8b/large/C96F9F2E-6AA9-4D81-875E-C09407A3B5B9.png"
1049
+ },
1050
+ "medium": {
1051
+ "http_url": "http://avatars.tout.com/u/b093658f3b8abbdab5bfd692f3a7ac8b/medium/C96F9F2E-6AA9-4D81-875E-C09407A3B5B9.png"
1052
+ },
1053
+ "profile": {
1054
+ "http_url": "http://avatars.tout.com/u/b093658f3b8abbdab5bfd692f3a7ac8b/profile/C96F9F2E-6AA9-4D81-875E-C09407A3B5B9.png"
1055
+ },
1056
+ "small": {
1057
+ "http_url": "http://avatars.tout.com/u/b093658f3b8abbdab5bfd692f3a7ac8b/small/C96F9F2E-6AA9-4D81-875E-C09407A3B5B9.png"
1058
+ }
1059
+ },
1060
+ "bio": null,
1061
+ "followers_count": 2,
1062
+ "friendly_name": "azangara",
1063
+ "friends_count": 11,
1064
+ "fullname": null,
1065
+ "location": null,
1066
+ "touts_count": 0,
1067
+ "uid": "azangara",
1068
+ "username": "azangara",
1069
+ "verified": false
1070
+ }
1071
+ },
1072
+ {
1073
+ "user": {
1074
+ "avatar": {
1075
+ "large": {
1076
+ "http_url": "http://avatars.tout.com/u/22c63e3915ddb28f5cdcf31199a02d02/large/Profile_Pic.jpg"
1077
+ },
1078
+ "medium": {
1079
+ "http_url": "http://avatars.tout.com/u/22c63e3915ddb28f5cdcf31199a02d02/medium/Profile_Pic.jpg"
1080
+ },
1081
+ "profile": {
1082
+ "http_url": "http://avatars.tout.com/u/22c63e3915ddb28f5cdcf31199a02d02/profile/Profile_Pic.jpg"
1083
+ },
1084
+ "small": {
1085
+ "http_url": "http://avatars.tout.com/u/22c63e3915ddb28f5cdcf31199a02d02/small/Profile_Pic.jpg"
1086
+ }
1087
+ },
1088
+ "bio": "Babe's Honey Farm was founded in 1945 by Babe & Charlie Warren with a small loan from a credit union and single beehive Charlie found in the forest. They spent their lives building Western Canada's favorite bee farm and provided Vancouver Island with local honey for over 60 years.\r\n\r\nBabe passed in 2006, three years after Charlie, and Babe's Honey Farm was sold to a local businessman and a handful of investors. In January of 2011, Babe's Honey went into receivership and it's assets went up for auction on June 29th 2011.\r\n\r\nBut that's not the whole story. The former employees attended the auction and with the support of their family and some close friends they bought the Babe's Honey name, the bees, the trucks, and enough equipment to manage 1000 honey bee colonies were determined to re-establish the business.\r\n\r\nAfter months of working behind the scenes, we re-organized our operation and re-launch Babe's Honey Farm on Feb 14th 2012. We are now located at Galey's Farm on Blenkinsop Rd and look forward to seeing you all there soon.",
1089
+ "followers_count": 0,
1090
+ "friendly_name": "Babe's Honey Farm",
1091
+ "friends_count": 1,
1092
+ "fullname": "Babe's Honey Farm",
1093
+ "location": "Victoria B.C. Canada",
1094
+ "touts_count": 2,
1095
+ "uid": "babeshoneyfarm",
1096
+ "username": "babeshoneyfarm",
1097
+ "verified": false
1098
+ }
1099
+ },
1100
+ {
1101
+ "user": {
1102
+ "avatar": {
1103
+ "large": {
1104
+ "http_url": "http://avatars.tout.com/u/156d75c69bbdb5dedcb526337e5ccdee/large/BarbieHall.jpg"
1105
+ },
1106
+ "medium": {
1107
+ "http_url": "http://avatars.tout.com/u/156d75c69bbdb5dedcb526337e5ccdee/medium/BarbieHall.jpg"
1108
+ },
1109
+ "profile": {
1110
+ "http_url": "http://avatars.tout.com/u/156d75c69bbdb5dedcb526337e5ccdee/profile/BarbieHall.jpg"
1111
+ },
1112
+ "small": {
1113
+ "http_url": "http://avatars.tout.com/u/156d75c69bbdb5dedcb526337e5ccdee/small/BarbieHall.jpg"
1114
+ }
1115
+ },
1116
+ "bio": "",
1117
+ "followers_count": 30,
1118
+ "friendly_name": "Barbie Hall",
1119
+ "friends_count": 44,
1120
+ "fullname": "Barbie Hall",
1121
+ "location": "Winter Park,florida",
1122
+ "touts_count": 2,
1123
+ "uid": "barbie",
1124
+ "username": "BARBIE",
1125
+ "verified": false
1126
+ }
1127
+ },
1128
+ {
1129
+ "user": {
1130
+ "avatar": {
1131
+ "large": {
1132
+ "http_url": "http://avatars.tout.com/u/f95c55050053c0e6eb6141daf0136b6c/large/icon-1329500712353.png"
1133
+ },
1134
+ "medium": {
1135
+ "http_url": "http://avatars.tout.com/u/f95c55050053c0e6eb6141daf0136b6c/medium/icon-1329500712353.png"
1136
+ },
1137
+ "profile": {
1138
+ "http_url": "http://avatars.tout.com/u/f95c55050053c0e6eb6141daf0136b6c/profile/icon-1329500712353.png"
1139
+ },
1140
+ "small": {
1141
+ "http_url": "http://avatars.tout.com/u/f95c55050053c0e6eb6141daf0136b6c/small/icon-1329500712353.png"
1142
+ }
1143
+ },
1144
+ "bio": "",
1145
+ "followers_count": 16,
1146
+ "friendly_name": "Barb Pruitt",
1147
+ "friends_count": 8,
1148
+ "fullname": "Barb Pruitt",
1149
+ "location": "",
1150
+ "touts_count": 3,
1151
+ "uid": "barbpruitt",
1152
+ "username": "barbpruitt",
1153
+ "verified": false
1154
+ }
1155
+ },
1156
+ {
1157
+ "user": {
1158
+ "avatar": {
1159
+ "large": {
1160
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
1161
+ },
1162
+ "medium": {
1163
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
1164
+ },
1165
+ "profile": {
1166
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
1167
+ },
1168
+ "small": {
1169
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
1170
+ }
1171
+ },
1172
+ "bio": null,
1173
+ "followers_count": 7,
1174
+ "friendly_name": "bassplayer4god",
1175
+ "friends_count": 11,
1176
+ "fullname": null,
1177
+ "location": null,
1178
+ "touts_count": 3,
1179
+ "uid": "bassplayer4god",
1180
+ "username": "bassplayer4god",
1181
+ "verified": false
1182
+ }
1183
+ },
1184
+ {
1185
+ "user": {
1186
+ "avatar": {
1187
+ "large": {
1188
+ "http_url": "http://avatars.tout.com/u/5668ebe6d1d5ae7626f08ca615a32f39/large/IMG_0290.JPG"
1189
+ },
1190
+ "medium": {
1191
+ "http_url": "http://avatars.tout.com/u/5668ebe6d1d5ae7626f08ca615a32f39/medium/IMG_0290.JPG"
1192
+ },
1193
+ "profile": {
1194
+ "http_url": "http://avatars.tout.com/u/5668ebe6d1d5ae7626f08ca615a32f39/profile/IMG_0290.JPG"
1195
+ },
1196
+ "small": {
1197
+ "http_url": "http://avatars.tout.com/u/5668ebe6d1d5ae7626f08ca615a32f39/small/IMG_0290.JPG"
1198
+ }
1199
+ },
1200
+ "bio": "",
1201
+ "followers_count": 2,
1202
+ "friendly_name": "Barry-Dean Dewson",
1203
+ "friends_count": 35,
1204
+ "fullname": "Barry-Dean Dewson",
1205
+ "location": "The World",
1206
+ "touts_count": 11,
1207
+ "uid": "baz-world",
1208
+ "username": "Baz-World",
1209
+ "verified": false
1210
+ }
1211
+ },
1212
+ {
1213
+ "user": {
1214
+ "avatar": {
1215
+ "large": {
1216
+ "http_url": "http://avatars.tout.com/u/176c9918791e5bee943ce18d4df73f16/large/Susan_IMG_6038-1577663922-O.jpg"
1217
+ },
1218
+ "medium": {
1219
+ "http_url": "http://avatars.tout.com/u/176c9918791e5bee943ce18d4df73f16/medium/Susan_IMG_6038-1577663922-O.jpg"
1220
+ },
1221
+ "profile": {
1222
+ "http_url": "http://avatars.tout.com/u/176c9918791e5bee943ce18d4df73f16/profile/Susan_IMG_6038-1577663922-O.jpg"
1223
+ },
1224
+ "small": {
1225
+ "http_url": "http://avatars.tout.com/u/176c9918791e5bee943ce18d4df73f16/small/Susan_IMG_6038-1577663922-O.jpg"
1226
+ }
1227
+ },
1228
+ "bio": "",
1229
+ "followers_count": 39,
1230
+ "friendly_name": "Susan Becker",
1231
+ "friends_count": 85,
1232
+ "fullname": "Susan Becker",
1233
+ "location": "SF Bay Area",
1234
+ "touts_count": 103,
1235
+ "uid": "beckersuz",
1236
+ "username": "beckersuz",
1237
+ "verified": false
1238
+ }
1239
+ },
1240
+ {
1241
+ "user": {
1242
+ "avatar": {
1243
+ "large": {
1244
+ "http_url": "http://avatars.tout.com/u/ff4d8253a4b2bc52c4d87fdd43743ec7/large/Bec_Jenny_Museum.jpg"
1245
+ },
1246
+ "medium": {
1247
+ "http_url": "http://avatars.tout.com/u/ff4d8253a4b2bc52c4d87fdd43743ec7/medium/Bec_Jenny_Museum.jpg"
1248
+ },
1249
+ "profile": {
1250
+ "http_url": "http://avatars.tout.com/u/ff4d8253a4b2bc52c4d87fdd43743ec7/profile/Bec_Jenny_Museum.jpg"
1251
+ },
1252
+ "small": {
1253
+ "http_url": "http://avatars.tout.com/u/ff4d8253a4b2bc52c4d87fdd43743ec7/small/Bec_Jenny_Museum.jpg"
1254
+ }
1255
+ },
1256
+ "bio": "",
1257
+ "followers_count": 8,
1258
+ "friendly_name": "Bec P",
1259
+ "friends_count": 29,
1260
+ "fullname": "Bec P",
1261
+ "location": "Long Beach CA",
1262
+ "touts_count": 49,
1263
+ "uid": "bectweetohtay",
1264
+ "username": "bectweetohtay",
1265
+ "verified": false
1266
+ }
1267
+ },
1268
+ {
1269
+ "user": {
1270
+ "avatar": {
1271
+ "large": {
1272
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
1273
+ },
1274
+ "medium": {
1275
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
1276
+ },
1277
+ "profile": {
1278
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
1279
+ },
1280
+ "small": {
1281
+ "http_url": "//d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
1282
+ }
1283
+ },
1284
+ "bio": "",
1285
+ "followers_count": 0,
1286
+ "friendly_name": "beesonrick",
1287
+ "friends_count": 1,
1288
+ "fullname": "",
1289
+ "location": "",
1290
+ "touts_count": 0,
1291
+ "uid": "beesonrick",
1292
+ "username": "beesonrick",
1293
+ "verified": false
1294
+ }
1295
+ },
1296
+ {
1297
+ "user": {
1298
+ "avatar": {
1299
+ "large": {
1300
+ "http_url": "http://avatars.tout.com/u/a96e33ffb7c7ef983b1b7ecb3ac7a78c/large/bella2.JPG"
1301
+ },
1302
+ "medium": {
1303
+ "http_url": "http://avatars.tout.com/u/a96e33ffb7c7ef983b1b7ecb3ac7a78c/medium/bella2.JPG"
1304
+ },
1305
+ "profile": {
1306
+ "http_url": "http://avatars.tout.com/u/a96e33ffb7c7ef983b1b7ecb3ac7a78c/profile/bella2.JPG"
1307
+ },
1308
+ "small": {
1309
+ "http_url": "http://avatars.tout.com/u/a96e33ffb7c7ef983b1b7ecb3ac7a78c/small/bella2.JPG"
1310
+ }
1311
+ },
1312
+ "bio": null,
1313
+ "followers_count": 161,
1314
+ "friendly_name": "bellastyleshow",
1315
+ "friends_count": 64,
1316
+ "fullname": null,
1317
+ "location": null,
1318
+ "touts_count": 1964,
1319
+ "uid": "bellastyleshow",
1320
+ "username": "bellastyleshow",
1321
+ "verified": false
1322
+ }
1323
+ },
1324
+ {
1325
+ "user": {
1326
+ "avatar": {
1327
+ "large": {
1328
+ "http_url": "http://avatars.tout.com/u/7970f9a3ecd17210ae72ece321556637/large/28FB5118-F393-41D6-8698-9B0F28036400.png"
1329
+ },
1330
+ "medium": {
1331
+ "http_url": "http://avatars.tout.com/u/7970f9a3ecd17210ae72ece321556637/medium/28FB5118-F393-41D6-8698-9B0F28036400.png"
1332
+ },
1333
+ "profile": {
1334
+ "http_url": "http://avatars.tout.com/u/7970f9a3ecd17210ae72ece321556637/profile/28FB5118-F393-41D6-8698-9B0F28036400.png"
1335
+ },
1336
+ "small": {
1337
+ "http_url": "http://avatars.tout.com/u/7970f9a3ecd17210ae72ece321556637/small/28FB5118-F393-41D6-8698-9B0F28036400.png"
1338
+ }
1339
+ },
1340
+ "bio": null,
1341
+ "followers_count": 6,
1342
+ "friendly_name": "Benoit Lessard",
1343
+ "friends_count": 22,
1344
+ "fullname": "Benoit Lessard",
1345
+ "location": null,
1346
+ "touts_count": 8,
1347
+ "uid": "bennyduke",
1348
+ "username": "Bennyduke",
1349
+ "verified": false
1350
+ }
1351
+ },
1352
+ {
1353
+ "user": {
1354
+ "avatar": {
1355
+ "large": {
1356
+ "http_url": "http://avatars.tout.com/u/da842817ee7fea2cb35abaf7efa50a14/large/Androidify.jpg"
1357
+ },
1358
+ "medium": {
1359
+ "http_url": "http://avatars.tout.com/u/da842817ee7fea2cb35abaf7efa50a14/medium/Androidify.jpg"
1360
+ },
1361
+ "profile": {
1362
+ "http_url": "http://avatars.tout.com/u/da842817ee7fea2cb35abaf7efa50a14/profile/Androidify.jpg"
1363
+ },
1364
+ "small": {
1365
+ "http_url": "http://avatars.tout.com/u/da842817ee7fea2cb35abaf7efa50a14/small/Androidify.jpg"
1366
+ }
1367
+ },
1368
+ "bio": "",
1369
+ "followers_count": 0,
1370
+ "friendly_name": "Ben Cullen",
1371
+ "friends_count": 17,
1372
+ "fullname": "Ben Cullen",
1373
+ "location": "London, United Kingdom",
1374
+ "touts_count": 12,
1375
+ "uid": "benrcullen",
1376
+ "username": "benrcullen",
1377
+ "verified": false
1378
+ }
1379
+ },
1380
+ {
1381
+ "user": {
1382
+ "avatar": {
1383
+ "large": {
1384
+ "http_url": "http://avatars.tout.com/u/29db9494d904580328a2cdc674be7f90/large/800o0546Brv.jpg"
1385
+ },
1386
+ "medium": {
1387
+ "http_url": "http://avatars.tout.com/u/29db9494d904580328a2cdc674be7f90/medium/800o0546Brv.jpg"
1388
+ },
1389
+ "profile": {
1390
+ "http_url": "http://avatars.tout.com/u/29db9494d904580328a2cdc674be7f90/profile/800o0546Brv.jpg"
1391
+ },
1392
+ "small": {
1393
+ "http_url": "http://avatars.tout.com/u/29db9494d904580328a2cdc674be7f90/small/800o0546Brv.jpg"
1394
+ }
1395
+ },
1396
+ "bio": "",
1397
+ "followers_count": 12,
1398
+ "friendly_name": "William Berg",
1399
+ "friends_count": 46,
1400
+ "fullname": "William Berg",
1401
+ "location": "Christianburg, UTAH ",
1402
+ "touts_count": 7,
1403
+ "uid": "bergwilliam6",
1404
+ "username": "bergwilliam6",
1405
+ "verified": false
1406
+ }
1407
+ }
1408
+ ]
1409
+ }