gpt4 book ai didi

javascript - 如何为 Passport 策略 callbackURL 设置当前主机?

转载 作者:数据小太阳 更新时间:2023-10-29 06:02:51 24 4
gpt4 key购买 nike

我正在使用 Passport with Express 的 Passport-Linkedin 策略,以允许用户使用他们的 LinkedIn 个人资料登录。

我有以下代码:

passport.use(new LinkedInStrategy({
consumerKey: config.linkedin.LINKEDIN_API_KEY,
consumerSecret: config.linkedin.LINKEDIN_SECRET_KEY,
callbackURL: "http://localhost:3000/auth/linkedin/callback"
},
function(token, tokenSecret, profile, done) {
// asynchronous verification, for effect...
process.nextTick(function () {

// To keep the example simple, the user's LinkedIn profile is returned to
// represent the logged-in user. In a typical application, you would want
// to associate the LinkedIn account with a user record in your database,
// and return that user instead.
return done(null, profile);
});
}
));

在第 4 行,我必须手动设置完整的回调 URL。我有一个字符串用于生产,一个用于开发,但我的 URL 一直在变化,端口也是如此(我使用 2 台机器进行开发)。

如何自动设置 URL 的第一部分 (http://localhost:3000)? expressapp 是否有允许我这样做的属性?我是否需要求助于 app.use(function(req, res){});

谢谢!

最佳答案

老问题,可能只对新版本有效。但是,如果有人像我一样遇到这种情况,解决方案就是不在 callbackURL 中指定主机名:

passport.use(new LinkedInStrategy({
consumerKey: config.linkedin.LINKEDIN_API_KEY,
consumerSecret: config.linkedin.LINKEDIN_SECRET_KEY,
callbackURL: "/auth/linkedin/callback"
},

为了使它适用于 heroku https 重定向,我们必须通过信任代理告诉系统信任 x-forwarded-protocol header :

passport.use(new LinkedInStrategy({
consumerKey: config.linkedin.LINKEDIN_API_KEY,
consumerSecret: config.linkedin.LINKEDIN_SECRET_KEY,
callbackURL: "/auth/linkedin/callback",
proxy: true
},

关于javascript - 如何为 Passport 策略 callbackURL 设置当前主机?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12869514/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com