繁体   English   中英

如何获取设备令牌

[英]How to get the device token

安装完成后,我需要获取 deviceToken 用于其他目的。 这是我到目前为止开发的:

Parse.initialize(this, "qqd423WEfwWEF32FewferT434fs323rfRT", "g7Rre4g7gsGRwgGw458Hdf443gFHk534Mrtg34");
    final ParseInstallation currentInstallation = ParseInstallation.getCurrentInstallation();

    currentInstallation.saveInBackground(new SaveCallback() {
        public void done(ParseException e) {
            if (e == null) {
                System.out.println("ok");
                deviceToken = currentInstallation.get("deviceToken").toString();
                System.out.println(deviceToken);
            } else {
                System.out.println("not ok");
            }
        }
    });

问题是,如果我执行代码应用程序崩溃,这是生成的错误:

02-02 09:44:17.151    ﹕ FATAL EXCEPTION: main, PID: 5855 java.lang.NullPointerException

生成这个的代码就是这个:

deviceToken = currentInstallation.get("deviceToken").toString();

有谁能帮助我吗? 我只需要在安装完成后获取 deviceToken。

代码没有问题,我猜您正在模拟器中测试此代码,而在模拟器中它不会有任何deviceToken ,请在真实设备中尝试您的代码。

可能会迟到但也可能会有所帮助:)

Parse 有时会在调用 done() 方法时出现一些延迟,我已经看到在我使用应用程序 3 分钟并退出它之后调用它。

我对方法调用使用了不同的顺序:

Parse.initialize(this, "*******", "*******");

    ParsePush.subscribeInBackground("", new SaveCallback()
    {
        @Override
        public void done(ParseException e)
        {
            if (null == e)
            {
                ParseInstallation install = ParseInstallation.getCurrentInstallation();
                String token = install.getString("deviceToken");
                if (token != null)
                {
                    //saved it locally and other stuff
                }
                else
                 {
                   //saved a temporary default value locally
                 }
            }
        }
    });
    ParseInstallation.getCurrentInstallation().saveInBackground();

希望这在某种程度上有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM