5

我目前正在使用这个 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="http://urlhere", with various options...) 并且没有任何结果。这样做更快还是值得弄清楚?

谢谢

4

0 回答 0