使用R时如何通过卷曲 - 固化替代品?

时间:2017-12-08 14:02:13

标签: r curl httr

如何用R下载this file并将其保存到磁盘?

我已经设法通过在命令行上使用curl添加--insecure标志来下载它。但我无法弄清楚如何在R中做到这一点。

这是命令行方式:

curl https://www.stf.jus.br/arquivo/djEletronico/DJE_20171123_266.pdf --insecure --output ~/Desktop/test2.pdf

1 个答案:

答案 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)