You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When saml2.client:handle_logout_request() is called with sign=True and the selected binding is HTTP Redirect, the request is not signed.
Where the error lies is not clear. apply_binding() accepts a sign param but it is not used for redirect bindings. It instead looks for the sigalg param in kwargs. handle_logout_request() supplies neither the sign nor sigalg params to apply_binding()
The text was updated successfully, but these errors were encountered:
When
saml2.client:handle_logout_request()
is called withsign=True
and the selected binding is HTTP Redirect, the request is not signed.Where the error lies is not clear.
apply_binding()
accepts asign
param but it is not used for redirect bindings. It instead looks for thesigalg
param in kwargs.handle_logout_request()
supplies neither thesign
norsigalg
params toapply_binding()
The text was updated successfully, but these errors were encountered: