This is my proxy credentials, and this will successfully connect to the server:
❯ ssh uuuser@aaaddress -p 22
uuuser@aaaddress password: pppassword
Now I'm trying send request through this proxy with HTTParty:
response = HTTParty.post 'my_url', {
body: { "my body" },
http_proxyaddr: aaadress,
http_proxyport: 22,
http_proxyuser: uuuser,
http_proxypass: pppassword
}
But this request raises wrong status line: "SSH-2.0-OpenSSH_5.3"
error. What could be the issue?