作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在使用 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
)? express
或 app
是否有允许我这样做的属性?我是否需要求助于 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/
我是一名优秀的程序员,十分优秀!