linkedin 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/linked_in/group.rb +9 -0
- data/test/fixtures/network_status_with_group.xml +44 -0
- metadata +4 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.7
|
@@ -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>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linkedin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wynn Netherland
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-02-05 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -103,6 +103,7 @@ files:
|
|
103
103
|
- lib/linked_in/country.rb
|
104
104
|
- lib/linked_in/education.rb
|
105
105
|
- lib/linked_in/error.rb
|
106
|
+
- lib/linked_in/group.rb
|
106
107
|
- lib/linked_in/location.rb
|
107
108
|
- lib/linked_in/network.rb
|
108
109
|
- lib/linked_in/people.rb
|
@@ -115,6 +116,7 @@ files:
|
|
115
116
|
- test/fixtures/blank.xml
|
116
117
|
- test/fixtures/connections.xml
|
117
118
|
- test/fixtures/error.xml
|
119
|
+
- test/fixtures/network_status_with_group.xml
|
118
120
|
- test/fixtures/network_statuses.xml
|
119
121
|
- test/fixtures/picture_updates.xml
|
120
122
|
- test/fixtures/profile.xml
|