我已经在阿里巴巴云上的专用实例中设置了解析服务器和解析仪表板,其中2vCPU和8GB内存与ApsaraDB for MongoDB作为DB for Parse。 我成功设置了仪表板和服务器。当我试图访问服务器时,我收到以下错误, “无法连接到服务器。”
我能够成功地进行POST和GET请求,如下所示
curl -X POST \
-H "X-Parse-Application-Id: APPLICATION_ID" \
-H "Content-Type: application/json" \
-d '{"score":1337,"playerName":"Sean Plott","cheatMode":false}' \
http://localhost:1337/parse/classes/GameScore
//Response
{
"objectId": "2ntvSpRGIK",
"createdAt": "2016-03-11T23:51:48.050Z"
}
我可以通过putty和FTP连接。 谢谢
答案 0 :(得分:0)
虽然您的计算机(我的意思是其他应用程序)到达服务器,但Parse仪表板却没有。
在信息中心配置中,您可以尝试更改
http://localhost:1337/parse
到
http://[ip-address]:1337/parse
另外,通过这个主题,您可以更深入地了解它为什么不起作用: https://github.com/parse-community/parse-dashboard/issues/785