0

我正在尝试使用 PhoneGap 的推送通知插件,但在尝试在 Android 上注册推送通知时收到并出错(尚未在其他平台上测试)。出于测试目的,我创建了一个重现此问题的最小示例应用程序。

安装示例应用

查看示例应用源代码

非常感谢您的帮助:-)

4

1 回答 1

0

我发现了问题。我没有使用我应该使用的插件;而不是这样写:

pushNotification.register(pg_success_handler, pg_error_handler, {
  "senderID": "<sender id>",
  "ecb": on_pg_gcm_notification
});

我应该这样写:

pushNotification.register(pg_success_handler, pg_error_handler, {
  "senderID": "<sender id>",
  "ecb": "on_pg_gcm_notification"
});

现在注册工作:)

于 2013-07-26T09:10:45.680 回答