From c6feb807d8f4fcd201632da3d0304b2cf3c8897a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20F=2E=20Romaniello?= Date: Fri, 29 May 2015 09:49:24 -0300 Subject: [PATCH] minor. closes #43 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b4bc2c..4906f2e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ io.sockets })).on('authenticated', function(socket) { //this socket is authenticated, we are good to handle more events from it. console.log('hello! ' + socket.decoded_token.name); - })); + }); ``` **Note:** If you are using a base64-encoded secret (e.g. your Auth0 secret key), you need to convert it to a Buffer: `Buffer('your secret key', 'base64')`