我正在使用passport-saml
身份验证。为此我安装了
npm install passport passport-saml --save
我已经使用这个博客Auth0创建了我的 IDP 。
初始化护照和定义的saml策略
app.use(passport.initialize());
passport.use(new passportSaml.Strategy(
{
path: "/login/callback",
entryPoint: "https://qpp1.auth0.com/samlp/bZVOM5KQmhyir5xEYhLHGRAQglks2AIp",
issuer: "passport-saml",
// Identity Provider's public key
cert: fs.readFileSync("./src/cert/idp_cert.pem", "utf8"),
},
(profile, done) => {
console.log("Profile : ",profile);
let user = new Profile({ id: profile["nameID"], userName: profile["http://schemas.auth0.com/nickname"] });
return done(null, user);
}
));
这是路线
app.get("/login",
passport.authenticate("saml", (err, profile) => {
// control will not come here ????
console.log("Profile : ", profile);
})
);
app.post("/login/callback",
(req, res, next) => {
passport.authenticate("saml", { session: false }, (err, user) => {
req.user = user;
next();
})(req, res, next);
},
RouteHandler.sendResponse
);
现在这工作正常,但我有一些问题
issuer
1) saml 策略是什么意思
2) 为什么我需要passport.authenticate
在两个 URL 映射中使用。我不明白为什么在/login/callback
请求中需要它。甚至控制不会来/login
请求我在passport.authenticate
方法中传递的功能?
这背后的逻辑是什么?这在任何情况下都有用吗?