kickboxer 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +53 -0
- data/Rakefile +13 -0
- data/kickboxer.gemspec +21 -0
- data/lib/kickboxer.rb +5 -0
- data/lib/kickboxer/config.rb +19 -0
- data/lib/kickboxer/name.rb +118 -0
- data/lib/kickboxer/person.rb +67 -0
- data/lib/kickboxer/request.rb +44 -0
- data/lib/kickboxer/response.rb +49 -0
- data/lib/kickboxer/version.rb +3 -0
- data/spec/fixtures/name-deduce-email.json +14 -0
- data/spec/fixtures/name-normalize.json +26 -0
- data/spec/fixtures/name-parse.json +10 -0
- data/spec/fixtures/name-similarity.json +45 -0
- data/spec/fixtures/name-stats-ambiguous.json +64 -0
- data/spec/fixtures/name-stats-both.json +62 -0
- data/spec/fixtures/name-stats-family.json +12 -0
- data/spec/fixtures/name-stats-given.json +57 -0
- data/spec/fixtures/person-email.json +450 -0
- data/spec/fixtures/person-facebook.json +122 -0
- data/spec/fixtures/person-phone.json +410 -0
- data/spec/fixtures/person-twitter.json +231 -0
- data/spec/kickboxer/config_spec.rb +12 -0
- data/spec/kickboxer/name_spec.rb +141 -0
- data/spec/kickboxer/person_spec.rb +87 -0
- data/spec/kickboxer/request_spec.rb +24 -0
- data/spec/kickboxer/response_spec.rb +40 -0
- data/spec/spec_helper.rb +18 -0
- metadata +127 -0
@@ -0,0 +1,122 @@
|
|
1
|
+
{
|
2
|
+
"status": 200,
|
3
|
+
"contactInfo": {
|
4
|
+
"familyName": "Lorang",
|
5
|
+
"givenName": "Bart",
|
6
|
+
"fullName": "Bart Lorang",
|
7
|
+
"websites":
|
8
|
+
[
|
9
|
+
{
|
10
|
+
"url": "http://fullcontact.com"
|
11
|
+
}
|
12
|
+
]
|
13
|
+
},
|
14
|
+
"photos":
|
15
|
+
[
|
16
|
+
{
|
17
|
+
"typeName": "Facebook",
|
18
|
+
"type": "facebook",
|
19
|
+
"typeId": "facebook",
|
20
|
+
"url": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/161274_651620441_7937905_n.jpg",
|
21
|
+
"isPrimary": true
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"typeName": "Quora",
|
25
|
+
"type": "quora",
|
26
|
+
"typeId": "quora",
|
27
|
+
"url": "http://qph.cf.quoracdn.net/main-thumb-235179-50-jKTxWZQMbAl9MrGaLTDAs19WUiZoCuPW.jpeg"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"typeName": "Linkedin",
|
31
|
+
"type": "linkedin",
|
32
|
+
"typeId": "linkedin",
|
33
|
+
"url": "http://media.linkedin.com/mpr/pub/image-24YYLlk7VOVyx4vHbB2m_YZnM8tEVXNxn4NgrixwM2axoWjK24YgfwS7MnuP13NJifCJ/bart-lorang.jpg"
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"demographics": {
|
37
|
+
"gender": "male"
|
38
|
+
},
|
39
|
+
"socialProfiles":
|
40
|
+
[
|
41
|
+
{
|
42
|
+
"typeName": "About Me",
|
43
|
+
"username": "lorangb",
|
44
|
+
"type": "aboutme",
|
45
|
+
"typeId": "aboutme",
|
46
|
+
"url": "http://about.me/lorangb"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"typeName": "Twitter",
|
50
|
+
"username": "lorangb",
|
51
|
+
"rss": "http://twitter.com/statuses/user_timeline/lorangb.rss",
|
52
|
+
"type": "twitter",
|
53
|
+
"typeId": "twitter",
|
54
|
+
"url": "http://twitter.com/lorangb"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"typeName": "Facebook",
|
58
|
+
"id": "651620441",
|
59
|
+
"username": "bartlorang",
|
60
|
+
"type": "facebook",
|
61
|
+
"typeId": "facebook",
|
62
|
+
"url": "http://www.facebook.com/bartlorang"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"typeName": "Flickr",
|
66
|
+
"id": "39267654@N00",
|
67
|
+
"rss": "http://api.flickr.com/services/feeds/photos_public.gne?id=39267654@N00&lang=en-us&format=rss_200",
|
68
|
+
"type": "flickr",
|
69
|
+
"typeId": "flickr",
|
70
|
+
"url": "http://www.flickr.com/photos/39267654@N00/"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"typeName": "Quora",
|
74
|
+
"username": "bart-lorang",
|
75
|
+
"type": "quora",
|
76
|
+
"typeId": "quora",
|
77
|
+
"url": "http://www.quora.com/bart-lorang"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"typeName": "Linkedin",
|
81
|
+
"username": "bartlorang",
|
82
|
+
"type": "linkedin",
|
83
|
+
"typeId": "linkedin",
|
84
|
+
"url": "http://www.linkedin.com/in/bartlorang"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"typeName": "Foursquare",
|
88
|
+
"username": "lorangb",
|
89
|
+
"type": "foursquare",
|
90
|
+
"typeId": "foursquare",
|
91
|
+
"url": "http://foursquare.com/lorangb"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"typeName": "Google Profile",
|
95
|
+
"username": "lorangb",
|
96
|
+
"type": "googleprofile",
|
97
|
+
"typeId": "googleprofile",
|
98
|
+
"url": "http://profiles.google.com/lorangb"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"typeName": "Youtube",
|
102
|
+
"username": "rainmaker0MakeitRain",
|
103
|
+
"type": "youtube",
|
104
|
+
"typeId": "youtube",
|
105
|
+
"url": "http://youtube.com/user/rainmaker0MakeitRain"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"typeName": "Plancast",
|
109
|
+
"id": "1634762",
|
110
|
+
"username": "lorangb",
|
111
|
+
"type": "plancast",
|
112
|
+
"typeId": "plancast",
|
113
|
+
"url": "http://plancast.com/user/1634762"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"typeName": "Tungle Me",
|
117
|
+
"type": "tungleme",
|
118
|
+
"typeId": "tungleme",
|
119
|
+
"url": "http://tungle.me/bartlorang"
|
120
|
+
}
|
121
|
+
]
|
122
|
+
}
|
@@ -0,0 +1,410 @@
|
|
1
|
+
{
|
2
|
+
"status": 200,
|
3
|
+
"contactInfo": {
|
4
|
+
"familyName": "Lorang",
|
5
|
+
"givenName": "Bart",
|
6
|
+
"fullName": "Bart Lorang",
|
7
|
+
"websites":
|
8
|
+
[
|
9
|
+
{
|
10
|
+
"url": "http://blog.fullcontact.com"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"url": "http://whosent.it"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"url": "http://rainmaker.cc/"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"url": "http://rainmaker.cc"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"url": "http://fullcontact.com"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"chats":
|
26
|
+
[
|
27
|
+
{
|
28
|
+
"handle": "lorangb@gmail.com",
|
29
|
+
"client": "gtalk"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"handle": "bart.lorang",
|
33
|
+
"client": "skype"
|
34
|
+
}
|
35
|
+
]
|
36
|
+
},
|
37
|
+
"photos":
|
38
|
+
[
|
39
|
+
{
|
40
|
+
"typeName": "Twitter",
|
41
|
+
"type": "twitter",
|
42
|
+
"typeId": "twitter",
|
43
|
+
"url": "http://a0.twimg.com/profile_images/1364842224/Bart_Profile_1_normal.jpg"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"typeName": "Twitter",
|
47
|
+
"type": "twitter",
|
48
|
+
"typeId": "twitter",
|
49
|
+
"url": "http://a0.twimg.com/profile_images/642635573/ForsetiAvatar_normal.png"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"url": "http://a2.twimg.com/profile_images/642635573/ForsetiAvatar_normal.png",
|
53
|
+
"type": "twitter",
|
54
|
+
"typeId": "twitter",
|
55
|
+
"typeName": "Twitter"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"typeName": "Tungle Me",
|
59
|
+
"type": "tungleme",
|
60
|
+
"typeId": "tungleme",
|
61
|
+
"url": "https://tungle.me/public/bartlorang/Image"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"url": "http://social.sxsw.com//system/badge_photos/46809/thumb/photo.jpg",
|
65
|
+
"type": "sxsw",
|
66
|
+
"typeId": "sxsw",
|
67
|
+
"typeName": "SxSW"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"typeName": "Plancast",
|
71
|
+
"type": "plancast",
|
72
|
+
"typeId": "plancast",
|
73
|
+
"url": "http://plancast.com/uploads/pics/44636_pic_1314224723.jpg"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"typeName": "Plancast",
|
77
|
+
"type": "plancast",
|
78
|
+
"typeId": "plancast",
|
79
|
+
"url": "http://plancast.com/uploads/pics/44636_pic_square_1314224723.jpg"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"typeName": "Myspace",
|
83
|
+
"type": "myspace",
|
84
|
+
"typeId": "myspace",
|
85
|
+
"url": "http://a2.ec-images.myspacecdn.com/profile01/114/97c130815ed44e47a19080f970706dbe/s.jpg"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"url": "http://d2o7bfz2il9cb7.cloudfront.net/main-thumb-235179-100-jKTxWZQMbAl9MrGaLTDAs19WUiZoCuPW.jpeg",
|
89
|
+
"type": "quora",
|
90
|
+
"typeId": "quora",
|
91
|
+
"typeName": "Quora"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"url": "http://www.google.com/s2/photos/public/AIbEiAIAAABECJno7ZvvpqKayAEiC3ZjYXJkX3Bob3RvKihmYTAyNmViNGY4MDNjYWJiMDg2Y2I5ZjBhZDhlMWM5YzU2NTc1ZjVlMAG03P6jBkfZy8aWki7yrEp6B4HUDQ",
|
95
|
+
"type": "google profile",
|
96
|
+
"typeId": "other",
|
97
|
+
"typeName": "Other"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"url": "http://media.linkedin.com/mpr/pub/image-8kD9yK95845PPSkQ3U3ryL0B2bTfOSKQ2EBfy9Si3h5FEh6_/bart-lorang.jpg",
|
101
|
+
"type": "linkedin",
|
102
|
+
"typeId": "linkedin",
|
103
|
+
"typeName": "Linkedin"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"url": "http://i4.ytimg.com/vi/oVB_WdQXzls/default.jpg",
|
107
|
+
"type": "youtube",
|
108
|
+
"typeId": "youtube",
|
109
|
+
"typeName": "Youtube"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"url": "https://playfoursquare.s3.amazonaws.com/userpix_thumbs/V4ZAH05UTC5TWEYM.jpg",
|
113
|
+
"type": "foursquare",
|
114
|
+
"typeId": "foursquare",
|
115
|
+
"typeName": "Foursquare"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"url": "http://www.google.com/s2/photos/public/AIbEiAIAAABECJno7ZvvpqKayAEiC3ZjYXJkX3Bob3RvKigzMWI2OTJkYmVkZjE0NDMyMWZiZjY0ZmRjNGFkMWMyYjFiZTJiNzI5MAGr1Y9MU6EKYlsSx1dHmsrn4AYZ8g",
|
119
|
+
"type": "google profile",
|
120
|
+
"typeId": "other",
|
121
|
+
"typeName": "Other"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"typeName": "Gravatar",
|
125
|
+
"type": "gravatar",
|
126
|
+
"typeId": "gravatar",
|
127
|
+
"url": "http://1.gravatar.com/avatar/956b7dca7c77a12c43ebe9ae09dfaba8"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"typeName": "Gravatar",
|
131
|
+
"type": "gravatar",
|
132
|
+
"typeId": "gravatar",
|
133
|
+
"url": "http://2.gravatar.com/avatar/e1e94ffac5967195d81ac3e68ba8aa0c"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"typeName": "Facebook",
|
137
|
+
"type": "facebook",
|
138
|
+
"typeId": "facebook",
|
139
|
+
"url": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/161274_651620441_7937905_n.jpg",
|
140
|
+
"isPrimary": true
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"typeName": "Quora",
|
144
|
+
"type": "quora",
|
145
|
+
"typeId": "quora",
|
146
|
+
"url": "http://qph.cf.quoracdn.net/main-thumb-235179-50-jKTxWZQMbAl9MrGaLTDAs19WUiZoCuPW.jpeg"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"typeName": "Linkedin",
|
150
|
+
"type": "linkedin",
|
151
|
+
"typeId": "linkedin",
|
152
|
+
"url": "http://media.linkedin.com/mpr/pub/image-24YYLlk7VOVyx4vHbB2m_YZnM8tEVXNxn4NgrixwM2axoWjK24YgfwS7MnuP13NJifCJ/bart-lorang.jpg"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"typeName": "Facebook",
|
156
|
+
"type": "facebook",
|
157
|
+
"typeId": "facebook",
|
158
|
+
"url": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/41508_651620441_4210927_q.jpg"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"typeName": "Quora",
|
162
|
+
"type": "quora",
|
163
|
+
"typeId": "quora",
|
164
|
+
"url": "http://qph.cf.quoracdn.net/main-thumb-235179-200-jKTxWZQMbAl9MrGaLTDAs19WUiZoCuPW.jpeg"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"url": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/41508_651620441_4210927_n.jpg",
|
168
|
+
"type": "facebook",
|
169
|
+
"typeId": "facebook",
|
170
|
+
"typeName": "Facebook"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"typeName": "Other",
|
174
|
+
"type": "foursquare",
|
175
|
+
"typeId": "other",
|
176
|
+
"url": "https://is1.4sqi.net/userpix_thumbs/V4ZAH05UTC5TWEYM.jpg"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"url": "https://img-s.foursquare.com/userpix_thumbs/V4ZAH05UTC5TWEYM.jpg",
|
180
|
+
"type": "foursquare",
|
181
|
+
"typeId": "foursquare",
|
182
|
+
"typeName": "Foursquare"
|
183
|
+
}
|
184
|
+
],
|
185
|
+
"demographics": {
|
186
|
+
"age": "32",
|
187
|
+
"locationGeneral": "Denver, Colorado, United States",
|
188
|
+
"gender": "male",
|
189
|
+
"ageRange": "25-34"
|
190
|
+
},
|
191
|
+
"digitalFootprint": {
|
192
|
+
"topics":
|
193
|
+
[
|
194
|
+
{
|
195
|
+
"value": "entrepreneurship",
|
196
|
+
"provider": "klout"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"value": "angel investing",
|
200
|
+
"provider": "klout"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"value": "techstars",
|
204
|
+
"provider": "klout"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"value": "tequila",
|
208
|
+
"provider": "klout"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"value": "boulder",
|
212
|
+
"provider": "klout"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"value": "technology",
|
216
|
+
"provider": "klout"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"value": "denver broncos",
|
220
|
+
"provider": "klout"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"value": "tim tebow",
|
224
|
+
"provider": "klout"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"value": "sxsw",
|
228
|
+
"provider": "klout"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"scores":
|
232
|
+
[
|
233
|
+
{
|
234
|
+
"value": 48.21,
|
235
|
+
"provider": "klout",
|
236
|
+
"type": "general"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"value": 31.15,
|
240
|
+
"provider": "klout",
|
241
|
+
"type": "network"
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"value": 944,
|
245
|
+
"provider": "klout",
|
246
|
+
"type": "reach"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"value": 20,
|
250
|
+
"provider": "klout",
|
251
|
+
"type": "amplification"
|
252
|
+
}
|
253
|
+
]
|
254
|
+
},
|
255
|
+
"socialProfiles":
|
256
|
+
[
|
257
|
+
{
|
258
|
+
"id": 5998422,
|
259
|
+
"typeName": "Twitter",
|
260
|
+
"following": 512,
|
261
|
+
"followers": 757,
|
262
|
+
"username": "lorangb",
|
263
|
+
"bio": "CEO & Co-Founder of @FullContactApp and @FullContactAPI - Tech Entrepreneur and Angel Investor.",
|
264
|
+
"type": "twitter",
|
265
|
+
"typeId": "twitter",
|
266
|
+
"url": "http://www.twitter.com/lorangb",
|
267
|
+
"rss": "http://twitter.com/statuses/user_timeline/lorangb.rss"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"typeName": "Tungle Me",
|
271
|
+
"username": "bartlorang",
|
272
|
+
"type": "tungleme",
|
273
|
+
"typeId": "tungleme",
|
274
|
+
"url": "http://tungle.me/bartlorang"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"typeName": "Facebook",
|
278
|
+
"type": "facebook",
|
279
|
+
"typeId": "facebook",
|
280
|
+
"url": "http://facebook.com/bart.lorang",
|
281
|
+
"id": "651620441",
|
282
|
+
"username": "bart.lorang"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"typeName": "Linkedin",
|
286
|
+
"type": "linkedin",
|
287
|
+
"typeId": "linkedin",
|
288
|
+
"url": "http://www.linkedin.com/in/bartlorang",
|
289
|
+
"username": "bartlorang"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"type": "sxsw",
|
293
|
+
"url": "http://social.sxsw.com/users/46809",
|
294
|
+
"id": 46809,
|
295
|
+
"typeId": "sxsw",
|
296
|
+
"typeName": "SxSW"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"id": 44636,
|
300
|
+
"typeName": "Plancast",
|
301
|
+
"username": "lorangb",
|
302
|
+
"bio": "CEO & Co-Founder of FullContact",
|
303
|
+
"type": "plancast",
|
304
|
+
"typeId": "plancast",
|
305
|
+
"url": "http://plancast.com/lorangb"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"id": "137200880",
|
309
|
+
"typeName": "Myspace",
|
310
|
+
"type": "myspace",
|
311
|
+
"typeId": "myspace",
|
312
|
+
"url": "http://www.myspace.com/137200880",
|
313
|
+
"username": "137200880"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"type": "klout",
|
317
|
+
"typeId": "klout",
|
318
|
+
"typeName": "Klout",
|
319
|
+
"url": "http://www.klout.com/lorangb",
|
320
|
+
"username": "lorangb"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"url": "http://about.me/lorangb",
|
324
|
+
"type": "aboutme",
|
325
|
+
"username": "lorangb",
|
326
|
+
"typeId": "aboutme",
|
327
|
+
"typeName": "About Me"
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"url": "http://www.quora.com/bart-lorang",
|
331
|
+
"type": "quora",
|
332
|
+
"username": "bart-lorang",
|
333
|
+
"typeId": "quora",
|
334
|
+
"typeName": "Quora"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"url": "http://foursquare.com/lorangb",
|
338
|
+
"type": "foursquare",
|
339
|
+
"username": "lorangb",
|
340
|
+
"typeId": "foursquare",
|
341
|
+
"typeName": "Foursquare",
|
342
|
+
"id": "10245647"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"url": "http://profiles.google.com/lorangb",
|
346
|
+
"type": "googleprofile",
|
347
|
+
"username": "lorangb",
|
348
|
+
"typeId": "googleprofile",
|
349
|
+
"typeName": "Google Profile",
|
350
|
+
"id": "114426306375480734745"
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"url": "http://youtube.com/user/lorangb",
|
354
|
+
"type": "youtube",
|
355
|
+
"username": "lorangb",
|
356
|
+
"rss": "http://youtube.com/rss/user/lorangb/videos.rss",
|
357
|
+
"typeId": "youtube",
|
358
|
+
"typeName": "Youtube"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"url": "http://picasaweb.google.com/lorangb",
|
362
|
+
"id": "114426306375480734745",
|
363
|
+
"type": "picasa",
|
364
|
+
"username": "lorangb",
|
365
|
+
"rss": "http://picasaweb.google.com/data/feed/base/user/lorangb?kind=album&alt=rss&hl=en_US&access=public",
|
366
|
+
"typeId": "picasa",
|
367
|
+
"typeName": "Picasa"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"url": "https://plus.google.com/114426306375480734745",
|
371
|
+
"id": "114426306375480734745",
|
372
|
+
"type": "googleplus",
|
373
|
+
"username": "lorangb",
|
374
|
+
"typeId": "googleplus",
|
375
|
+
"typeName": "Google Plus",
|
376
|
+
"bio": "CEO & Co-Founder of FullContact"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"typeName": "Gravatar",
|
380
|
+
"id": "18197740",
|
381
|
+
"username": "blorang",
|
382
|
+
"bio": "http://about.me/lorangb",
|
383
|
+
"type": "gravatar",
|
384
|
+
"typeId": "gravatar",
|
385
|
+
"url": "http://gravatar.com/blorang"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"typeName": "Flickr",
|
389
|
+
"username": "39267654@N00",
|
390
|
+
"type": "flickr",
|
391
|
+
"typeId": "flickr",
|
392
|
+
"url": "http://www.flickr.com/people/39267654@N00/",
|
393
|
+
"id": "39267654@N00",
|
394
|
+
"rss": "http://api.flickr.com/services/feeds/photos_public.gne?id=39267654@N00&lang=en-us&format=rss_200"
|
395
|
+
}
|
396
|
+
],
|
397
|
+
"organizations":
|
398
|
+
[
|
399
|
+
{
|
400
|
+
"title": "Co-Founder & CEO",
|
401
|
+
"name": "FullContact",
|
402
|
+
"isPrimary": true
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"name": "FullContact",
|
406
|
+
"title": "CEO",
|
407
|
+
"isPrimary": false
|
408
|
+
}
|
409
|
+
]
|
410
|
+
}
|