Last active
August 29, 2015 14:25
-
-
Save davidji99/b64b9b08b1a0acfa08a9 to your computer and use it in GitHub Desktop.
Ruby HTTP/GET and HTTP/POST with auth header, pretty json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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