我正在使用GraphenendB,我尝试重新使用用于从AWS服务器连接到Neo4J服务器的代码。但这不是将数据插入GraphenendB,我不知道这里有什么问题。以前,我使用了localhost:7474
,但现在我正在使用以下URL。我该如何工作?
$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);
我是GraphenendB的Judit。您共享的代码应该有效。您可能在限制性防火墙后面吗?我们的实例在非标准端口和某些防火墙块访问上运行。