微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java / parse错误.试图从Android sdk发送到Parse

几天前为另一个应用程序设置了这个并且工作正常,结果成功发送到MongoLab.
尝试使用下面相同的基本代码再次为新应用程序执行此操作,但每次都失败.

有任何想法吗?谢谢!

@Override
  public void onCreate() {
    super.onCreate();

    // Enable Local Datastore.
    Parse.enableLocalDatastore(this);

    // Add your initialization code here
    Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
            .applicationId("abc123")
            .clientKey(null)
            .server("http://abc123.herokuapp.com/parse/")
    .build()
    );

      ParSEObject gamescore = new ParSEObject("Gamescore");
      gamescore.put("score",1337);
      gamescore.put("playerName","Sean Plott");
      gamescore.put("cheatMode",false);
      gamescore.saveInBackground(new SaveCallback() {
          public void done(ParseException e) {
              if (e == null) {
                  Log.i("Parse","Save Succeeded");
              } else {
                  Log.i("Parse","Save Failed");
              }
          }
      });

——日志在最后显示———

D/InputMethodManagerService: ime_enabled = false is same as last value,no change
W/InputMethodManagerService: Got remoteexception sending setActive(false) notification to pid 23566 uid 10087
I/ActivityManager: displayed com.parse.starter/.MainActivity: +410ms (total +10m33s240ms)
D/WindowManager: topdisplayedActivityInfo,appToken: Token{2e99c6e0 ActivityRecord{2e79b238 u0 com.parse.starter/.MainActivity t19}}
W/System: Ignoring header X-Parse-Client-Key because its value was null.
W/System: Ignoring header X-Parse-Client-Key because its value was null.
W/System: Ignoring header X-Parse-Client-Key because its value was null.
D/dalvikvm: GC_FOR_ALLOC freed 600K,25% free 2735K/3644K,paused 10ms,total 10ms
W/System: Ignoring header X-Parse-Client-Key because its value was null.
I/Parse: Save Failed

解决方法

您的客户端密钥为空.

从heroku设置添加客户端密钥.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐