我正在尝试创建一个非常基本的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
具有相同的结果。
有谁知道我做错了什么?