Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨有人试图将 R 连接到 Neo4J 吗?使用代码时:
graph <- startGraph(url ="http://xxx.x.x:7474/browser/", username = "neo4j", password = "password")
我收到错误: 未提供编码:默认为 UTF-8。错误:客户端错误:(403)禁止
这与 Neo4J 浏览器有关吗?我需要做什么?
您使用的 URL 无效。您应该指向http://xxx.x.x:7474/db/data/(而不是 Neo4j 浏览器端点)。尝试:
http://xxx.x.x:7474/db/data/
graph <- startGraph(url ="http://xxx.x.x:7474/db/data/", username = "neo4j", password = "password")