我正在尝试使用带有一些参数的HTTParty发送 HTTP 请求,
例如:
GET URL: http://example1.com?a=123&b=456
response_to_get = HTTParty.get('http://example1.com?a=123&b=456')
此特定请求的redirect_url是http://example2.com
当我http://example1.com?a=123&b=456
在浏览器中尝试 URL 时,它会重定向到带有参数值的预期 URL http://example2.com?c=123trt58
,但是当我使用 HTTParty 时,我只得到一个 HTML 响应。
我的要求是从响应中获取URL ( http://example2.com?c=123trt58 )。
提前致谢。