-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
68 lines (59 loc) · 1.99 KB
/
server.js
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
const express = require('express');
const cors = require('cors');
var compression = require('compression')
const config = require('./config');
const { URLSearchParams } = require('url')
const fetch = require('node-fetch')
const app = express();
const LINKEDIN_ACCESS_TOKEN = 'https://www.linkedin.com/oauth/v2/accessToken'
const LINKEDIN_NAME_URL = 'https://api.linkedin.com/v2/me'
const LINKEDIN_PHOTO_URL = 'https://api.linkedin.com/v2/me?projection=(id,profilePicture(displayImage~:playableStreams))'
const fetchJSON = (...args) => fetch(...args).then(r => r.json())
// Use gzip compression
app.use(compression());
// configure CORS
app.use(cors(
{
origin: true,
credentials: true
})
);
app.get('/linkedin', async (req, res) => {
if(!req.query.code) {
return res
.status(400)
.send(
`No auth code provided!`
);
}
try {
const body = new URLSearchParams({
grant_type: 'authorization_code',
code: req.query.code,
redirect_uri: config.redirectURI,
client_id: config.clientID,
client_secret: config.clientSecret
})
const { access_token } = await fetchJSON(LINKEDIN_ACCESS_TOKEN, {
method: 'POST',
body
})
const payload = {
method: 'GET',
headers: { Authorization: `Bearer ${access_token}` }
}
const { localizedFirstName, localizedLastName } = await fetchJSON(
LINKEDIN_NAME_URL,
payload
)
const { profilePicture } = await fetchJSON(LINKEDIN_PHOTO_URL, payload)
res.send({
name: `${localizedFirstName} ${localizedLastName}`,
picture: profilePicture['displayImage~'].elements[0].identifiers[0].identifier
});
} catch (error) {
console.log(error)
}
})
// start server
app.listen(config.serverPort, () => console.log(`Express backend listening on port ${config.serverPort}.`));