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
For some reason, our FreeIPA server is starting to return HTTP error 400 Bad Request during login.
We found it is expecting the Referer header to be set in the the login request.
I managed to fix your code by adding the following code to Get-FreeIPAAPIAuthenticationCookie: $params.add('Headers', @{'Referer' = "$($global:FreeIPAAPIServerConfig.ServerURL)/ipa/session/login_password"})
The text was updated successfully, but these errors were encountered:
For some reason, our FreeIPA server is starting to return HTTP error 400 Bad Request during login.
We found it is expecting the Referer header to be set in the the login request.
I managed to fix your code by adding the following code to
Get-FreeIPAAPIAuthenticationCookie
:$params.add('Headers', @{'Referer' = "$($global:FreeIPAAPIServerConfig.ServerURL)/ipa/session/login_password"})
The text was updated successfully, but these errors were encountered: