Skip to content

Instantly share code, notes, and snippets.

@yock
Created November 18, 2014 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yock/b662e53d72a30b027d9e to your computer and use it in GitHub Desktop.
Save yock/b662e53d72a30b027d9e to your computer and use it in GitHub Desktop.
A Sample Request
require 'net/http'
Net::HTTP.start 'api.example.com', 80 do |http|
http.get '/endpoint' do |response|
p response
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment