当应用程序被终止/未运行时,未收到来自AWS SNS的推送通知

时间:2019-07-17 05:15:20

标签: cordova ionic-framework plugins push-notification amazon-sns

使用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
});

0 个答案:

没有答案