我正在尝试从链接report-link(full_l)下载CSV文件。当我将此URL传递到GET()函数get.data <- GET(url = full_l)
names(get.data)
中时。它给出了以下错误:
curl :: curl_fetch_memory(url,handle = handle)中的错误: schannel:下一个InitializeSecurityContext失败:SEC_E_UNTRUSTED_ROOT(0x80090325)-证书链是由不受信任的颁发机构颁发的。
帮我解决,如何下载此CSV文件?
如果我通过httr::set_config(config(ssl_verifypeer = 0L, ssl_verifyhost = 0L))
我尝试过的另一种方式:
require(downloader)
options(download.file.method="libcurl")
if (!file.exists("data")) { dir.create("data") }
download.file(full_l, "data/Inventory.csv")
CSV文件已下载,但具有登录页面的HTML内容。
如何下载具有所需内容的文件?