Skip to content

Commit

Permalink
FIX logout message security error from idp
Browse files Browse the repository at this point in the history
" 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.
  • Loading branch information
ionparticle committed Jul 21, 2024
1 parent 5743474 commit 925f7f1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/simplesamlphp/sp/config/authsources.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
'urn:oid:x.x.x.x',
],
*/

// IDP message security error on singlelogout without this
'sign.logout' => true,
],


Expand Down

0 comments on commit 925f7f1

Please sign in to comment.