summaryrefslogtreecommitdiff
path: root/services/linkedin/oauth.json
blob: 3259391b3c2efb30fbe2cc9598a59d636e846b55 (plain) (blame)
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
{
   "version" : "0.1",
   "base_url" : "https://api.linkedin.com",
   "methods" : {
      "get_request_token" : {
         "path" : "/uas/oauth/requestToken",
         "method" : "GET",
         "expected_status" : [ 200, 400 ],
         "authentication" : true
      },
      "get_access_token" : {
         "path" : "/uas/oauth/accessToken",
         "method" : "GET",
         "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"
   }
}