我目前正在使用这个R代码来获取我想在Ubuntu机器上做的事情......
jsontext <- '{"text": "its really cold in here"}'
a <- paste('curl -H "Content-Type: application/json" -d ', " '", jsontext, "'", ' -X POST http://urlhere', sep="")
response <- system(a)
这给了我在命令提示符下输入的内容...
curl -H "Content-Type: application/json" -d '{"text": "its really cold in here"}' -X POST http://urlhere
我尝试过使用RCurl postForm(uri =&#34; http:// urlhere&#34;,有各种选项......)并且没有任何结果。以这种方式做得更快还是值得搞清楚?
由于