[Ruby]取得網頁資料
require "net/http"
 
reponse = Net::HTTP.get_response('www.oreilly.com','/about/')
 
#列印網頁所傳回的代碼並以數字輸出:
print response.code.to_i
 
#列印網頁內容:
print response.body
除非特別註明,本頁內容採用以下授權方式: Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License