TypeError:jwt.sign不是函数
我包括快递等,包括:
var expressJwt = require('express-jwt'); //https://npmjs.org/package/express-jwt
var secret = 'this is the secret secret secret 12356';
var jwt = require('jsonwebtoken'); //https://npmjs.org/package/node-jsonwebtoken
然后定义我的Sequelize模型和结尾路线,并将其放在此处:
app.post('/authenticate', function (req, res) {
//TODO validate req.body.username and req.body.password
//if is invalid, return 401
if (!(req.body.username === 'john.doe' && req.body.password === 'foobar')) {
res.status(401).send('Wrong user or password');
return;
}
var profile = {
first_name: 'John',
last_name: 'Doe',
email: 'john@doe.com',
id: 123
};
// We are sending the profile inside the token
var token = jwt.sign(profile, secret, { expiresInMinutes: 60*5 });
res.json({ token: token });
});
当我在表单中输入John.Doe和foobar时,控制台告诉我jwt.sign不是一个函数,即使在安装了NPM之后也是如此。
解决方案
jsonWebToken仅用于验证/解码exts.js请求上的jwt。
如果需要对请求进行签名,则需要使用node-jsonwebToken:
https://github.com/auth0/node-jsonwebtoken
生长激素问题:
https://github.com/auth0/express-jwt/issues/48
这里有一篇很好的博文,介绍了你正在尝试做的事情:
https://matoski.com/article/jwt-express-node-mongoose/
相关文章