Displaying 2 results from an estimated 2 matches for "dyncurlread".
Did you mean:
  dyncurlreader
  
2013 Apr 24
0
string size limits in RCurl
...uot;, key, sep = ""),
                      httpheader = "Content-Type: application/json")
    request <- paste(.base.url, q, sep = "")
    txt <- getURL(url = request, curl = session, .opts = curl.opts,
                  write = basicTextGatherer())
or
    r = dynCurlReader()
    curlPerform(url = request, writefunction = r$update, curl = session,
                .opts = curl.opts)
My guess is that the `update` or `value` functions in the `basicTextGather` or `dynCurlReader` text handler objects are having trouble with the large strings.  In this example, `r$value(...
2011 Apr 29
1
RCurl and postForm()
Hi everybody,
I think that I am missing something fundamental in how strings are passed from a postForm() call in R to the curl or libcurl functions underneath.  For example, I can do the following using curl from the command line:
$ curl -d "Archbishop Huxley" "http://www.datasciencetoolkit.org/text2people"