Reputation: 23567
I am having error fetching data from Quandl via R. Any have any idea what this means?
require(Quandl)
Quandl("ICE/BF2002")
Error in curl::curl_fetch_memory(url, handle = handle) :
Problem with the SSL CA cert (path? access rights?)
Upvotes: 1
Views: 398
Reputation: 23567
Ok I think i found the answer (although i do not understand it).
if you get that error run this before hand:
library(RCurl)
library(httr)
set_config( config( ssl_verifypeer = 0L ) )
Upvotes: 1