Displaying 6 results from an estimated 6 matches for "curlssl".
Did you mean:
curl's
2013 Nov 22
1
Descargar tweets con package twitteR
...requestURL=requestURL,
accessURL=accessURL,
authURL=authURL)
download.file(url="http://curl.haxx.se/ca/cacert.pem",
destfile="cacert.perm")
twitCred$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
Al correr el código, al principio sí que me hace la conexión para verificar la autorización, pero me acaba saliendo el siguiente error:Error in strsplit(response, "&") : non-character argument
y no soy capaz de saber...
2012 Mar 19
0
Sankey Diagrams in R
...github/
sourc.https <- function(url, ...) {
? # load package
require(RCurl)
? # install.packages(c("RCurl"), dependencies = TRUE)
? # parse and evaluate each .R script
? sapply(c(url, ...), function(u) {
??? eval(parse(text = getURL(u, followlocation = TRUE, cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))), envir = .GlobalEnv)
? })
}
# Example from https://gist.github.com/1423501
sourc.https("https://raw.github.com/gist/1423501/55b3c6f11e4918cb6264492528b1ad01c429e581/Sankey.R")
# My example (there is another example inside San...
2013 Jul 08
0
"error setting certificate" issue in R-studio
...age to gather tweets from the below
function. It was working fine before, but I can't find a way to fix
the certificate issue.I tried using
>download.file(url="curl.haxx.se/ca/cacert.pem",
destfile="cacert.pem") with>credential$handshake(cainfo =
system.file("CurlSSL", "cacert.pem", package = "RCurl")) I saw
recommended on Stack Overflow but it didn't fix the issue.
>TweetFrame <- function(searchTerm, maxTweets)?
??? {
????? twtList<-searchTwitter(searchTerm,n=maxTweets)
????? #twtList is involved in ?variable? scoping...
2012 Jun 11
0
SSOAP Parameter Structures: Nested Arrays
...y(RCurl)
# download the file needed for authentication
download.file(url="http://curl.haxx.se/ca/cacert.pem",
destfile="cacert.pem")
# set the curl options
curl <- getCurlHandle()
options(RCurlOptions = list(capath = system.file("CurlSSL",
"cacert.pem",
package = "RCurl"),
ssl.verifypeer = FALSE))
curlSetOpt(.opts = list(proxy = 'proxyserver:port'), curl = curl)
wsdl <- getURL("XXXXXX.asmx?wsdl",
ssl.verifypeer = FALSE)
do...
2010 Nov 10
3
RGoogleDocs stopped working
Hello,
Some code using RGoogleDocs, which had been working smoothly since the
summer, just stopped working. I know that it worked on November 3rd, but it
doesn't work today. I've confirmed that the login and password still work
when I log in manually. I've confirmed that the URL gives the same error
when I paste it into Firefox. I don't know enough about this web service to
figure
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
...leDocs/RGoogleDocs_0.4-1.zip
>
> Here is my script that works. Does yours look like this?
>
> library(RGoogleDocs)
> packageDescription("
RGoogleDocs")
> ps <-readline(prompt="get the password in ")
> options(RCurlOptions = list(capath = system.file("CurlSSL", "cacert.pem",
> package = "RCurl"), ssl.verifypeer = FALSE))
> sheets.con = getGoogleDocsConnection(getGoogleAuth("fjbuch at gmail.com", ps,
> service ="wise"))
> ts2=getWorksheets("OnCall",sheets.con) #OnCall is just the name of...