使用ruby阅读谷歌主页:连接尝试失败

时间:2014-10-20 14:55:02

标签: ruby

我正在尝试创建一个非常基本的ruby脚本,将字符串的内容作为字符串下拉。一旦我可以将页面作为字符串下拉,我相信其余的将是一个试验和错误的问题。

当我最初想要使用的网页(https,重定向的网址)出现问题时,我插入谷歌,然后将内容删除回原点,但仍然出现错误。

以下是代码:

require 'open-uri'
file = open('www.google.com')
contents = file.read
puts contents

我得到的错误信息是:

http.rb:763: in 'initialize': A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host failed to respond - connect(2) (Errno::ETIMEDOUT)

我也试过了:

https://www.google.com

http://www.google.com

具有相同的结果。

有谁知道我做错了什么?

0 个答案:

没有答案