RNeo4j startGraph gives 'Error: Success: (200) OK'

RNeo4j startGraph gives 'Error: Success: (200) OK'

使用 http://nicolewhite.github.io/2014/06/30/create-shiny-app-neo4j-graphene.html 中的示例时 ... startGraph 函数出错

> library(RNeo4j)
> graph = startGraph("http://localhost:7474/db/data/") 
  Error: Success: (200) OK
> importSample(graph, "dfw")
  Error in importSample(graph, "dfw") : object 'graph' not found
> 

neo4j 社区版服务器版本 2.3.2 是 运行 并且在 neo4j-server.properties 文件中关闭了身份验证,声明如下: 'dbms.security.auth_enabled=false'

有没有其他人遇到过这个问题并有解决方案?

这是 httr v1.0.0 和 httr v1.1.0 之间的重大更改引入的错误。它在 RNeo4j v1.6.3 中已经 fixed,现在可以在 CRAN 上使用。使用 install.packages("RNeo4j") 更新 RNeo4j 并重新启动 R.