child added/modified 上的 Firebase 通知
Firebase notification on child added/modified
是否可以在 firebase 数据库更改时生成推送通知(如果应用程序不在前台)?我开始编写 android 应用程序。
当然有。只需让您的 Android 应用将通知请求写入数据库即可。
发送设备到设备的通知在 Firebase 云消息传递中不受支持(参见 ), so you'll need a server component for that. For an example of how to send a push notification in nodejs, see this answer。
要以简单的方式做到这一点,您可以使用服务,在该服务中,您可以在触发事件时在 firebase 数据库中的引用上设置一个监听器,您可以创建一个通知并将其显示给用户.
这是一个非常简单的教程:
https://www.simplifiedcoding.net/android-push-notification-tutorial-using-firebase/
Firebase 提供了一个名为 Cloud Functions 的工具。
有了这个,您可以监听您的 Firebase 数据库并发送通知,而无需外部服务器:)
是否可以在 firebase 数据库更改时生成推送通知(如果应用程序不在前台)?我开始编写 android 应用程序。
当然有。只需让您的 Android 应用将通知请求写入数据库即可。
发送设备到设备的通知在 Firebase 云消息传递中不受支持(参见
要以简单的方式做到这一点,您可以使用服务,在该服务中,您可以在触发事件时在 firebase 数据库中的引用上设置一个监听器,您可以创建一个通知并将其显示给用户.
这是一个非常简单的教程: https://www.simplifiedcoding.net/android-push-notification-tutorial-using-firebase/
Firebase 提供了一个名为 Cloud Functions 的工具。
有了这个,您可以监听您的 Firebase 数据库并发送通知,而无需外部服务器:)