require 'net/http'
require 'uri'
@url = 'http://foobar.com'
@query_string = {foo1: 'bar1', foo2: 'bar2'}
@post_data = Net::HTTP.post_form(URI.parse(@url), @query_string)
@request = # ? How can I get the request URL + query?
@response = @post_data.body
Does anyone know how you can get the actual URL that you queried, not just the response?
i.e. I want to store this in a variable to record what was sent:
It's not getting it from the response itself (I don't think there is a way to do this with net/http), but you can get the variable you want by doing this: