将Firebase通知推送到一个客户端

时间:2019-01-05 04:16:00

标签: android firebase firebase-cloud-messaging

我有一个带有firebase的android应用程序,我想只将通知从另一个客户端发送给一个客户端,而不是发送给安装该应用程序的所有人。 “云消息传递”允许我向每个拥有该应用程序的客户端发送通知 有帮助吗?

1 个答案:

答案 0 :(得分:1)

Firebase Cloud Messaging还可以让您向单个客户端发送通知,只要您知道该客户端的FCM令牌即可。例如,请参见sending a message to a token using the Composer in the Firebase consolesending a message to an individual device using the Admin SDKsending a message to an individual device using the HTTP REST API上的部分。

但是FCM不允许不允许将一次客户端的通知直接从发送给另一个客户端。您将始终需要从受信任的环境(例如Firebase控制台中的Composer,您的开发计算机,您控制的服务器或Cloud Functions)发送下游消息。有关此的更多信息,请参阅: