How to access webpages with Net::HTTP

Allows access to downloading webpages.

a 1.8 example:

require 'net/http'
mainp = Net::HTTP.new('www.hello.com', 80)
response, content = mainp.get('index.html', nil)
puts content

Here is the rdoc which contains many examples.

See also OpenURI.

how to do it with https (ssl) snippets.dzone.com/posts/show/788

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.