1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
{
"version" : "0.1",
"base_url" : "http://api.linkedin.com",
"methods" : {
"my_profile" : {
"path" : "/v1/people/~:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\"",
"Accept-Language" : ":lang"
},
"required_params" : [
"selector"
],
"optional_params" : [
"format",
"lang"
],
"expected_status" : [ 200 ]
},
"profile_by_id" : {
"path" : "/v1/people/id=:id:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\"",
"Accept-Language" : ":lang"
},
"required_params" : [
"id",
"selector"
],
"optional_params" : [
"format",
"lang"
],
"expected_status" : [ 200, 404 ]
},
"profile_by_url" : {
"path" : "/v1/people/url=:url:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\"",
"Accept-Language" : ":lang"
},
"required_params" : [
"url",
"selector"
],
"optional_params" : [
"format",
"lang"
],
"expected_status" : [ 200, 404 ]
},
"search_people" : {
"path" : "/v1/people-search:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\""
},
"required_params" : [
"selector"
],
"optional_params" : [
"keywords",
"first-name",
"last-name",
"company-name",
"current-company",
"title",
"current-title",
"school-name",
"current-school",
"country-code",
"postal-code",
"distance",
"facet",
"facets",
"start",
"count",
"sort",
"format"
],
"expected_status" : [ 200 ]
},
"my_connections" : {
"path" : "/v1/people/~/connections:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\""
},
"required_params" : [
"selector"
],
"optional_params" : [
"start",
"count",
"modified",
"modified-since",
"format"
],
"expected_status" : [ 200 ]
},
"connections_by_id" : {
"path" : "/v1/people/id=:id/connections:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\""
},
"required_params" : [
"id",
"selector"
],
"optional_params" : [
"start",
"count",
"modified",
"modified-since",
"format"
],
"expected_status" : [ 200, 404 ]
},
"connections_by_url" : {
"path" : "/v1/people/url=:url/connnections:selector",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_nonce=\":oauth_nonce\", oauth_signature_method=\":oauth_signature_method\", oauth_timestamp=\":oauth_timestamp\", oauth_token=\":oauth_token\", oauth_version=\":oauth_version\", oauth_signature=\":oauth_signature\""
},
"required_params" : [
"url",
"selector"
],
"optional_params" : [
"start",
"count",
"modified",
"modified-since",
"format"
],
"expected_status" : [ 200, 404 ]
}
},
"authentication" : true,
"authority" : "http://github.com/SPORE",
"name" : "LinkedIn",
"meta" : {
"documentation" : "http://developer.linkedin.com/",
"module" : "People"
}
}
|