使用phonegap-push-plugin
时,如果我的应用程序在前台/后台运行,则可以从AWS SNS接收推送通知,但是如果该应用程序被终止或未运行,则什么也不会发生。
var push = PushNotification.init({
android: {
'senderID': 'XXXXXXXXXXX',
'forceShow': true
},
ios: {
alert: "true",
badge: "true",
sound: "true"
}
});
push.on('registration', function(data) {
alert(data.registrationId);
});
push.on('notification', function(data) {
});
push.on('error', function(e) {
//e.message
});