1
我嘗試使用這個代碼啁啾的R控制檯
library("RCurl")
opts <- curlOptions(header = FALSE,
userpwd = "username:password", netrc = FALSE)
tweet <- function(status){
method <- "http://twitter.com/statuses/update.xml?status="
encoded_status <- URLencode(status)
request <- paste(method, encoded_status, sep = "")
postForm(request,.opts = opts)
}
tweet("This tweet comes from R! #rstats")
從我的 - [R控制檯鳴叫,但得到此錯誤:原始(0) Warnmeldung: 在postForm(請求,.opts = optss):沒有輸入傳遞給表單。
可以somenone幫助我嗎?發現http://blog.revolutionanalytics.com/2009/06/tweeting-from-r.html
代碼非常感謝您
你見過這個:http://stackoverflow.com/questions/4252694/using-r-to-send-tweets?rq=1 – Mist