我尝试对我的 Ionic4-Capacitor-App 实施推送通知。
在应用程序中,我有以下代码:
PushNotifications.register();
PushNotifications.createChannel({ id: '1', description: '2019', importance: 2, name: '2019'});
PushNotifications.addListener('pushNotificationReceived', (notification) => {
console.debug(JSON.stringify(notification));
});
使用 POSTMAN,我尝试发送以下消息:
{
"to": "<User-Token>",
"notification": {
"title": "Default Title",
"body": "Default Body"
},
"android": {
"notification": {
"title": "Android Title",
"body": "Android Title",
"channel_id": "1"
}
}
}
我收到的通知将“默认标题”作为标题,将“默认正文”作为正文。我希望它有“Android Title”和“Android Body”。此外,通知不会推送到频道 1,而是推送到杂项。
当我省略“根”通知部分时,根本不会显示任何通知。