rvest read_html无法读取网址

时间:2017-07-22 20:30:01

标签: r web-scraping rvest

我有这个简单的代码来做网页起皱

url <- "https://www.ville-ideale.fr/paris-10e 
         arrondissement_75110.php#commentaires"
web <- read_html(url)

问题是我收到此错误:

enter image description here 认为链接有问题吗?因为我尝试了与其他链接相同的方法,它正常工作。 PS:我今天早上尝试了与该链接相同的方法,但没有显示任何错误

1 个答案:

答案 0 :(得分:1)

我能够在没有任何故障的情况下运行代码

library(rvest)
url <- "https://www.ville-ideale.fr/paris-10e%20%20%20%20%20%20%20%20%20%20arrondissement_75110.php#commentaires"
web <- read_html(url)