解析api教程测试返回404

时间:2016-01-15 17:16:53

标签: android parse-platform

我已经开始使用Android上的Parse教程了 我在App.onCreate

中设置了清单和init
Parse.enableLocalDatastore(this);
Parse.initialize(this);
ParseFacebookUtils.initialize(this, C.REQUEST_CODE_FB_LOGIN);

ParseObject testObject = new ParseObject("TestObject");
testObject.put("foo", "bar");
testObject.saveInBackground();

问题是我可以在我的代理中看到数据正在发送但响应是:

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=utf-8
Date: Fri, 15 Jan 2016 17:08:43 GMT
Server: nginx/1.6.0
Content-Length: 168
Connection: keep-alive

<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.6.0</center>
</body>
</html>

任何想法为什么他们的基础教程失败了?

1 个答案:

答案 0 :(得分:0)

您是否在Parse中登录并检查服务器中是否有对象。 在这里你的&#34; TestObject&#34;间接是你的DataTable。

基本上你必须在Parse帐户中创建对象表,然后运行这段代码。

要在Parse中捕获错误,请使用以下代码

尝试这一点,看看你在变量&#34; e&#34;

中的反应是什么
testObject.saveInBackground(new SaveCallback() {
        @Override
        public void done(ParseException e) {
        if (e != null) {
            //Error
                } else {
            //No error
        }
}