带有cordova前台和后台的Firebase推送通知



我正在使用react Project开发Cordova。我已经为android和ios设置了google firebase google-services.json和GoogleService-Info.plist。我正在使用下面的软件包进行firebase通知设置。

https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated

FCM.requestPushPermission({
ios9Support: {
timeout: 10, // How long it will wait for a decision from the user before returning `false`
interval: 0.3, // How long between each permission verification
},
}).then((wasPermissionGiven) => {
console.log(wasPermissionGiven);
alert(JSON.stringify(wasPermissionGiven));
if (wasPermissionGiven) {
FCM.getAPNSToken().then((apnsToken) => {
alert(JSON.stringify(apnsToken));
console.log(apnsToken);
});
FCM.getToken().then((apnsToken) => {
alert(JSON.stringify(apnsToken));
console.log(apnsToken);
});
FCM.subscribeToTopic('handsome');
const disposables = FCM.onNotification((payload) => {
alert(JSON.stringify(payload.toString()));
console.log('payload', payload);
});
}
});

通过使用上面的代码,我得到了令牌和有效负载。目前,我正在用一个弹出窗口填充有效载荷。有人能帮我实现一个通知而不是弹出窗口吗?我在谷歌上搜索了很多,没有找到任何用Cordova react实现通知的参考。

案例1:在后台状态中测试应用程序

从firebase云消息发送通知,并在后台状态下测试应用程序/最小化应用程序,然后你会看到通知。

案例2:在前景状态中测试应用程序

你应该使用一些类似于这个插件的插件https://github.com/katzer/cordova-plugin-local-notifications#readme在应用程序处于前台时获取firebase通知。

相关内容

  • 没有找到相关文章

最新更新