Getting error while scraping web data:'failed to load external entity'

Hi I am using using below mentioned code; but giving error: *ailed to load external entity "http://www.geos.ed.ac.uk/~weather/jcmb_ws"

library("RCurl")
library("stringr")
library("plyr")
library("XML")
library("httr")

Read the URL.

url <- "http://www.geos.ed.ac.uk/~weather/jcmb_ws"

Gather the html links present in the webpage.

links <- getHTMLLinks(url,externalOnly = TRUE)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.