There was an error while loading. Please reload this page.
Require the gem in your project:
require 'http'
And make a GET request:
>> response = HTTP.get('https://www.google.com') => #<HTTP/1.0 200 OK @headers={"Content-Type"=>"text/html; charset=UTF-8", "Date"=>"Fri, ...>
We now have a HTTP::Response object for the given request. We can obtain the body by calling #to_s on it:
HTTP::Response
#to_s
>> response.to_s => "<html><head><meta http-equiv=\"content-type\" content=..."
Or get the response status code by calling #code:
#code
>> response.code => 200
Many other HTTP methods are available as well:
>> response = HTTP.post('https://restapi.com/objects') >> response = HTTP.put('https://restapi.com/put') >> response = HTTP.patch('https://restapi.com/put') >> response = HTTP.delete('https://restapi.com/put') >> response = HTTP.head('https://restapi.com/put')
See the METHODS constant in requests.rb for the full list of supported HTTP methods:
METHODS
requests.rb
https://github.com/httprb/http/blob/master/lib/http/request.rb