mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix ProtocolBinding attribute in SAML AuthnRequests (#30751)
Fix for #30750.
Using the proper values defined in:
346540312f/metadata.go (L12-L16)
This commit is contained in:
parent
b88c2c3d67
commit
3e2c72dfed
1 changed files with 2 additions and 2 deletions
|
|
@ -42,8 +42,8 @@ func CreateAuthorizationRequest(
|
|||
}
|
||||
samlAuthRequest, err := samlProvider.MakeAuthenticationRequest(
|
||||
idpURL,
|
||||
"HTTPRedirectBinding",
|
||||
"HTTPPostBinding",
|
||||
saml.HTTPRedirectBinding,
|
||||
saml.HTTPPostBinding,
|
||||
)
|
||||
if err != nil {
|
||||
return "", "", ctxerr.Wrap(ctx, err, "make auth request")
|
||||
|
|
|
|||
Loading…
Reference in a new issue