Azure AD B2C SPA Unable to do single sign out.
I am trying to implement SSO Single sign out with reactjs SPA registered with Azure AD B2C.
I have added a logout component in Reactjs.
import { React } from "react";
import { useMsal } from "@azure/msal-react";
export function Logout() {
const { instance } = useMsal();
instance.logoutRedirect({
account: instance.getActiveAccount(),
onRedirectNavigate: false,
});
return <div>Logout</div>;
}
I have configured the Front-channel logout URL for both the app.
But when i do signout from one app the other app is still logged in.
Please help me with proper guidance.
Thanks,
Aaqib.
1 answer
Sort by: Most helpful
-
Deleted
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more