forked from hapijs/bell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest.js
42 lines (32 loc) · 933 Bytes
/
nest.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
'use strict';
// Load modules
const Hapi = require('hapi');
const Hoek = require('hoek');
const Bell = require('../');
const server = new Hapi.Server();
server.connection({ port: 8000 });
server.register(Bell, (err) => {
Hoek.assert(!err, err);
server.auth.strategy('nest', 'bell', {
provider: 'nest',
password: 'cookie_encryption_password_secure',
isSecure: false,
// Fill in your clientId and clientSecret
clientId: '',
clientSecret: ''
});
server.route({
method: '*',
path: '/bell/door',
config: {
auth: 'nest',
handler: function (request, reply) {
reply('<pre>' + JSON.stringify(request.auth.credentials, null, 4) + '</pre>');
}
}
});
server.start((err) => {
Hoek.assert(!err, err);
console.log('Server started at:', server.info.uri);
});
});