linkedin-idkmybffjill 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +16 -0
- data/LICENSE +20 -0
- data/README.markdown +74 -0
- data/Rakefile +70 -0
- data/VERSION +1 -0
- data/examples/authenticate.rb +21 -0
- data/examples/network.rb +12 -0
- data/examples/profile.rb +14 -0
- data/examples/status.rb +9 -0
- data/lib/linked_in/api_standard_profile_request.rb +17 -0
- data/lib/linked_in/base.rb +13 -0
- data/lib/linked_in/birthdate.rb +21 -0
- data/lib/linked_in/client.rb +267 -0
- data/lib/linked_in/company.rb +11 -0
- data/lib/linked_in/connections.rb +19 -0
- data/lib/linked_in/country.rb +9 -0
- data/lib/linked_in/education.rb +44 -0
- data/lib/linked_in/error.rb +21 -0
- data/lib/linked_in/group.rb +35 -0
- data/lib/linked_in/location.rb +13 -0
- data/lib/linked_in/message.rb +31 -0
- data/lib/linked_in/network.rb +15 -0
- data/lib/linked_in/people.rb +21 -0
- data/lib/linked_in/person.rb +7 -0
- data/lib/linked_in/position.rb +49 -0
- data/lib/linked_in/profile.rb +54 -0
- data/lib/linked_in/recipient.rb +7 -0
- data/lib/linked_in/recipients.rb +14 -0
- data/lib/linked_in/update.rb +19 -0
- data/lib/linked_in/url_resource.rb +29 -0
- data/lib/linkedin.rb +97 -0
- data/test/client_test.rb +179 -0
- data/test/fixtures/blank.xml +0 -0
- data/test/fixtures/connections.xml +3733 -0
- data/test/fixtures/error.xml +7 -0
- data/test/fixtures/mailbox_items.xml +13 -0
- data/test/fixtures/network_status_with_group.xml +44 -0
- data/test/fixtures/network_statuses.xml +299 -0
- data/test/fixtures/picture_updates.xml +117 -0
- data/test/fixtures/profile.xml +9 -0
- data/test/fixtures/profile_full.xml +3849 -0
- data/test/fixtures/profile_with_positions.xml +79 -0
- data/test/fixtures/search.xml +538 -0
- data/test/fixtures/status.xml +2 -0
- data/test/oauth_test.rb +117 -0
- data/test/test_helper.rb +54 -0
- metadata +214 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<mailbox-item>
|
3
|
+
<recipients>
|
4
|
+
<recipient>
|
5
|
+
<person path="/people/~"/>
|
6
|
+
</recipient>
|
7
|
+
<recipient>
|
8
|
+
<person path="/people/abcdefg" />
|
9
|
+
</recipient>
|
10
|
+
</recipients>
|
11
|
+
<subject>Congratulations on your new position.</subject>
|
12
|
+
<body>You're certainly the best person for the job!</body>
|
13
|
+
</mailbox-item>
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<network>
|
3
|
+
<network-stats total="2">
|
4
|
+
<property key="degree-1-count">146</property>
|
5
|
+
<property key="degree-2-count">16998</property>
|
6
|
+
</network-stats>
|
7
|
+
<updates total="1" start="0" count="1">
|
8
|
+
<update>
|
9
|
+
<timestamp>1265063139120</timestamp>
|
10
|
+
<update-type>JGRP</update-type>
|
11
|
+
<update-content>
|
12
|
+
<person>
|
13
|
+
<id>Ib6zlxq9IX</id>
|
14
|
+
<first-name>Scott</first-name>
|
15
|
+
<last-name>Simon (7000+)</last-name>
|
16
|
+
<headline>President of Access Points Inc</headline>
|
17
|
+
<picture-url>http://media.linkedin.com/mpr/mprx/0_XGm9LHEp5HVsv24Z6haLLEaxWWDZvoWZQ8sWLwSfnuJeEmY4eXYVwIJ3bFSb9DeNL3uHo2xmFwqC</picture-url>
|
18
|
+
<api-standard-profile-request>
|
19
|
+
<url>http://api.linkedin.com/v1/people/Ib6zlxq9IX:full</url>
|
20
|
+
<headers total="1">
|
21
|
+
<http-header>
|
22
|
+
<name>x-li-auth-token</name>
|
23
|
+
<value>name:Ect7</value>
|
24
|
+
</http-header>
|
25
|
+
</headers>
|
26
|
+
</api-standard-profile-request>
|
27
|
+
<site-standard-profile-request>
|
28
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=46471&authToken=Ect7&authType=name&trk=api*a101622*s101622*</url>
|
29
|
+
</site-standard-profile-request>
|
30
|
+
<member-groups total="1">
|
31
|
+
<member-group>
|
32
|
+
<id>1785828</id>
|
33
|
+
<name>IT Atlanta</name>
|
34
|
+
<site-group-request>
|
35
|
+
<url>http://www.linkedin.com/groups?gid=1785828</url>
|
36
|
+
</site-group-request>
|
37
|
+
</member-group>
|
38
|
+
</member-groups>
|
39
|
+
</person>
|
40
|
+
</update-content>
|
41
|
+
<is-commentable>false</is-commentable>
|
42
|
+
</update>
|
43
|
+
</updates>
|
44
|
+
</network>
|
@@ -0,0 +1,299 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<network>
|
3
|
+
<network-stats total="2">
|
4
|
+
<property key="degree-1-count">146</property>
|
5
|
+
<property key="degree-2-count">16998</property>
|
6
|
+
</network-stats>
|
7
|
+
<updates total="122" start="0" count="10">
|
8
|
+
<update>
|
9
|
+
<timestamp>1259179809524</timestamp>
|
10
|
+
<update-key>STAT-19408512-118-*1</update-key>
|
11
|
+
<update-type>STAT</update-type>
|
12
|
+
<update-content>
|
13
|
+
<person>
|
14
|
+
<id>19408512</id>
|
15
|
+
<first-name>Vahid</first-name>
|
16
|
+
<last-name>Behzadi (vahid@cybercoders.com)</last-name>
|
17
|
+
<headline>Executive Recruiter at CyberCoders - Recruiting Manager</headline>
|
18
|
+
<connections total="1">
|
19
|
+
<person>
|
20
|
+
<id>28072758</id>
|
21
|
+
<first-name>Linda</first-name>
|
22
|
+
<last-name>Varone</last-name>
|
23
|
+
<headline>Best of Boston 2007 Feng Shui, Interior Design, Professional Speaker, Owner of Nurturing Spaces</headline>
|
24
|
+
<api-standard-profile-request>
|
25
|
+
<url>http://api.linkedin.com/v1/people/28072758:full</url>
|
26
|
+
<headers total="1">
|
27
|
+
<http-header>
|
28
|
+
<name>x-li-auth-token</name>
|
29
|
+
<value>name:R5H-</value>
|
30
|
+
</http-header>
|
31
|
+
</headers>
|
32
|
+
</api-standard-profile-request>
|
33
|
+
<site-standard-profile-request>
|
34
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=28072758&authToken=R5H-&authType=name&trk=api_1025_LUCIAN</url>
|
35
|
+
</site-standard-profile-request>
|
36
|
+
</person>
|
37
|
+
</connections>
|
38
|
+
<current-status>said: Etsy Dallas Jingle Bash – Shop local for the Holidays http://ping.fm/0P80n(I+live+in+Dallas)</current-status>
|
39
|
+
<api-standard-profile-request>
|
40
|
+
<url>http://api.linkedin.com/v1/people/Hz_9mRaUxh:full</url>
|
41
|
+
<headers total="1">
|
42
|
+
<http-header>
|
43
|
+
<name>x-li-auth-token</name>
|
44
|
+
<value>name:EPo9</value>
|
45
|
+
</http-header>
|
46
|
+
</headers>
|
47
|
+
</api-standard-profile-request>
|
48
|
+
<site-standard-profile-request>
|
49
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=19408512&authToken=EPo9&authType=name</url>
|
50
|
+
</site-standard-profile-request>
|
51
|
+
</person>
|
52
|
+
</update-content>
|
53
|
+
<is-commentable>true</is-commentable>
|
54
|
+
</update>
|
55
|
+
<update>
|
56
|
+
<timestamp>1259134444850</timestamp>
|
57
|
+
<update-key>STAT-10801267-18-*1</update-key>
|
58
|
+
<update-type>STAT</update-type>
|
59
|
+
<update-content>
|
60
|
+
<person>
|
61
|
+
<id>10801267</id>
|
62
|
+
<first-name>Michael</first-name>
|
63
|
+
<last-name>Bleigh</last-name>
|
64
|
+
<headline>Creative Director for Intridea</headline>
|
65
|
+
<current-status>Hate it when I get the ideas for four or five lengthy blog posts but don't have time to write any of them.</current-status>
|
66
|
+
<api-standard-profile-request>
|
67
|
+
<url>http://api.linkedin.com/v1/people/zIVkLLOYia:full</url>
|
68
|
+
<headers total="1">
|
69
|
+
<http-header>
|
70
|
+
<name>x-li-auth-token</name>
|
71
|
+
<value>name:BcLL</value>
|
72
|
+
</http-header>
|
73
|
+
</headers>
|
74
|
+
</api-standard-profile-request>
|
75
|
+
<site-standard-profile-request>
|
76
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=10801267&authToken=BcLL&authType=name</url>
|
77
|
+
</site-standard-profile-request>
|
78
|
+
</person>
|
79
|
+
</update-content>
|
80
|
+
<is-commentable>true</is-commentable>
|
81
|
+
</update>
|
82
|
+
<update>
|
83
|
+
<timestamp>1259118559812</timestamp>
|
84
|
+
<update-key>STAT-10801267-17-*1</update-key>
|
85
|
+
<update-type>STAT</update-type>
|
86
|
+
<update-content>
|
87
|
+
<person>
|
88
|
+
<id>10801267</id>
|
89
|
+
<first-name>Michael</first-name>
|
90
|
+
<last-name>Bleigh</last-name>
|
91
|
+
<headline>Creative Director for Intridea</headline>
|
92
|
+
<current-status>If you aren't exposing it to change in your app's UI, why do you need it in the database at all? Ex. currencies, roles, countries...</current-status>
|
93
|
+
<api-standard-profile-request>
|
94
|
+
<url>http://api.linkedin.com/v1/people/zIVkLLOYia:full</url>
|
95
|
+
<headers total="1">
|
96
|
+
<http-header>
|
97
|
+
<name>x-li-auth-token</name>
|
98
|
+
<value>name:BcLL</value>
|
99
|
+
</http-header>
|
100
|
+
</headers>
|
101
|
+
</api-standard-profile-request>
|
102
|
+
<site-standard-profile-request>
|
103
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=10801267&authToken=BcLL&authType=name</url>
|
104
|
+
</site-standard-profile-request>
|
105
|
+
</person>
|
106
|
+
</update-content>
|
107
|
+
<is-commentable>true</is-commentable>
|
108
|
+
</update>
|
109
|
+
<update>
|
110
|
+
<timestamp>1259104574686</timestamp>
|
111
|
+
<update-key>STAT-19408512-116-*1</update-key>
|
112
|
+
<update-type>STAT</update-type>
|
113
|
+
<update-content>
|
114
|
+
<person>
|
115
|
+
<id>19408512</id>
|
116
|
+
<first-name>Vahid</first-name>
|
117
|
+
<last-name>Behzadi (vahid@cybercoders.com)</last-name>
|
118
|
+
<headline>Executive Recruiter at CyberCoders - Recruiting Manager</headline>
|
119
|
+
<current-status>said: Nokia – The story of an Awesomely Innovative Company getting Out-innovated http://ping.fm/yTGmL</current-status>
|
120
|
+
<api-standard-profile-request>
|
121
|
+
<url>http://api.linkedin.com/v1/people/Hz_9mRaUxh:full</url>
|
122
|
+
<headers total="1">
|
123
|
+
<http-header>
|
124
|
+
<name>x-li-auth-token</name>
|
125
|
+
<value>name:EPo9</value>
|
126
|
+
</http-header>
|
127
|
+
</headers>
|
128
|
+
</api-standard-profile-request>
|
129
|
+
<site-standard-profile-request>
|
130
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=19408512&authToken=EPo9&authType=name</url>
|
131
|
+
</site-standard-profile-request>
|
132
|
+
</person>
|
133
|
+
</update-content>
|
134
|
+
<is-commentable>true</is-commentable>
|
135
|
+
</update>
|
136
|
+
<update>
|
137
|
+
<timestamp>1259094708174</timestamp>
|
138
|
+
<update-key>STAT-16571819-52-*1</update-key>
|
139
|
+
<update-type>STAT</update-type>
|
140
|
+
<update-content>
|
141
|
+
<person>
|
142
|
+
<id>16571819</id>
|
143
|
+
<first-name>Brian</first-name>
|
144
|
+
<last-name>Blankenship</last-name>
|
145
|
+
<headline>Interactive Creative Director at Balcom Agency</headline>
|
146
|
+
<current-status>Thanks @consuro for keeping @balcomagency humming today!</current-status>
|
147
|
+
<api-standard-profile-request>
|
148
|
+
<url>http://api.linkedin.com/v1/people/-5o6E7ti32:full</url>
|
149
|
+
<headers total="1">
|
150
|
+
<http-header>
|
151
|
+
<name>x-li-auth-token</name>
|
152
|
+
<value>name:NZ8c</value>
|
153
|
+
</http-header>
|
154
|
+
</headers>
|
155
|
+
</api-standard-profile-request>
|
156
|
+
<site-standard-profile-request>
|
157
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=16571819&authToken=NZ8c&authType=name</url>
|
158
|
+
</site-standard-profile-request>
|
159
|
+
</person>
|
160
|
+
</update-content>
|
161
|
+
<is-commentable>true</is-commentable>
|
162
|
+
</update>
|
163
|
+
<update>
|
164
|
+
<timestamp>1259094344698</timestamp>
|
165
|
+
<update-key>STAT-16571819-50-*1</update-key>
|
166
|
+
<update-type>STAT</update-type>
|
167
|
+
<update-content>
|
168
|
+
<person>
|
169
|
+
<id>16571819</id>
|
170
|
+
<first-name>Brian</first-name>
|
171
|
+
<last-name>Blankenship</last-name>
|
172
|
+
<headline>Interactive Creative Director at Balcom Agency</headline>
|
173
|
+
<current-status>Balcomites @balcomagency @chiphanna @sanichols etc buzz me via dm on Twit. Can't access anything else. Net still down?</current-status>
|
174
|
+
<api-standard-profile-request>
|
175
|
+
<url>http://api.linkedin.com/v1/people/-5o6E7ti32:full</url>
|
176
|
+
<headers total="1">
|
177
|
+
<http-header>
|
178
|
+
<name>x-li-auth-token</name>
|
179
|
+
<value>name:NZ8c</value>
|
180
|
+
</http-header>
|
181
|
+
</headers>
|
182
|
+
</api-standard-profile-request>
|
183
|
+
<site-standard-profile-request>
|
184
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=16571819&authToken=NZ8c&authType=name</url>
|
185
|
+
</site-standard-profile-request>
|
186
|
+
</person>
|
187
|
+
</update-content>
|
188
|
+
<is-commentable>true</is-commentable>
|
189
|
+
</update>
|
190
|
+
<update>
|
191
|
+
<timestamp>1259083650707</timestamp>
|
192
|
+
<update-key>STAT-3429308-40-*1</update-key>
|
193
|
+
<update-type>STAT</update-type>
|
194
|
+
<update-content>
|
195
|
+
<person>
|
196
|
+
<id>3429308</id>
|
197
|
+
<first-name>Daniel</first-name>
|
198
|
+
<last-name>Lathrop</last-name>
|
199
|
+
<headline>Digital Strategist at InvestigateWest</headline>
|
200
|
+
<current-status>My niece texted so much she broke her phone's keyboard. Now she has to text 'the old fashioned way.</current-status>
|
201
|
+
<api-standard-profile-request>
|
202
|
+
<url>http://api.linkedin.com/v1/people/1bJ9lghNE-:full</url>
|
203
|
+
<headers total="1">
|
204
|
+
<http-header>
|
205
|
+
<name>x-li-auth-token</name>
|
206
|
+
<value>name:FBW_</value>
|
207
|
+
</http-header>
|
208
|
+
</headers>
|
209
|
+
</api-standard-profile-request>
|
210
|
+
<site-standard-profile-request>
|
211
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=3429308&authToken=FBW_&authType=name</url>
|
212
|
+
</site-standard-profile-request>
|
213
|
+
</person>
|
214
|
+
</update-content>
|
215
|
+
<is-commentable>true</is-commentable>
|
216
|
+
</update>
|
217
|
+
<update>
|
218
|
+
<timestamp>1259080455770</timestamp>
|
219
|
+
<update-key>STAT-19408512-114-*1</update-key>
|
220
|
+
<update-type>STAT</update-type>
|
221
|
+
<update-content>
|
222
|
+
<person>
|
223
|
+
<id>19408512</id>
|
224
|
+
<first-name>Vahid</first-name>
|
225
|
+
<last-name>Behzadi (vahid@cybercoders.com)</last-name>
|
226
|
+
<headline>Executive Recruiter at CyberCoders - Recruiting Manager</headline>
|
227
|
+
<current-status>said: Eliot Spitzer, Now More Than Ever http://ping.fm/vUB3V</current-status>
|
228
|
+
<api-standard-profile-request>
|
229
|
+
<url>http://api.linkedin.com/v1/people/Hz_9mRaUxh:full</url>
|
230
|
+
<headers total="1">
|
231
|
+
<http-header>
|
232
|
+
<name>x-li-auth-token</name>
|
233
|
+
<value>name:EPo9</value>
|
234
|
+
</http-header>
|
235
|
+
</headers>
|
236
|
+
</api-standard-profile-request>
|
237
|
+
<site-standard-profile-request>
|
238
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=19408512&authToken=EPo9&authType=name</url>
|
239
|
+
</site-standard-profile-request>
|
240
|
+
</person>
|
241
|
+
</update-content>
|
242
|
+
<is-commentable>true</is-commentable>
|
243
|
+
</update>
|
244
|
+
<update>
|
245
|
+
<timestamp>1259042672786</timestamp>
|
246
|
+
<update-key>STAT-10801267-16-*1</update-key>
|
247
|
+
<update-type>STAT</update-type>
|
248
|
+
<update-content>
|
249
|
+
<person>
|
250
|
+
<id>10801267</id>
|
251
|
+
<first-name>Michael</first-name>
|
252
|
+
<last-name>Bleigh</last-name>
|
253
|
+
<headline>Creative Director for Intridea</headline>
|
254
|
+
<current-status>Anyone have an available couch.io or mongohq invite or code?</current-status>
|
255
|
+
<api-standard-profile-request>
|
256
|
+
<url>http://api.linkedin.com/v1/people/zIVkLLOYia:full</url>
|
257
|
+
<headers total="1">
|
258
|
+
<http-header>
|
259
|
+
<name>x-li-auth-token</name>
|
260
|
+
<value>name:BcLL</value>
|
261
|
+
</http-header>
|
262
|
+
</headers>
|
263
|
+
</api-standard-profile-request>
|
264
|
+
<site-standard-profile-request>
|
265
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=10801267&authToken=BcLL&authType=name</url>
|
266
|
+
</site-standard-profile-request>
|
267
|
+
</person>
|
268
|
+
</update-content>
|
269
|
+
<is-commentable>true</is-commentable>
|
270
|
+
</update>
|
271
|
+
<update>
|
272
|
+
<timestamp>1259019816599</timestamp>
|
273
|
+
<update-key>STAT-16571819-49-*1</update-key>
|
274
|
+
<update-type>STAT</update-type>
|
275
|
+
<update-content>
|
276
|
+
<person>
|
277
|
+
<id>16571819</id>
|
278
|
+
<first-name>Brian</first-name>
|
279
|
+
<last-name>Blankenship</last-name>
|
280
|
+
<headline>Interactive Creative Director at Balcom Agency</headline>
|
281
|
+
<current-status>RT @ULTRACEPT Many businesses unprepared for flu-related absences | Top Stories | Star-Telegram.com: http://bit.ly/6CqJ6T via @addthis</current-status>
|
282
|
+
<api-standard-profile-request>
|
283
|
+
<url>http://api.linkedin.com/v1/people/-5o6E7ti32:full</url>
|
284
|
+
<headers total="1">
|
285
|
+
<http-header>
|
286
|
+
<name>x-li-auth-token</name>
|
287
|
+
<value>name:NZ8c</value>
|
288
|
+
</http-header>
|
289
|
+
</headers>
|
290
|
+
</api-standard-profile-request>
|
291
|
+
<site-standard-profile-request>
|
292
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=16571819&authToken=NZ8c&authType=name</url>
|
293
|
+
</site-standard-profile-request>
|
294
|
+
</person>
|
295
|
+
</update-content>
|
296
|
+
<is-commentable>true</is-commentable>
|
297
|
+
</update>
|
298
|
+
</updates>
|
299
|
+
</network>
|
@@ -0,0 +1,117 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<network>
|
3
|
+
<network-stats total="2">
|
4
|
+
<property key="degree-1-count">146</property>
|
5
|
+
<property key="degree-2-count">17000</property>
|
6
|
+
</network-stats>
|
7
|
+
<updates total="4">
|
8
|
+
<update>
|
9
|
+
<timestamp>1258714582136</timestamp>
|
10
|
+
<update-key>PICU-6043885-ffe88342*3bee0*3453f*38ffb*3460fde2eb011-*1</update-key>
|
11
|
+
<update-type>PICU</update-type>
|
12
|
+
<update-content>
|
13
|
+
<person>
|
14
|
+
<id>6043885</id>
|
15
|
+
<first-name>Darrin</first-name>
|
16
|
+
<last-name>Tvrdy, PMP</last-name>
|
17
|
+
<headline>Project Manager / Business Systems Analyst IV at Hewlett-Packard</headline>
|
18
|
+
<picture-url>http://media.linkedin.com/mpr/mpr/shrink_80_80/p/1/000/03d/0d8/2c32744.jpg</picture-url>
|
19
|
+
<api-standard-profile-request>
|
20
|
+
<url>http://api.linkedin.com/v1/people/xNOObJb-yZ:full</url>
|
21
|
+
<headers total="1">
|
22
|
+
<http-header>
|
23
|
+
<name>x-li-auth-token</name>
|
24
|
+
<value>name:5DNj</value>
|
25
|
+
</http-header>
|
26
|
+
</headers>
|
27
|
+
</api-standard-profile-request>
|
28
|
+
<site-standard-profile-request>
|
29
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=6043885&authToken=5DNj&authType=name</url>
|
30
|
+
</site-standard-profile-request>
|
31
|
+
</person>
|
32
|
+
</update-content>
|
33
|
+
<is-commentable>true</is-commentable>
|
34
|
+
</update>
|
35
|
+
<update>
|
36
|
+
<timestamp>1258476132751</timestamp>
|
37
|
+
<update-key>PICU-6043885-070638e9*36873*34b5f*3ae0e*38317a0b7f845-*1</update-key>
|
38
|
+
<update-type>PICU</update-type>
|
39
|
+
<update-content>
|
40
|
+
<person>
|
41
|
+
<id>6043885</id>
|
42
|
+
<first-name>Darrin</first-name>
|
43
|
+
<last-name>Tvrdy, PMP</last-name>
|
44
|
+
<headline>Project Manager / Business Systems Analyst IV at Hewlett-Packard</headline>
|
45
|
+
<picture-url>http://media.linkedin.com/mpr/mpr/shrink_80_80/p/1/000/03c/2b2/32dd2ae.jpg</picture-url>
|
46
|
+
<api-standard-profile-request>
|
47
|
+
<url>http://api.linkedin.com/v1/people/xNOObJb-yZ:full</url>
|
48
|
+
<headers total="1">
|
49
|
+
<http-header>
|
50
|
+
<name>x-li-auth-token</name>
|
51
|
+
<value>name:5DNj</value>
|
52
|
+
</http-header>
|
53
|
+
</headers>
|
54
|
+
</api-standard-profile-request>
|
55
|
+
<site-standard-profile-request>
|
56
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=6043885&authToken=5DNj&authType=name</url>
|
57
|
+
</site-standard-profile-request>
|
58
|
+
</person>
|
59
|
+
</update-content>
|
60
|
+
<is-commentable>true</is-commentable>
|
61
|
+
</update>
|
62
|
+
<update>
|
63
|
+
<timestamp>1257874533025</timestamp>
|
64
|
+
<update-key>PICU-58354393-3ce71c91*32ae4*349e4*39292*3fe67cf5f53e3-*1</update-key>
|
65
|
+
<update-type>PICU</update-type>
|
66
|
+
<update-content>
|
67
|
+
<person>
|
68
|
+
<id>58354393</id>
|
69
|
+
<first-name>Paula</first-name>
|
70
|
+
<last-name>Netherland</last-name>
|
71
|
+
<headline>Owner, TreeFrog Studios</headline>
|
72
|
+
<picture-url>http://media.linkedin.com/mpr/mpr/shrink_80_80/p/3/000/03b/1fd/191b80c.jpg</picture-url>
|
73
|
+
<api-standard-profile-request>
|
74
|
+
<url>http://api.linkedin.com/v1/people/Wg56CgmrNZ:full</url>
|
75
|
+
<headers total="1">
|
76
|
+
<http-header>
|
77
|
+
<name>x-li-auth-token</name>
|
78
|
+
<value>name:ykZL</value>
|
79
|
+
</http-header>
|
80
|
+
</headers>
|
81
|
+
</api-standard-profile-request>
|
82
|
+
<site-standard-profile-request>
|
83
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=58354393&authToken=ykZL&authType=name</url>
|
84
|
+
</site-standard-profile-request>
|
85
|
+
</person>
|
86
|
+
</update-content>
|
87
|
+
<is-commentable>true</is-commentable>
|
88
|
+
</update>
|
89
|
+
<update>
|
90
|
+
<timestamp>1257862249721</timestamp>
|
91
|
+
<update-key>PICU-10801267-44155327*3e1a1*340bf*38507*313d4f654b91f-*1</update-key>
|
92
|
+
<update-type>PICU</update-type>
|
93
|
+
<update-content>
|
94
|
+
<person>
|
95
|
+
<id>10801267</id>
|
96
|
+
<first-name>Michael</first-name>
|
97
|
+
<last-name>Bleigh</last-name>
|
98
|
+
<headline>Creative Director for Intridea</headline>
|
99
|
+
<picture-url>http://media.linkedin.com/mpr/mpr/shrink_80_80/p/2/000/03b/1d6/1ae8bb6.jpg</picture-url>
|
100
|
+
<api-standard-profile-request>
|
101
|
+
<url>http://api.linkedin.com/v1/people/zIVkLLOYia:full</url>
|
102
|
+
<headers total="1">
|
103
|
+
<http-header>
|
104
|
+
<name>x-li-auth-token</name>
|
105
|
+
<value>name:BcLL</value>
|
106
|
+
</http-header>
|
107
|
+
</headers>
|
108
|
+
</api-standard-profile-request>
|
109
|
+
<site-standard-profile-request>
|
110
|
+
<url>http://www.linkedin.com/profile?viewProfile=&key=10801267&authToken=BcLL&authType=name</url>
|
111
|
+
</site-standard-profile-request>
|
112
|
+
</person>
|
113
|
+
</update-content>
|
114
|
+
<is-commentable>true</is-commentable>
|
115
|
+
</update>
|
116
|
+
</updates>
|
117
|
+
</network>
|