Read a web page : HTTP Reponse « Network « Ruby






Read a web page



require 'net/http' 
h = Net::HTTP.new('www.google.com', 80) 
response = h.get('/index.html', nil) 
if response.message == "OK" 
    puts response.body.scan(/<img src="(.*?)"/m).uniq 
end 

 








Related examples in the same category

1.Checking for Errors and Redirects
2.Grabbing the Contents of a Web Page.rb
3.Get response encoding and body
4.Get url and response
5.Get response code
6.get server information from the response
7.Each key in the response
8.For each segment received
9.Zip header
10.Read mysql command output