面临护照问题
facing issue with passport js
我是 node js 的新手,我正在尝试使用 google passport 做一个授权示例,下面是我的代码:
index.js
const express = require('express');
const app = express();
var passport = require('passport');
var GoogleStrategy = require('passport-google-oauth20').Strategy;
passport.use(new GoogleStrategy({
clientID : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
callbackURL : "http://localhost/google/login",
passReqToCallback : true
},
function(accessToken, refreshToken, profile, done) {
return done(); //this is the issue, I am confused with it's use
}
));
app.get('/failed', function (req, res) {
res.send('failed login')
});
app.get('/final', function (req, res) {
res.send('finally google auth has done')
});
app.get('/auth/google',
passport.authenticate('google', { scope: ['profile'] }));
app.get('/google/login',
passport.authenticate('google', { failureRedirect: '/failed' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/final');
});
app.listen('80', () => {
console.log('server is running')
})
最后,我的目标是在不检查数据库值的情况下使用 google 成功登录,因为我只是在学习它。
node index.js
and then i am opening url: http://localhost/auth/google
我的程序在使用 google 凭据登录后应该 运行 get /final
但出现 TypeError: done is not a function
错误
我无法使用 done()
,我该如何解决它。
当您使用passReqToCallback : true
时,您需要更改回调函数的参数。 req
也需要作为回调函数的第一个参数传递。
你的回调函数参数应该是(req, accessToken, refreshToken, profile, done)
这就是您收到错误的原因:
done is not a function
试试这个:
passport.use(new GoogleStrategy({
clientID : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
callbackURL : "http://localhost/google/login",
passReqToCallback : true
},
function(req, accessToken, refreshToken, profile, done) {
return done(); // it will work now
}
));
我是 node js 的新手,我正在尝试使用 google passport 做一个授权示例,下面是我的代码:
index.js
const express = require('express');
const app = express();
var passport = require('passport');
var GoogleStrategy = require('passport-google-oauth20').Strategy;
passport.use(new GoogleStrategy({
clientID : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
callbackURL : "http://localhost/google/login",
passReqToCallback : true
},
function(accessToken, refreshToken, profile, done) {
return done(); //this is the issue, I am confused with it's use
}
));
app.get('/failed', function (req, res) {
res.send('failed login')
});
app.get('/final', function (req, res) {
res.send('finally google auth has done')
});
app.get('/auth/google',
passport.authenticate('google', { scope: ['profile'] }));
app.get('/google/login',
passport.authenticate('google', { failureRedirect: '/failed' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/final');
});
app.listen('80', () => {
console.log('server is running')
})
最后,我的目标是在不检查数据库值的情况下使用 google 成功登录,因为我只是在学习它。
node index.js
and then i am opening url: http://localhost/auth/google
我的程序在使用 google 凭据登录后应该 运行 get /final
但出现 TypeError: done is not a function
我无法使用 done()
,我该如何解决它。
当您使用passReqToCallback : true
时,您需要更改回调函数的参数。 req
也需要作为回调函数的第一个参数传递。
你的回调函数参数应该是(req, accessToken, refreshToken, profile, done)
这就是您收到错误的原因:
done is not a function
试试这个:
passport.use(new GoogleStrategy({
clientID : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
callbackURL : "http://localhost/google/login",
passReqToCallback : true
},
function(req, accessToken, refreshToken, profile, done) {
return done(); // it will work now
}
));