Skip to content

Instantly share code, notes, and snippets.

@davidji99
Last active August 29, 2015 14:25
Show Gist options
  • Save davidji99/b64b9b08b1a0acfa08a9 to your computer and use it in GitHub Desktop.
Save davidji99/b64b9b08b1a0acfa08a9 to your computer and use it in GitHub Desktop.
Ruby HTTP/GET and HTTP/POST with auth header, pretty json
module HTTPStuff
def self.post(path, payload)
uri = construct_uri path
http = Net::HTTP.new(uri.host, uri.port)
req = Net::HTTP::Post.new(uri.path)
req.body = payload.to_json
req["Authorization"] ='SOMEAUTH'
req["Content-Type"] = "application/json"
print http.request(req)
end
def self.construct_uri(path)
return URI.parse("http://localhost:10000/" + path)
end
def self.get(path)
uri = construct_uri path
http = Net::HTTP.new(uri.host, uri.port)
req = Net::HTTP::Get.new(uri.path)
req["Authorization"] ='SOMEAUTH'
print http.request(req)
end
def self.print(response)
begin
puts JSON.pretty_generate(JSON.parse(response.body))
rescue
puts response
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment