sanjanasan
sanjanasan

Reputation: 47

rvest read_html could not read the url

I have this simple code to do webs craping

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

The problem is that I receive this error:

enter image description here id it a problem with the link? Because I tried the same method with other links and it works normally. PS: I tried the same method with that link this morning and it didn't show any error

Upvotes: 0

Views: 630

Answers (1)

Prem
Prem

Reputation: 11955

I am able to run below code without any glitch

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)

Upvotes: 1

Related Questions