嗨,我是在Windows中使用RJSONIO,當我執行以下正常工作:RJSONIO在Linux環境下的錯誤了以https
library(RJSONIO)
fromJSON("https://issues.apache.org/jira/rest/api/2/project")
它返回一個JSON但是當我做同樣的事情在我的Linux出現以下錯誤:
Error in file(con, "r") : cannot open the connection
在谷歌做一些搜索後,我發現我需要提「文件=」 fromJSON(文件=「https://issues.apache.org/jira/rest/api/ 2/project「)
所以現在我得到的錯誤:
unable to find an inherited method for function âfromJSONâ for signature â"missing", "missing"â
任何建議?
你在兩臺機器上使用的是什麼版本?你可以通過'installed.packages()[「RJSONIO」,「Version」]來找到。 – flodel