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
|
{
"version" : "0.1",
"base_url" : "http://api.linkedin.com",
"methods" : {
"send_message" : {
"path" : "/v1/people/~/mailbox",
"method" : "POST",
"required_payload" : true,
"expected_status" : [ 201 ]
},
"send_invitation" : {
"path" : "/v1/people/~/mailbox",
"method" : "POST",
"required_payload" : true,
"expected_status" : [ 201 ]
}
},
"authentication" : true,
"authority" : "http://github.com/SPORE",
"name" : "LinkedIn",
"meta" : {
"documentation" : "http://developer.linkedin.com/",
"module" : "Communications"
}
}
|