-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Labels
Description
In the SSO Job the assertion dates conditions should take into account the timestamp of the request. In my Case the SP Server creates a Request with a Timestamp -3 Minutes from the IDP Timestamp.
So the IDP Response assertsion fails because the notBefore Timestamp is set to IDP Timestamp.
Maybe set the notBefore Timestamp to the request creation Time, like this:
->setConditions(
(new Conditions)
->setNotBefore($this->authn_request->getIssueInstantTimestamp())