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设置添加客户端密钥.

相关文章

HashMap是Java中最常用的集合类框架,也是Java语言中非常典型...
在EffectiveJava中的第 36条中建议 用 EnumSet 替代位字段,...
介绍 注解是JDK1.5版本开始引入的一个特性,用于对代码进行说...
介绍 LinkedList同时实现了List接口和Deque接口,也就是说它...
介绍 TreeSet和TreeMap在Java里有着相同的实现,前者仅仅是对...
HashMap为什么线程不安全 put的不安全 由于多线程对HashMap进...