Skip to content

Instantly share code, notes, and snippets.

@donpdonp
Created August 18, 2011 19:01
Show Gist options
  • Save donpdonp/1154856 to your computer and use it in GitHub Desktop.
Save donpdonp/1154856 to your computer and use it in GitHub Desktop.
require 'net/http'
res = Net::HTTP.start("twitter.com", 443, {:use_ssl => true}) {|http|
http.get("/")
}
puts res.body[0,100]
puts res.inspect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment