ios – 使用Firebase实现推送通知的最佳方式

前端之家收集整理的这篇文章主要介绍了ios – 使用Firebase实现推送通知的最佳方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是一个iPhone应用编码器,我正在使用Firebase作为后端服务器. Firebase不支持推送通知,所以我一直在试图找出如何将它们包含在我的应用程序中.我已经看过这个问题: How to send an alert message to a special online user with firebase,但它似乎比一个实际的解决方案更多的解决方案.

有没有答案如何做到这一点?是否有第三方或API可能无法实现此功能

我尝试过的一个解决方案是使用Zapier将Firebase连接到Pushover.

在这一点上,我已经能够在应用程序中观察到我正在编码的事件,然后在我的iphone上的pushover应用程序中获得通知.但是,理想情况下,我希望在我的应用程序中收到通知,而不是在pushover应用程序中收到通知,因为我不希望用户需要pushover才能使用我的应用程序,因为我希望用户能够收到他们自己的通知,而不是所有人的通知.

有没有人对如何处理这个问题提出建议?

谢谢您的帮助!

编辑
这不是这个问题的重复:Does firebase handle push notifications?因为我知道Firebase不直接处理推送通知.我正在寻找使用Firebase处理推送通知的最佳间接方式.

解决方法

现在,Google将GCM重新命名为 Firebase Cloud Messaging,现在提供这种跨平台服务. Firebase还提供 notifications.

这两个服务之间的区别是:

Firebase Cloud Messaging provides a complete set of messaging
capabilities through its client SDKs and HTTP and XMPP server
protocols. For deployments with more complex messaging requirements,
FCM is the right choice.

Firebase Notifications is a lightweight,serverless messaging solution
built on Firebase Cloud Messaging. With a user-friendly graphical
console and reduced coding requirements,Firebase Notifications lets
users easily send messages to reengage and retain users,foster app
growth,and support marketing campaigns.

如果您想要更详细的比较.阅读this.

原文链接:https://www.f2er.com/iOS/329588.html

猜你在找的iOS相关文章