我尝试为我的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"
}
}
}
Here is the documentation I used.
我收到的通知的标题为“默认标题”,正文为“默认正文”。 我希望它具有“ Android标题”和“ Android正文”。此外,通知不会推送到频道1,而是会推送到其他。
当我忽略“根”通知部分时,根本没有显示通知。
答案 0 :(得分:0)
对于面临相同问题的每个人: 这是我为通过Postman发送Firebase云消息而进行的配置步骤。
Google-Cloud配置:
POSTMAN配置:
完成这些步骤后,您应该能够按照本文档中的说明发送消息:https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send