2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

missing parenthesis closes #7

This commit is contained in:
José F. Romaniello 2014-03-25 09:11:39 -03:00
parent c526326a1e
commit 0577d07b47

View File

@ -14,7 +14,7 @@ io.sockets
.on('connection', socketioJwt.authorize({
secret: 'your secret or public key',
timeout: 15000 // 15 seconds to send the authentication message
}).on('authenticated', function(socket) {
})).on('authenticated', function(socket) {
//this socket is authenticated, we are good to handle more events from it.
console.log('hello! ' + socket.decoded_token.name);
}));
@ -76,4 +76,4 @@ npm test
## License
Licensed under the MIT-License.
2013 AUTH10 LLC.
2013 AUTH10 LLC.