如何用R下载this file并将其保存到磁盘?
我已经设法通过在命令行上使用curl
添加--insecure
标志来下载它。但我无法弄清楚如何在R中做到这一点。
这是命令行方式:
curl https://www.stf.jus.br/arquivo/djEletronico/DJE_20171123_266.pdf --insecure --output ~/Desktop/test2.pdf
答案 0 :(得分:1)
您可以使用curl
库:
library(curl)
URL <- "https://www.stf.jus.br/arquivo/djEletronico/DJE_20171123_266.pdf"
h <- new_handle()
handle_setopt(h, ssl_verifyhost = 0, ssl_verifypeer=0)
curl_download(url=URL, "file_test2.pdf", handle = h)