Saml-SSO Single-Log-out(SLO) not working in case of myapps

Rohit Pawar 0 Reputation points
2023-09-05T14:16:06.1433333+00:00

Hello, I'm using Azure-AD for SAML Single Sign-On (SSO), and I've encountered an issue. I've configured the optional Logout URL inside the "Microsoft-AD-SAML-SSO which simply works as post-logout-URL and After logging in to Microsoft MyApps and signing out from there, I noticed that I was not redirected to the optional logout URL. Is there something I might have overlooked in the configuration that would allow the redirect or trigger the logout URL? I need this because I have some application-level cleanup tasks to perform.

Can I configure something to enable it?

Azure Active Directory
Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
16,628 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Rohit Pawar 0 Reputation points
    2023-09-12T06:35:21.3266667+00:00

    I have found solution for my question, Acutually internally logout get request called when logged out from Azure-myapps, problem is on my end my application used same-site property as Lax so on myapps get-logout request new session launch(because browser blocked cookie reason cross-site request) in our-application and because of that request can not able to perform logout logic on behalf of the logged user.

    I have prevented this problem by using centralized entity for user when logout-request come we will find the user based on nameID in saml-request and mark it as Logged out.

    0 comments No comments