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
|
{
"version" : "0.1",
"base_url" : "https://api.linkedin.com",
"methods" : {
"get_request_token" : {
"path" : "/uas/oauth/requestToken",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_signature_method=\":oauth_signature_method\", oauth_signature=\":oauth_signature\", oauth_timestamp=\":oauth_timestamp\", oauth_nonce=\":oauth_nonce\", oauth_version=\":oauth_version\", oauth_callback=\":oauth_callback\""
},
"expected_status" : [ 200, 400 ],
"authentication" : true
},
"get_access_token" : {
"path" : "/uas/oauth/accessToken",
"method" : "GET",
"headers" : {
"Authorization" : "OAuth oauth_consumer_key=\":oauth_consumer_key\", oauth_token=\":oauth_token\", oauth_verifier=\":oauth_verifier\", oauth_signature_method=\":oauth_signature_method\", oauth_signature=\":oauth_signature\", oauth_timestamp=\":oauth_timestamp\", oauth_nonce=\":oauth_nonce\", oauth_version=\":oauth_version\""
},
"expected_status" : [ 200, 400 ],
"authentication" : true
},
"authorize_token" : {
"path" : "/uas/oauth/authorize",
"method" : "GET",
"required_params" : [
"oauth_token"
],
"expected_status" : [ 302 ]
},
"invalidate_token" : {
"path" : "/uas/oauth/invalidateToken",
"method" : "GET",
"expected_status" : [ 200, 400 ],
"authentication" : true
}
},
"authority" : "http://github.com/SPORE",
"name" : "LinkedIn",
"meta" : {
"documentation" : "http://developer.linkedin.com/",
"module" : "OAuth"
}
}
|