You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When performing a logout action the logout consumer callback receives a LogoutResponse from the IDP.
If validateInResponseTo is enabled then an error will be thrown:
Error: InResponseTo is missing from response
It appears the reason for this is within the SAML.prototype.validatePostResponse function, specifically when extracting the InResponseTo value from the response xml.
Since it is a logout response the xml object name is LogoutResponse not Response, therefore it fails to extract the InResponseTo value as Response does not exist.