Git Product home page Git Product logo

Comments (7)

roxeteer avatar roxeteer commented on June 26, 2024 1

You need to opts.passReqToCallback to true to get the request as a parameter. Otherwise the callback will receive only payload and done.

from passport-jwt.

devendra1102 avatar devendra1102 commented on June 26, 2024 1

The passport.use() will automatically run when you call the passport.authenticate('jwt', cb). You should pass the authorization in header with valid JWT signed(user) token. If it valid and non-expired token then payload.subwill have user otherwise it doesnt contain user.

from passport-jwt.

iamsebastian avatar iamsebastian commented on June 26, 2024

True. This can be closed.

from passport-jwt.

Shahidbis avatar Shahidbis commented on June 26, 2024

this is the code i am using and when i do console.log(jwt_payload.sub), it always says "undefined" and fetches the first record from DB. Can somebody please help?
var JwtStrategy = require('passport-jwt').Strategy,
ExtractJwt = require('passport-jwt').ExtractJwt;
var passport = require('passport');
var User = require('../models/user');
var config = require('../config/main');

// Setup work and export for the JWT passport strategy
module.exports = function(passport) {
var opts = {}
opts.jwtFromRequest = ExtractJwt.fromAuthHeader();
opts.secretOrKey = config.secret;

opts.passReqToCallback = true;
//opts.issuer = "accounts.examplesoft.com";
//opts.audience = "yoursite.net";
passport.use(new JwtStrategy(opts, function(req, jwt_payload, done) {
console.log(jwt_payload.sub);
// console.log(req);
User.findOne({id: jwt_payload.sub}, function(err, user) {
if (err) {
return done(err, false);
}
if (user) {
done(null, user);
} else {
done(null, false);
// or you could create a new account
}
});
}));
};

from passport-jwt.

Shahidbis avatar Shahidbis commented on June 26, 2024

Fixed it.
Thanks for your help @devendra1102

from passport-jwt.

oyedotunsodiq045 avatar oyedotunsodiq045 commented on June 26, 2024

show us d code at shahihedy

from passport-jwt.

GayathriMohan avatar GayathriMohan commented on June 26, 2024

Is there any way by which I could also get the server response in the JWTStrategy?

from passport-jwt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.