在 Ionic 上接收通知附加数据(ionic native push / phonegap-plugin-push)
Receiving notification additional data on Ionic (ionic native push / phonegap-plugin-push)
我们正在努力使用 Ionic Native 推送插件(基于 phonegap-plugin-push)。虽然我们确实收到发送的推送通知,但我们无法处理我们发送的特定负载,因此当点击通知时,应用程序会在特定页面中打开。
对于 Android 推送通知,我们使用 Firebase 云消息传递来传递通知,对于 iOS,我们使用 APNS。
应用程序打开,但要么在主页中,要么在之前打开的任何页面中。
这是我们的初始化推送代码:
private initPush() {
this.push.hasPermission()
.then((res: any) => {
// just some console logs irrelevant to this question
});
const options: PushOptions = {
android: { clearBadge: true, forceShow: true },
ios: { alert: 'true', badge: true, sound: 'false', clearBadge: true },
windows: {}
};
const pushObject: PushObject = this.push.init(options);
try {
pushObject.on('notification').subscribe((notification: any) => this.onNotification(notification));
pushObject.on('registration').subscribe((registration: any) => this.onRegister(registration));
pushObject.on('error').subscribe(error => this.onError(error));
this.authorizationService.currentUser.subscribe((nextUser) => this.fullfillPushTokenRegistration());
} catch (e) {
console.error('Error on registering push methods', e);
}
}
onNotification(notification): void {
console.info('On Push Notification', JSON.stringify(notification));
const addData = notification.additionalData;
this.notificationEventsService.createEvent('push', 'click', addData);
}
应该与 Ionic Native push "notification" 事件一起触发的 onNotification
方法从未被调用,因此我们无法处理让我们导航到相关特定页面的额外有效负载到通知。
我们使用的是以下版本:
@ionic/core: 4.11.1
@ionic-native/push: 5.15.0
phonegap-plugin-push: 2.3.0
@angular/core: 8.1.2
我们知道此插件已停产,我们可能应该切换到 OneSignal,但我们正在努力避免这种情况,除非这是我们的最后手段,因为它需要额外的开发。
这是我们使用负载创建通知的 Kotlin 代码片段,如果有帮助的话:
val message = Message.builder().setToken(device.deviceToken)
val fcmNotification: com.google.firebase.messaging.Notification = com.google.firebase.messaging.Notification(
notification.title, notification.message
)
message.setNotification(fcmNotification)
message.putData("action", notification.action!!.toString())
message.putData("pendingToViewUserNotifications", pendingToViewUserNotifications.toString())
message.putData("referenced", notification.referenced)
message.putData("notificationId", notification.id.toString())
message.putData("title", notification.title)
message.putData("body", notification.message)
message.putData("badge", pendingToViewUserNotifications.toString())
message.putData("content-available", "1")
when (device.deviceOs!!.toLowerCase()) {
"android" -> message.setAndroidConfig(AndroidConfig.builder()
.setTtl(3600 * 1000)
.setNotification(AndroidNotification.builder()
.setIcon("stock_ticker_update")
.setColor("#f45342")
.build())
.build())
不确定这是否适合您,但在我以前的应用程序中,我必须为 android 和 iOS 设置不同的结构。
Android:
registration_ids : [],
data: {
notId: "", // notId on Android needed to be an int and not a string
title: "",
body: "",
soundname: "default",
}
iOS:
registration_ids : [],
notification:{
title: "",
body: "",
sound: "default",
},
data: {
title: "",
body: "",
}
或..
你可以通过这个Android notification data pass,下面的有效载荷应该适用于Android和iOS。
{
"priority" : "high",
"notification" : {
"title": "Title",
"body": "Body",
"sound": "default",
"click_action": "com.adobe.phonegap.push.background.MESSAGING_EVENT"
},
"data" : {
"more": "data goes here"
},
"to" : "id"
}
希望这对您有所帮助。干杯。
所以我终于设法修复了它...必须在数据负载中设置 content-available: "1"
并在推送请求正文中设置 contentAvailable: true
,以及设置 noCache: "1"
.
放弃了 Firebase SDK 并手动执行请求,现在终于调用了 on('notification')
。
如果 additionalData.foreground
为真,您还需要在通知回调中处理,因为在前台,通知事件会在显示通知后立即触发,并在点击时再次触发,前景为 false .
这是我发送给 FCM API 的示例负载:
{
"to":"FIREBASE_TOKEN",
"content_available": true,
"data": {
"action": "ACTION(Custom payload data)",
"referenced": "REFERENCED(Custom payload data)",
"force-start": "1",
"content-available": "1",
"no-cache": "0",
"notId": "4361c4f5-ae8d-42fa-a863-a04acff2ab7a",
"title": "TEST"
}
"priority":10
}
我们正在努力使用 Ionic Native 推送插件(基于 phonegap-plugin-push)。虽然我们确实收到发送的推送通知,但我们无法处理我们发送的特定负载,因此当点击通知时,应用程序会在特定页面中打开。
对于 Android 推送通知,我们使用 Firebase 云消息传递来传递通知,对于 iOS,我们使用 APNS。
应用程序打开,但要么在主页中,要么在之前打开的任何页面中。
这是我们的初始化推送代码:
private initPush() {
this.push.hasPermission()
.then((res: any) => {
// just some console logs irrelevant to this question
});
const options: PushOptions = {
android: { clearBadge: true, forceShow: true },
ios: { alert: 'true', badge: true, sound: 'false', clearBadge: true },
windows: {}
};
const pushObject: PushObject = this.push.init(options);
try {
pushObject.on('notification').subscribe((notification: any) => this.onNotification(notification));
pushObject.on('registration').subscribe((registration: any) => this.onRegister(registration));
pushObject.on('error').subscribe(error => this.onError(error));
this.authorizationService.currentUser.subscribe((nextUser) => this.fullfillPushTokenRegistration());
} catch (e) {
console.error('Error on registering push methods', e);
}
}
onNotification(notification): void {
console.info('On Push Notification', JSON.stringify(notification));
const addData = notification.additionalData;
this.notificationEventsService.createEvent('push', 'click', addData);
}
应该与 Ionic Native push "notification" 事件一起触发的 onNotification
方法从未被调用,因此我们无法处理让我们导航到相关特定页面的额外有效负载到通知。
我们使用的是以下版本:
@ionic/core: 4.11.1
@ionic-native/push: 5.15.0
phonegap-plugin-push: 2.3.0
@angular/core: 8.1.2
我们知道此插件已停产,我们可能应该切换到 OneSignal,但我们正在努力避免这种情况,除非这是我们的最后手段,因为它需要额外的开发。
这是我们使用负载创建通知的 Kotlin 代码片段,如果有帮助的话:
val message = Message.builder().setToken(device.deviceToken)
val fcmNotification: com.google.firebase.messaging.Notification = com.google.firebase.messaging.Notification(
notification.title, notification.message
)
message.setNotification(fcmNotification)
message.putData("action", notification.action!!.toString())
message.putData("pendingToViewUserNotifications", pendingToViewUserNotifications.toString())
message.putData("referenced", notification.referenced)
message.putData("notificationId", notification.id.toString())
message.putData("title", notification.title)
message.putData("body", notification.message)
message.putData("badge", pendingToViewUserNotifications.toString())
message.putData("content-available", "1")
when (device.deviceOs!!.toLowerCase()) {
"android" -> message.setAndroidConfig(AndroidConfig.builder()
.setTtl(3600 * 1000)
.setNotification(AndroidNotification.builder()
.setIcon("stock_ticker_update")
.setColor("#f45342")
.build())
.build())
不确定这是否适合您,但在我以前的应用程序中,我必须为 android 和 iOS 设置不同的结构。
Android:
registration_ids : [],
data: {
notId: "", // notId on Android needed to be an int and not a string
title: "",
body: "",
soundname: "default",
}
iOS:
registration_ids : [],
notification:{
title: "",
body: "",
sound: "default",
},
data: {
title: "",
body: "",
}
或..
你可以通过这个Android notification data pass,下面的有效载荷应该适用于Android和iOS。
{ "priority" : "high", "notification" : { "title": "Title", "body": "Body", "sound": "default", "click_action": "com.adobe.phonegap.push.background.MESSAGING_EVENT" }, "data" : { "more": "data goes here" }, "to" : "id" }
希望这对您有所帮助。干杯。
所以我终于设法修复了它...必须在数据负载中设置 content-available: "1"
并在推送请求正文中设置 contentAvailable: true
,以及设置 noCache: "1"
.
放弃了 Firebase SDK 并手动执行请求,现在终于调用了 on('notification')
。
如果 additionalData.foreground
为真,您还需要在通知回调中处理,因为在前台,通知事件会在显示通知后立即触发,并在点击时再次触发,前景为 false .
这是我发送给 FCM API 的示例负载:
{
"to":"FIREBASE_TOKEN",
"content_available": true,
"data": {
"action": "ACTION(Custom payload data)",
"referenced": "REFERENCED(Custom payload data)",
"force-start": "1",
"content-available": "1",
"no-cache": "0",
"notId": "4361c4f5-ae8d-42fa-a863-a04acff2ab7a",
"title": "TEST"
}
"priority":10
}