jwt-node-express
jwt-node-express copied to clipboard
app is not defined
in jwtauth.js , app is not defind
line 29
var decoded = jwt.decode(token, app.get('jwtTokenSecret'))
Add req before app.get. This way:
var decoded = jwt.decode(token, req.app.get('superSecret'))