We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b84d55a + e7191d0 commit 606060fCopy full SHA for 606060f
src/saml2/s2repoze/plugins/sp.py
@@ -26,7 +26,7 @@
26
from paste.request import parse_dict_querystring
27
from paste.request import construct_url
28
from saml2.extension.pefim import SPCertEnc
29
-from saml2.httputil import SeeOther
+from saml2.httputil import getpath, SeeOther
30
from saml2.client_base import ECP_SERVICE
31
from zope.interface import implementer
32
@@ -477,9 +477,9 @@ def identify(self, environ):
477
pass
478
479
try:
480
- path_info = environ['PATH_INFO']
+ path = getpath(environ)
481
logout = False
482
- if path_info in self.logout_endpoints:
+ if path in self.logout_endpoints:
483
logout = True
484
485
if logout and "SAMLRequest" in post:
0 commit comments