我有asp .net应用程序,它通过firebase javascipt sdk向客户端发送通知消息。 我们有9000个用户端点。 如何一次向所有用户发送通知消息。
var message = {
to: 'endpoint',
notification: {
title: message.title,
body: message.information
}
谢谢..
答案 0 :(得分:0)
通过Firebase Cloud Messaging发送消息可以通过调用其HTTP端点来完成。该过程记录在案here。
如果应用的所有用户都可以使用这些消息,您可以考虑让他们订阅特定主题,然后sending a message to that topic。
如果邮件应单独发送给每个用户,您可以send a message to the individual devices。目前,这意味着您需要对API进行9000次调用,但需要multicast feature is in the works。