提问人:LMHull 提问时间:11/24/2017 更新时间:11/24/2017 访问量:202
RNeo4J 连接与 R 错误 403
RNeo4J connection with R error 403
问:
嗨,有人试图将 R 连接到 Neo4J 吗?使用代码时:
graph <- startGraph(url ="http://xxx.x.x:7474/browser/",
username = "neo4j",
password = "password")
我收到错误:未提供编码:默认为 UTF-8。 错误:客户端错误:(403) 禁止访问Error: Client error: (403) Forbidden
这与 Neo4J 浏览器有关吗?我需要做什么?
答:
2赞
Bruno Peres
11/24/2017
#1
您正在使用无效的 URL。你应该指向(而不是 Neo4j 浏览器端点)。尝试:http://xxx.x.x:7474/db/data/
graph <- startGraph(url ="http://xxx.x.x:7474/db/data/",
username = "neo4j",
password = "password")
评论
0赞
LMHull
11/27/2017
谢谢,我现在正在使用:'''graph <- startGraph(url = “xxx.x.x.x:7474/db/data”, username = “neo4j”, password = “password”) 仍然收到相同的错误。
评论