RCurl is an R package that provides an R-friendly wrapper for the cURL library.
0
votes
1answer
27 views
Get website directory listing in an R vector using RCurl
I'm trying to get the list of files in a directory on a website. Is there a way to do this similar to the dir() or list.files() commands for local directory listing? I can connect to the website using ...
0
votes
0answers
19 views
JSON error using twitteR caused by RCurl proxy
I am trying to use twitteR's searchTwitter() function with a curl proxy, but I'm getting a JSON-related error. I see that a lot of people have gotten this same JSON error. But I believe the cause of ...
1
vote
2answers
25 views
R, GET and GZ compression
I am building clients onto RESTful APIs. Some links let me download attachments (files) from the server, and in the best case these are .txt. I only mention the RESTful part since it means that I ...
0
votes
0answers
36 views
how to use the search bar of a website with R?
I want to use the search bar of a specific website.
And then ask for some keywords.
And have the links in which appears my keyword using R packages Rcurl,json and XML.
For exemple, I want to scrape ...
0
votes
1answer
26 views
unable to pull an https url within R
I need to get a https get request using RCurl as follows:
url<-c("https://example.com")
x<-getURL(url)
I get this error:
Error in function (type, msg, asError = TRUE) : couldn't connect to ...
3
votes
0answers
58 views
getURL (from RCurl package) doesn't work in a loop
I have a list of URL named URLlist and I loop over it to get the source code for each of those URL :
for (k in 1:length(URLlist)){
temp = getURL(URLlist[k])
}
Problem is for some random URL, ...
0
votes
0answers
92 views
Import Data from Web using R
I am trying to download data from this site using R and the RCurl package but I am not being able to realize this task. The goal is to download all the data in the site but I could not download any ...
1
vote
1answer
48 views
RGoogleTrends: SSL certificate issue, verify that the CA cert is OK
Before proceeding, please download RGoogleTrends_0.2-1.tar.gz here, which is Duncan Temple Lang's website.
Reproducible example (or, at least, I hope it will be reproducible by someone):
op <- ...
1
vote
0answers
62 views
JSON character size limit using curlPerform or getURL
I am running into what appears to be character size limit in a JSON string when trying retrieve data from either curlPerform() or getURL(). Here is non-reproducible code [1], but it should shed some ...
0
votes
0answers
39 views
TwitteR: issue when trying to use getFollowers() or getFriends()
This is probably a very basic question, however, I spent so much time trying to figure it out and simply cannot come up with a solution.
I have been trying to get data from Twitter on users' friends ...
4
votes
0answers
71 views
Using RCurl/httr for Github Basic Authorization
I am trying to create an OAuth token from the command line using the instructions here. I am able to use curl from the command line, and get the correct response
curl -u 'username:pwd' -d ...
1
vote
1answer
90 views
Automated download from multiple URLs, handling Feedback Dialog / cookies
I try to bulk download CORINE Landcover zip-files from this site but I think the interconnected feedback survey window from Google Analytics is making troubles here.. Is there some sort of Curl ...
2
votes
0answers
245 views
Using twitteR through a proxy server
I'm trying to download Twitter data using the twitteR package.
I keep getting the error message
"Error in function (type, msg, asError = TRUE) : couldn't connect to host"
I believe this is ...
1
vote
2answers
52 views
Avoid server certificate error when posting form via RCurl
I'm getting this certificate verification error when trying to post a form via RCurl::postForm():
Error in function (type, msg, asError = TRUE) :
SSL certificate problem, verify that the CA cert ...
0
votes
1answer
28 views
Identify web-objects from redundant URIs using HTTP requests
I am struggling with an ill-constructed web-server log file, which I want to summarize to analyse attendance of the hosted site. Unfortunately for me, the architecture of the site is messy, so that ...
3
votes
1answer
192 views
How to login and then download a file from aspx web pages with R
I'm trying to automate the download of the Panel Study of Income Dynamics files available on this web page using R. Clicking on any of those files takes the user through to this login/authentication ...
1
vote
1answer
76 views
retrieve a html table using readHTMLTable
I am trying to retrieve in R the price from SGX website.
...
0
votes
2answers
140 views
Parsing Facebook JSON results in R
I already read other questions but I still don't know how to parse Facebook Graph Search results in R. My main goal is to convert in something like a data frame, to analyze some columns.
...
0
votes
0answers
114 views
How to use searchTwitter() and mapCurlOptNames functions in twitteR package
package ‘twitteR’ version 1.1.0". Warning message in mapCurlOptNames-Unrecognized CURL options: .opts and error in searchTwitter "couldn't connect to host`"
.opts proxy server ist defined and ...
2
votes
1answer
99 views
How to stream and save Facebook public posts with R?
I'm trying to stream and save public posts through R. I already got the token and made the search. This is what i've done.
require(RCurl)
require(rjson)
data <- ...
6
votes
1answer
86 views
Create a C-level file handle in RCurl for writing downloaded files
In RCurl a function and a class CFILE is defined to work with C-level file handles. From the manual:
The intent is to be able to pass these to libcurl as options so that it can read or write from ...
0
votes
0answers
60 views
RCurl::url.exists() : how to get non-error for redirects (in the 300 range of HTTP status codes)
I have a bunch of URLs extracted by text-mining some PDF documents. Now I want to test the URLS for validity. Some urls have junk characters inside or appended, or the URLS are truncated. One approach ...
0
votes
1answer
247 views
Cannot get PIN using ROauth
I want to connect R to Twitter.
I have followed the steps set our here:
http://cran.r-project.org/web/packages/twitteR/vignettes/twitteR.pdf
The code that I have is as follows:
library(ROAuth)
cred ...
3
votes
0answers
174 views
log into a website to grab the data using RCurl
I wanted to login to the website using RCurl and grab the data from the web (The data cannot be seen without logging in.)
I wanted to export this (for example) ...
0
votes
1answer
139 views
How to Use RCurl or RMongo via HTTP with Authentication and Self Signed SSL to Read in JSON Data
I am using R to write a program and perform some analyses. The data is being captured by an outside vendor with MongoDB in JSON format. They are providing it to me via a URI on port 443, which they ...
2
votes
1answer
560 views
Oauth with Twitter Streaming API in R (using RCurl)
I would like to connect to Twitter's Streaming API using RCurl in R, and also be able to filter keywords. However, new restrictions on authorization in Twitter API v1.1 is making using RCurl ...
0
votes
1answer
167 views
How to get most popular Facebook post in R
I am trying to use the following code to get posts from a page on Facebook. I get an error even though the query works when I type it in a browser. This is the error I get:
WWW-Authenticate: OAuth ...
1
vote
3answers
275 views
Post request using cookies with cURL, RCurl and httr
In Windows cURL I can post a web request similar to this:
curl --dump-header cook.txt ^
--data "RURL=http=//www.example.com/r&user=bob&password=hello" ^
--user-agent "Mozilla/5.0" ^
...
0
votes
2answers
76 views
R base64 decode - nul in string
I'm trying to create function that will run private API callss on some sites.
All those sites are using authentication by signature of the API call as follows in php:
base64_encode( ...
0
votes
1answer
75 views
Trying get the price of products with RCurl
Im scrapping the price of some products from a website . In Python I used the urllib2 without problems, but when I tried using RCurl in R I couldn't donwload the source code.
I have to paste the ...
2
votes
3answers
135 views
Get response header
I would like to get response headers from GET or POST.
My example is:
library(httr)
library(RCurl)
url<-'http://www.omegahat.org/RCurl/philosophy.html'
doc<-GET(url)
...
4
votes
1answer
166 views
reading raw data in R to be saved as .RData file using the dropbox api
Having worked out the oauth signature approval system, for dropbox, I wanted to download an .RData file that I had saved there, using the API, and httr's GET function.
The request was sucessfull and ...
0
votes
1answer
79 views
Is there a possibility to pass (binary) raster data directly to a spatial object?
I use getBinaryURL of curl packet to receive raster data (png, tiff, ...) from the web and save data to disk. This raster data is later used for spatial analysis where I currently use raster (and ...
2
votes
2answers
362 views
Downloading large files with R/RCurl efficiently
I see that many examples for downloading binary files with RCurl are like such:
library("RCurl")
curl = getCurlHandle()
bfile=getBinaryURL (
"http://www.example.com/bfile.zip",
curl= ...
0
votes
0answers
199 views
postForm request (HTTPS) using proxy returns “rubbish content”
I'm writing a script in R to send a form through a proxy to a server, but the answer I get from the server is nonsense to me. Although, if I deactivate the proxy connection the answer from the server ...
3
votes
1answer
268 views
Using R SOAP (SSOAP) to retrieve data / scrape
On the B-cycle page(www.bcycle.com/whowantsitmore.aspx) I am trying to scrape locations and values of votes.
The URL http://mapservices.bcycle.com/bcycleservice.asmx is a SOAP service.
Based on the ...
1
vote
1answer
1k views
“Non-zero exit status” error downloading XML and RCurl R pacakges
I'm having this problem:
> install.packages("RCurl")
Installing package(s) into ‘/home/username/R/x86_64-redhat-linux-gnu-library/2.13’
(as ‘lib’ is unspecified)
trying URL ...
1
vote
0answers
28 views
Rcurl not working with redirect [duplicate]
Possible Duplicate:
cURL , get redirect url to a variable
I am trying to plot a sequence logo using Rcurl and WebLogo at http://weblogo.berkeley.edu/logo.cgi
url = ...
4
votes
1answer
272 views
How to use R to download a zipped file from a SSL page that requires cookies
I am trying to download a file from an https page that requires an "I Agree" button be pushed and then stores a cookie. My apologies if this answer is obvious somewhere..
When I open up the web page ...
0
votes
2answers
491 views
Installing R package from command line [closed]
I am having real trouble installing couple of packages but the root cause is mainly missing libraries. I will list one example here.
inside R-2.15.2
install.packages("RCurl")
...
0
votes
0answers
127 views
Curl command works in OS X, authentication error using RCurl
Having a hard time debugging this one as I'm not super familiar with RCurl, though I have used it successfully in the past when passing a username:password combination.
Can anyone suggest better ways ...
0
votes
0answers
63 views
Rflickr invalid signature
I am using R and the Rflickr package from http://www.omegahat.org/Rflickr/ and had it working perfectly for a long time until recently. From which I get Error: Invalid signature as an error I seem to ...
0
votes
0answers
212 views
Error installing RCurl and XML packages on Windows
I am trying to install the RCurl and XML packages and getting an error on Windows. I have tried R 2.15.0 and 2.15.1, cran.r-project.org and www.omegahat.org/R, and binary and source. Any suggestions? ...
2
votes
0answers
86 views
rcurl web scraping timeout exits program
I am using a loop and rcurl scrape data from multiple pages which seems to work fine at certain times but fails when there is a timeout due to the server not responding.
I am using a timeout=30 ...
0
votes
0answers
86 views
Weird behavior with data.table, devtools, and S4 [closed]
I am getting some really weird behavior when trying to write an S4 subclass of data.table. In short, after loading the RCurl package, the "[" method no longer can find variable names in the scope of ...
1
vote
0answers
109 views
How to use RCurl to scrape webpage using javascript for navigation?
I have a link like this one:
http://webfund6.financialexpress.net/clients/zil/pricetable.aspx?User=PUBLIC&Region=ROW&Range=VISTA&Currency=HKD
Which I want to scrape the fund prices in ...
0
votes
2answers
290 views
How to get the data with RCurl?
I want to get data with Rcurl, when I downloaded the web, the data I want are not in the file,how can I get it, any clue will be appreciated.
require(RCurl)
...
2
votes
2answers
452 views
Convert curl code into R via the RCurl package?
How I would write the following curl POST method using R and the RCurl package?
curl -k -u myusername:mypassword -d '{"text":"Hello World!","level":"Noob"}' -H "Content-Type: application/json" -H ...
1
vote
0answers
148 views
Password SSH authentication method in RCurl
I'm using the ftpUpload function in the RCurl package to upload files to an sftp file server. I'm having difficulty working out the authentication call.
Below is my call:
ftpUpload(what = ...
0
votes
0answers
307 views
Using RCurl with SFTP
I'm attempting to use the ftpUpload in the RCurl package for the first time.
The site I'm trying to access uses the sftp protocol. I've made sure to install the version of libcurl that includes the ...



