1

我在 Google Play 商店中发布了一个 Android 应用程序,我想添加推送通知。我尝试了 Parse.com并实现了本指南中提到的代码。当我尝试发送测试推送时,Parse.com 说:`没有客户订阅广播推送频道。请仔细检查您是否正确设置了 SDK。

另外,当我去解析云

仪表板 --> 推送通知 --> 发送推送

解析 说: Your application does not have any registered devices to which it can send notifications.

我确定我已经正确实现了所有代码!

4

1 回答 1

1

我认为您忘记了(正如错误消息告诉您的那样)注册该设备!

  ParseUser user = new ParseUser();
    user.setUsername("jondoe");
    user.setPassword("123456");
    user.setEmail("jon@gmail.com");


    user.signUpInBackground(new SignUpCallback() {
      public void done(ParseException e) {
        if (e == null) {
          // Hooray! Let them use the app now.
        } else {
          // Sign up didn't succeed. Look at the ParseException
          // to figure out what went wrong
        }
      }

    @Override
    public void done(com.parse.ParseException arg0) {
        // TODO Auto-generated method stub
}
    });

设备注册后,系统知道向谁发送通知!此外,在“数据浏览器”选项卡中的 Parse.com 仪表板中,如果单击左侧的“安装”,则必须看到一行。

于 2014-02-05T11:07:34.500 回答