We have used MultiSamlStrategy and the below code in node.js to log out but not working as per expectation. When visiting the login page, getting logged in without asking the password. Instead of that it should ask password.
samlStrategy.logout(req, (err, request) => {
if (err) {
console.log(err);
}
return res.redirect(request);
});
TIA