I want to send parameters with a POST
request using the RestClient gem (but I don't want to pass the params as JSON).
In a GET
request, I would have:
url = "http://example.com?param1=foo¶m2=bar"
RestClient.get url
How can I pass the same params but in a POST
request without passing a JSON ?