gpt4 book ai didi

open.connection(x, "rb") : Timeout was reached 中的 rvest 错误

转载 作者:行者123 更新时间:2023-12-04 02:37:32 24 4
gpt4 key购买 nike

我正在尝试从 http://google.com 中抓取内容.
错误信息出来了。

library(rvest)  
html("http://google.com")

Error in open.connection(x, "rb") :
Timeout was reached In addition:
Warning message: 'html' is deprecated.
Use 'read_html' instead.
See help("Deprecated")



由于我使用的是公司网络,这可能是由防火墙或代理引起的。我尝试使用 set_config ,但不起作用。

最佳答案

我遇到了同样的Error in open.connection(x, “rb”) : Timeout was reached在办公网络中的代理后面工作时出现问题。

这对我有用,

library(rvest)
url = "http://google.com"
download.file(url, destfile = "scrapedpage.html", quiet=TRUE)
content <- read_html("scrapedpage.html")

信用: https://stackoverflow.com/a/38463559

关于open.connection(x, "rb") : Timeout was reached 中的 rvest 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33295686/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com