Ruby 使用 Net::HTTP 一例

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

require 'net/http'
home = Net::HTTP.new("www.oschina.net", 80)

response, text = home.get("/code/list", nil)
puts text