英文:
can I implement notification from backend on flutter app without using firebase?Also how can I navigate to a specific page while clicking notification
问题
可以在Flutter应用的后端实现通知系统而不使用Firebase吗?
如果我使用Firebase,会有什么费用?
费用是否取决于用户数量?
另外,在点击通知时如何导航到特定页面?
我听说必须将每个应用程序连接到Firebase才能发送个性化通知。
英文:
can I implement notification system from backend on flutter app without using firebase?
What will be the cost, if I use firebase?
does the cost change depend on number of users?
Also how can I navigate to a specific page while clicking notification?
I heard that it is nessessary to link every app to firebase to send personalised notification.
答案1
得分: 0
- 根据我所知,这是不可能的,因为Firebase直接将通知发送到特定平台的传输层,我不知道如何在后端完成这项任务 - 无论如何,您必须使用第三方服务来实现。
- FCM是完全免费的。
- 是的,您必须通过Firebase控制台中的应用ID注册应用,然后可以通过订阅主题或生成设备令牌来接收通知。
英文:
- As far as I know it is not possible because firebase sends notification directly to platform specific transport layer, I don't know how it can be done with backend - anyways you have to use third-party for that.
- FCM is totally free
- Yes you have to register app via app id in firebase console and then you may receive notification either by subscribing topic or generating device token.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论