Skip to content
Prev 208221 / 398502 Next

RCurl : limit of downloaded Urls ?

Alexis-Michel Mugabushaka wrote:
I believe that Google would much prefer that you use their API
rather than their regular HTML form to make programmatica search queries.
_bytes_   I assume
zz = getForm("http://www.google.com/search", q='google+search+api', num = 100)
nchar(zz)
[1] 109760

So more than 3 times 32Kb and there isn't a limit of 32K.

The results will most likely be "chunked", i.e. returned in blocks,
but getForm() and other functions will, by default, combine the chunks
and return the entire answer. If you were to provide your own function
for the writefunction option in RCurl functions, then your
function will be called for each chunk.

So to be able to figure out why things are not working for you,
we need to see the R code  you are using, and know the operating
system and versions of the RCurl package and R.

 D.