带代理的 HTTParty 提高了 'wrong status line'

HTTParty with proxying raises 'wrong status line'

这是我的代理凭据,这将成功连接到服务器:

❯ ssh uuuser@aaaddress -p 22                                         
  uuuser@aaaddress password: pppassword

现在我正在尝试使用 HTTPParty:

通过此代理发送请求
response = HTTParty.post 'my_url', { 
        body: { "my body" },
        http_proxyaddr: aaadress,
        http_proxyport: 22,
        http_proxyuser: uuuser,
        http_proxypass: pppassword
}

但是这个请求引发了 wrong status line: "SSH-2.0-OpenSSH_5.3" 错误。可能是什么问题?

ssh 服务器不是 HTTP 代理。你在这里混合服务。