Created
December 6, 2013 14:17
-
-
Save deckerego/7824851 to your computer and use it in GitHub Desktop.
Authenticating Over an Untrusted SSL Connection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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