gpt4 book ai didi

r - 包 "rvest"用于使用代理进行网页抓取 https 站点

转载 作者:行者123 更新时间:2023-12-04 10:48:26 24 4
gpt4 key购买 nike

我想废弃一个 https 网站,但我失败了。

这是我的代码:

require(rvest)
url <- "https://www.sunnyplayer.com/de/"
content <- read_html(url)

但我在控制台中有错误 - “open.connection(x, "rb") 中的错误:已达到超时”
我该如何解决这个问题?

最佳答案

同样的事情发生在我的代理上。要解决此问题,请使用 download.file 并指定下载位置。然后,您可以使用 read_html 解析该文件。

download.file(url, destfile = 'C://whatever.html')
content <- read_html('C://whatever.html')

关于r - 包 "rvest"用于使用代理进行网页抓取 https 站点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36043172/

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