我正在尝试为不同的企业实现 google 和 okta 的 SAML。现在,我有多个入口点。
passport.use(
"saml",
new SamlStrategy(
{
protocol: "https://",
entryPoint: "entry url", // SSO URL (Step 2)
issuer: "issuer link", // Entity ID (Step 4)
path: "ACS URL parth", // ACS URL path (Step 4)
},
async function (profile, done) {
{function body}
}
)
);
现在,如何根据用户每次设置发布者 URL 动态?