Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created December 6, 2013 14:17
Show Gist options
  • Save deckerego/7824851 to your computer and use it in GitHub Desktop.
Save deckerego/7824851 to your computer and use it in GitHub Desktop.
Authenticating Over an Untrusted SSL Connection
getContents <- function(uri, username, password) {
credentials = paste(username, password, sep=":")
doc <- getURL(uri, userpwd=credentials, httpauth=1L, ssl.verifypeer = FALSE)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment