我正在使用GrapheneDB,我尝试重新使用我曾经使用的代码从AWS服务器连接到Neo4J服务器。但它没有将数据插入GrapheneDB,我不知道这里有什么问题。以前,我使用了localhost:7474
,但现在我使用以下网址。我怎样才能让它发挥作用?
$http="http://username:password@hobby-1312.dbs.graphenedb.com:2789/db/data/cypher/";
$data =' MERGE (a:User {name:"name",id:"id" }) ';
$data = array("query" =>$data);
$data_string = json_encode($data);
$ch = curl_init($http);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
答案 0 :(得分:0)
我是GrapheneDB的Judit。您共享的代码应该可以使用。您是否可能在限制性防火墙后面?我们的实例在非标准端口上运行,而某些防火墙阻止访问。