using Rcurl with HTTPs

Zach picture Zach · Jul 18, 2011 · Viewed 12.9k times · Source

I tried the following code in R on windows:

library(RCurl)
postForm("https://www.google.com/accounts/ClientLogin/",
    "email" = "[email protected]",
    "Passwd" = "abcd",
    "service" = "finance",
    "source" = "Test-1"
)

but go the following error:

Error in postForm()
SL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

How do I setup RCurl to allow use of HTTPs?

Answer

Pak picture Pak · May 24, 2013

just add .opts = list(ssl.verifypeer = FALSE) to your query

postForm("https://www.google.com/accounts/ClientLogin/",
    "email" = "[email protected]",
    "Passwd" = "abcd",
    "service" = "finance",
    "source" = "Test-1",
    .opts = list(ssl.verifypeer = FALSE))