Hi I'm using RJSONIO in Windows and when I perform the following it works fine:
library(RJSONIO)
fromJSON("https://issues.apache.org/jira/rest/api/2/project")
It returns a JSON but when I do the same thing in Linux I get the following error:
Error in file(con, "r") : cannot open the connection
after doing some search on Google I noticed I needed to mention "file=" fromJSON(file="https://issues.apache.org/jira/rest/api/2/project")
so now I get the error:
unable to find an inherited method for function âfromJSONâ for signature â"missing", "missing"â
Any suggests ?