Top "Rcurl" questions

RCurl is an R package that provides an R-friendly wrapper for the libcurl C library.

"Non Zero Exit Status" R 3.0.1 'XML' and 'RCurl'

I am having a bit of trouble installing XML and RCurl on my Ubuntu machine 13.10. I performed all sudo update …

xml linux r rcurl install.packages
POST request using RCurl

As a way of exploring how to make a package in R for the Denver RUG, I decided that it …

r rcurl
Scrape password-protected website in R

I'm trying to scrape data from a password-protected website in R. Reading around, it seems that the httr and RCurl …

xml r web-scraping rcurl httr
reading a json file in R: lexical error: invalid char in json text

Here is an example of the code I'm using: library(jsonlite) library(curl) #url url = "http://www.zillow.com/search/…

json r rcurl jsonlite
R - install_github fails

I am trying to install a package from github in R, however I am getting the following error: > install_…

r github rcurl
How to get google search results

I used the following code: library(XML) library(RCurl) getGoogleURL <- function(search.term, domain = '.co.uk', quotes=…

r hyperlink rcurl
SSL verification causes RCurl and httr to break - on a website that should be legit

i'm trying to automate the login of the UK's data archive service. that website is obviously trustworthy. unfortunately, both RCurl …

r curl ssl rcurl httr
using Rcurl with HTTPs

I tried the following code in R on windows: library(RCurl) postForm("https://www.google.com/accounts/ClientLogin/", "email" = "me@…

r rcurl
Making a GET request in R

I've been playing a little with httr and rcurl and cannot manage to translate the following curl GET request into …

r http rcurl httr
RCurl: HTTP Authentication When Site Responds With HTTP 401 Code Without WWW-Authenticate

I'm implementing an R wrapper around PiCloud's REST API using the RCurl package to make HTTP(S) requests to the …

r rcurl