Is an SP initiated SSO SAML request is sent to the light_saml_idp.login route, the POST data is lost after Drupal redirects you through GET, resulting in a 403.
We should save $_POST['SAMLRequest'] before redirecting to /user/login to be able to use that later in the light_saml_idp.login route.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 3085174-1.patch | 3.61 KB | johankleene |
Comments
Comment #3
mrharolda commentedComment #4
johankleene commentedOn login currently only the SAMLRequest parameter is saved in session. This patch also saves the RelayState temporarily in a session parameter. Without it the parameter is lost when relaying back to the SP.
Comment #6
mrharolda commentedTnx, Johan!