Passport js local strategy custom callback “Missing credentials”

a 夏天 提交于 2020-05-11 07:17:34

问题


I have a really annoying problem with Node js, express 4 and passport. I have tried all options I can think of, but still no solution. Couldn't find a solution from other posts for this problem.

Code:

app.post('/login', function(req, res, next) {

    console.log(req.body.user_email);
    console.log(req.body.user_password);

    passport.authenticate('local', function(err, user, info) {

        console.log(info);
...

The problem is that for some reason, passport does not get the credentials and says at the console.log(info) "Missing credentials", although when the username and password are logged above they are correct. The local strategy should also be configured properly:

passport.use(new LocalStrategy ({

    usernameField: 'user_email',
    passwordField: 'user_password',
    },

    function(username, password, done) {

        console.log(username);
        console.log(password);
...

The "function(username, password, done)" never gets run, because of the "Missing credentials".

The funny part is that from another html/ejs page where a call for authentication is made with:

app.post('/login_user', passport.authenticate('local', { successRedirect: '/loginSuccess', failureRedirect: '/loginFailure' }));

the problem does not exist.

Does anybody know what I am missing here?!?!

Thanks!


回答1:


How you format the data in HTML form

Here I'm using Postman to demonstrate your issue:

This is not good

Just the output that I want

Not closing with (req, res)

Although this might not be related a bit, but the same problem occurs if I didn't do this.

  1. Invoke req and res parameters before initiating the passport.authenticate
  2. After you close the passport.authenticate, finish it with (req, res)

You need (req, res) at the end of your function, as so:

router.post('/signup', 
(req, res, next) => passport.authenticate('whatever-your-strategy-name-is', function(err, user, info) {

    // Just to see the sample expected output
    res.send(JSON.stringify(info)).status(200)

  })(req, res)
);

In standard familiar JS, it looks like this.

router.post('/signup', function (req, res, next) {

  passport.authenticate('whatever-your-strategy-name-is', function(err, user, info) {

    // Just to see the sample expected output
    res.send(JSON.stringify(info)).status(200)

  })(req, res) // passport.authenticate ends here
})



回答2:


There is one minor mistake or correction required.

You are doing:

app.post('/login', function(req, res, next) {

    console.log(req.body.user_email);
    console.log(req.body.user_password);

    passport.authenticate('local', function(err, user, info) {

        console.log(info);

Just create a user variable and set the passed in user_email & user_password as shown below.

app.post('/login', function(req, res, next) {

    console.log(req.body.user_email);
    console.log(req.body.user_password);

    var user = req.body;

    passport.authenticate('local', function(err, user, info) {

        console.log(info); 

This should work.



来源:https://stackoverflow.com/questions/30145018/passport-js-local-strategy-custom-callback-missing-credentials

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!