Skip to content

Commit 925f7f1

Browse files
committed
FIX logout message security error from idp
" The request cannot be fulfilled because the message received does not meet the security requirements of the login service. " I think this means we need to sign our logout messages. I think this only happens because its trying to do a singlelogout. While I'd rather just disable singlelogout, there doesn't seem to be a simple toggle to do this. So I'm trying to get slo working instead.
1 parent 5743474 commit 925f7f1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docker/simplesamlphp/sp/config/authsources.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
'urn:oid:x.x.x.x',
7676
],
7777
*/
78+
79+
// IDP message security error on singlelogout without this
80+
'sign.logout' => true,
7881
],
7982

8083

0 commit comments

Comments
 (0)