jsonwebtoken - Updated SignCallback to match functionality correctly.

This commit is contained in:
Daniel Heim
2016-02-25 22:04:39 +11:00
parent ab2462147a
commit d93ea49569
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -24,6 +24,11 @@ token = jwt.sign({ foo: 'bar' }, 'shhhhh');
cert = fs.readFileSync('private.key'); // get private key
token = jwt.sign({ foo: 'bar' }, cert, { algorithm: 'RS256'});
// sign asynchronously
jwt.sign({ foo: 'bar' }, cert, { algorithm: 'RS256' }, function(token: string) {
console.log(token);
});
/**
* jwt.verify
* https://github.com/auth0/node-jsonwebtoken#jwtverifytoken-secretorpublickey-options-callback