在护照 FacebookTokenStrategy 和 GoogleStrategy 中获取子域
Get subdomain inside passport FacebookTokenStrategy and GoogleStrategy
我正在构建一个带有通配符子域的 node.js 应用程序。每个子域将是应用程序的一个单独部分,该应用程序将根据子域对用户进行单独的身份验证。
例如,假设我的应用程序将具有子域 abc.domain.com 和 xyz.domain.com 以及以下用户
User1@gmail.com signs up for abc.domain.com
User2@yahoo.com signs up for xyz.domain.com
User3@msn.com signs up for both abc.domain.com and xyz.domain.com
每个用户只能访问他们注册的子域。所以 User1@gmail.com 应该能够登录到 abc.domain.com 但应该在 被拒绝xyz.domain.com
通常我会使用 req.get('host') 获取子域,然后从那里提取子域,但据我所知,passport.js 没有 req 参数.无论如何,我是否可以获取用户尝试登录的当前站点的子域名?以下是从 https://github.com/drudge/passport-facebook-token
复制的 passport-facebook-token 代码
var FacebookTokenStrategy = require('passport-facebook-token');
passport.use(new FacebookTokenStrategy({
clientID: FACEBOOK_APP_ID,
clientSecret: FACEBOOK_APP_SECRET
}, function(accessToken, refreshToken, profile, done) {
// SQL statement will go here that will check whether a user is signed up for the subdomain they are logging into. It will also check if the user exists in the database
});
}
));
我找到了解决方案,所以回答了我自己的问题,以防万一有人需要知道如何使用 passport.js 让请求显示在任何策略中,您需要做的就是将 passReqToCallBack 设置为 true。
下面是更新后的代码
passport.use(new FacebookTokenStrategy({
clientID: FACEBOOK_APP_ID,
clientSecret: FACEBOOK_APP_SECRET,
passReqToCallback: true // Added for req to show in callback
}, function(req, accessToken, refreshToken, profile, done) {
// SQL statement will go here that will check whether a user is signed up for the subdomain they are logging into. It will also check if the user exists in the database
});
}
));
我正在构建一个带有通配符子域的 node.js 应用程序。每个子域将是应用程序的一个单独部分,该应用程序将根据子域对用户进行单独的身份验证。
例如,假设我的应用程序将具有子域 abc.domain.com 和 xyz.domain.com 以及以下用户
User1@gmail.com signs up for abc.domain.com
User2@yahoo.com signs up for xyz.domain.com
User3@msn.com signs up for both abc.domain.com and xyz.domain.com
每个用户只能访问他们注册的子域。所以 User1@gmail.com 应该能够登录到 abc.domain.com 但应该在 被拒绝xyz.domain.com
通常我会使用 req.get('host') 获取子域,然后从那里提取子域,但据我所知,passport.js 没有 req 参数.无论如何,我是否可以获取用户尝试登录的当前站点的子域名?以下是从 https://github.com/drudge/passport-facebook-token
复制的 passport-facebook-token 代码var FacebookTokenStrategy = require('passport-facebook-token');
passport.use(new FacebookTokenStrategy({
clientID: FACEBOOK_APP_ID,
clientSecret: FACEBOOK_APP_SECRET
}, function(accessToken, refreshToken, profile, done) {
// SQL statement will go here that will check whether a user is signed up for the subdomain they are logging into. It will also check if the user exists in the database
});
}
));
我找到了解决方案,所以回答了我自己的问题,以防万一有人需要知道如何使用 passport.js 让请求显示在任何策略中,您需要做的就是将 passReqToCallBack 设置为 true。
下面是更新后的代码
passport.use(new FacebookTokenStrategy({
clientID: FACEBOOK_APP_ID,
clientSecret: FACEBOOK_APP_SECRET,
passReqToCallback: true // Added for req to show in callback
}, function(req, accessToken, refreshToken, profile, done) {
// SQL statement will go here that will check whether a user is signed up for the subdomain they are logging into. It will also check if the user exists in the database
});
}
));