-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LogoutRequest NameID Format is Required? #220
Comments
Lines 677 to 680 in bd15dc9
Lines 91 to 106 in bd15dc9
Is it possible to just define the format you want for the // From the example, not guaranteed to work:
app.get("/logout", function(req, res) {
var options = {
name_id: {
"@Format": "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified",
"#text": user_session_name_id // somehow pulled from the user's session
},
session_index: session_index
};
sp.create_logout_request_url(idp, options, function(err, logout_url) {
if (err != null)
return res.send(500);
res.redirect(logout_url);
});
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello guys,
We were doing an integration with ADFS, in the Logout section this could not end the session, reviewing the ADFS logs we found the following error:
Error message: MSIS7082: Unsolicited SAML logout response received.
Upon reviewing, we found that the "create_logout_request" function sends NameID as follows:
We make a change and the logout is completely completed:
Could it be reviewed by you to add it in a next version?
Thanks...
The text was updated successfully, but these errors were encountered: