Any help or hint would be greatly appreciated it!!
My portal is using “microsoft authenticator”(office 365). When I clear cache (delete data in browser) and use this url: https://testsso.abc.com/nasapp it redirects me to office 365 login using the microsoft authenitcator app.
When I click “logout” on the server side:
session.removeAttribute(“token”);
session.removeAttribute(“lang_cd”);
session.removeAttribute(“multipleSession”);
session.invalidate();
and on the client side(javascript):
function deleteAllCookies() {
alert("Albert Lam home page home.jsp deleteAllCookies() sessionStorage.clear(); localStorage.clear();");
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
}
sessionStorage.clear();
localStorage.clear();
}
When I used this url again:url: https://testsso.abc.com/nasapp
Microsoft Authenticator or office 365 login is not trigger?