Ruby 使用 Net::HTTP 一例

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

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

编程技巧