我在使用Content-Length>发布数据时遇到问题1024使用RCurl和postForm()。如何增加HTTP请求的大小限制?
curl.opts <- list(httpheader = "Expect:",
httpheader = "Accept:text/xml",
verbose = TRUE,
followlocation = TRUE)
hmm <- postForm(myurl, longtxt=lotsoftext,
style = "POST", .opts = curl.opts)
每当Content-Length为&lt; 1024服务器应该响应,而&gt; 1024会导致错误。另一方面,从命令行使用“curl”对于长内容也可以正常工作。