我不确定这是否可行,但我想使用多种Google策略,以便根据链接/用户使用不同的范围集。
我创建了两个独立的护照变量:
passport = require('passport')
passport2 = require('passport')
我已将它们设置如下:
passport.use(new GoogleStrategy({
clientID: GOOGLE_CLIENT_ID,
clientSecret: GOOGLE_CLIENT_SECRET,
callbackURL: "http://localhost:3000/auth/callback"
},
function(accessToken, refreshToken, profile, done) {
// asynchronous verification, for effect...
process.nextTick(function (){
// Changing this to return the accessToken instead of the profile information
console.log(profile.displayName);
return done(null, [{token:accessToken,rToken:refreshToken,'profile':profile}]);
});
}
));
passport2.use(new GoogleStrategy({
clientID: GOOGLE_CLIENT_ID,
clientSecret: GOOGLE_CLIENT_SECRET,
callbackURL: "http://localhost:3000/join/callback"
},
function(accessToken, refreshToken, profile, done) {
// asynchronous verification, for effect...
process.nextTick(function (){
// Changing this to return the accessToken instead of the profile information
//console.log(profile);
return done(null, [{token:accessToken,rToken:refreshToken,'profile':profile}]);
});
}
))
对于我的路线,我有这个:
app.get('/auth',
passport.authenticate('google', {scope: ['scopes'],
accessType:'offline', approvalPrompt:'force'})
);
app.get('/joinreq',
passport2.authenticate('google', {scope: ['different_scopes]})
);
我的回调看起来像这样:
app.get('/join/callback', function(req,res){
console.log('made it to the join callback');
res.redirect('/great')
}
app.get('/auth/callback', function(req,res){
console.log('made it to the auth callback');
res.redirect('/index')
}
我能够成功地对每个范围成功进行身份验证 - 我遇到的问题是我的回调只会转到/join/callback
。
似乎变量passport2
正在覆盖passport
的值。
有什么方法可以解决这个问题吗?我想为管理员用户提供一组范围,为其他人提供一组范围。
答案 0 :(得分:5)
稍微更简洁的方法是使用单独的名称设置单独的身份验证点,而不是在每个请求上覆盖已注册的策略。默认情况下,passport会为GoogleStrategy提供名称"google"
,但您可以指定其他名称作为安装第二个策略的第一个参数。
// set up first Google strategy
passport.use('google', new GoogleStrategy({
clientID: GOOGLE_CLIENT_ID,
clientSecret: GOOGLE_CLIENT_SECRET,
callbackURL: "http://localhost:3000/join/callback"
}, function(accessToken, refreshToken, profile, done) {
...
}
)
// Second strategy -- could use different callback URL, etc.
passport.use('google-alt', new GoogleStrategy({
...
});
app.get('/auth', passport.authenticate('google', ['scopes']))
app.get('/joinauth', passport.authenticate('google-alt', ['scopes']))
答案 1 :(得分:1)
这是通过创建两个中间件函数来定义护照变量来解决的:
app.get('/auth',middlefunc,passport.authenticate('google',['scopes']))
app.get('/joinauth',middlefunc2,passport.authenticate('google',['scopes']))
function middlefunc(req,res,next){
passport.use(new GoogleStrategy({
clientID: GOOGLE_CLIENT_ID,
clientSecret: GOOGLE_CLIENT_SECRET,
callbackURL: "http://localhost:3000/join/callback"
},
function(accessToken, refreshToken, profile, done) {
// asynchronous verification, for effect...
process.nextTick(function (){
// Changing this to return the accessToken instead of the profile information
//console.log(profile);
return done(null, [{token:accessToken,rToken:refreshToken,'profile':profile}]);
});
}
))
}
function middlefunc2(req,res,next){
//another definition of passport.use
}
无需另外制作passport
变量。
答案 2 :(得分:-1)
这有效:
router.get('/', passport.authenticate('google', {
scope: ['https://www.googleapis.com/auth/userinfo.email','https://www.googleapis.com/auth/userinfo.profile'],
}));