This request to a OpenText Content Server works with the curl, but doesn't work with the JetBrains HTTP Client.
curl --location --request POST 'http://myserver/api/v1/auth' \
--form 'username="myuser"' \
--form 'password="mypassword"'
This command above works as expected.
POST myserver.mydomain
Accept: */*
Content-Type: multipart/form-data; boundary=WebAppBoundary
--WebAppBoundary
Content-Disposition: form-data; name="username"
myuser
--WebAppBoundary
Content-Disposition: form-data; name="password"
mypassword
--WebAppBoundary--
This doesn't work, returns a message about a wrong password.
I would appreciate any suggestions regarding the issue.