I am currently trying to build a small webscraper.
I am using the following code to scrape a website:
webpage <- "https://www.whisky.de/shop/Schottland/Single-Malt/Macallan-Triple-Cask-15-Jahre.html"
content <- read_html(webpage)
However, when I run the second line with the read_html command, I get the following error message:
Error in open.connection(x, "rb") : SSL certificate problem: certificate has expired
Does anyone of you know where this is coming from? When I used it a few days ago, I did not have any trouble with it.
I am using Mac OS X 10.15.5, RStudio (1.2.5033) I also installed the library "rvest"
Many thanks for your help in advance!