-
Notifications
You must be signed in to change notification settings - Fork 58
/
api-server.js
45 lines (36 loc) · 1.03 KB
/
api-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
const express = require('express');
const cors = require('cors');
const { expressjwt: jwt } = require('express-jwt');
const jwksRsa = require('jwks-rsa');
const app = express();
const authConfig = {
domain: 'brucke.auth0.com',
audience: 'http://localhost/',
appUri: 'http://localhost:4200',
};
if (!authConfig.domain || !authConfig.audience) {
throw 'Please make sure that auth_config.json is in place and populated';
}
app.use(
cors({
origin: authConfig.appUri,
})
);
const checkJwt = jwt({
secret: jwksRsa.expressJwtSecret({
cache: true,
rateLimit: true,
jwksRequestsPerMinute: 5,
jwksUri: `https://${authConfig.domain}/.well-known/jwks.json`,
}),
audience: authConfig.audience,
issuer: `https://${authConfig.domain}/`,
algorithms: ['RS256'],
});
app.get('/api/external', checkJwt, (req, res) => {
res.send({
msg: 'Your access token was successfully validated!',
});
});
const port = process.env.API_SERVER_PORT || 3001;
app.listen(port, () => console.log(`Api started on port ${port}`));