如何使用Firebase Cloud Messaging将数据有效负载发送给所有用户?

时间:2017-02-26 18:54:37

标签: android firebase google-cloud-messaging firebase-cloud-messaging

我想使用Firebase Cloud Messaging服务向使用该应用的所有用户发送一些消息。我可以使用regisration_ids将数据有效负载发送到单个或多个设备,如下所示:

{

    "data": {
      "body":"body",
        "my_custom_key" : "215",
        "other_key" : true
     },
           "registration_ids": ["dCmhVkVMmLw:APA91bE5.."]

}

但是如何将数据有效负载发送给所有用户?

1 个答案:

答案 0 :(得分:0)

您可以使用topics,您需要为主题订阅所有用户/设备,然后执行发送请求。

您可以在此处详细了解:https://firebase.google.com/docs/cloud-messaging/android/topic-messaging