在 C#.net 中向多个设备(但不是所有设备)发送 FCM 通知



我正在我的安卓应用程序中使用 FCM 通知。通知必须同时发送到有限数量的用户(大约 200 个用户) 使用 .NET 页面

    public static void SendPushNotification()
    {
        try
        {
            string applicationID = "ABC****xyz";
            string senderId = "01*****89";
            string deviceId1 = "def****jdk";
            string deviceId2 = "lej****wka";
            string deviceId3 = "fqx****pls";
            WebRequest tRequest = WebRequest.Create("https://fcm.googleapis.com/fcm/send");
            tRequest.Method = "post";
            tRequest.ContentType = "application/json";
            var data = new
            {
                //This line is the problem
                to = deviceId1+","+deviceId2+","+deviceId3,
                notification = new
                {
                    body = "Notification Body",
                    title = "Notification Title",
                    sound = "Enabled",
                    icon = "MyIcon"
                }
            };
            var serializer = new JavaScriptSerializer();
            var json = serializer.Serialize(data);
            Byte[] byteArray = Encoding.UTF8.GetBytes(json);
            tRequest.Headers.Add(string.Format("Authorization: key={0}", applicationID));
            tRequest.Headers.Add(string.Format("Sender: id={0}", senderId));
            tRequest.ContentLength = byteArray.Length;
            using (Stream dataStream = tRequest.GetRequestStream())
            {
                dataStream.Write(byteArray, 0, byteArray.Length);
                using (WebResponse tResponse = tRequest.GetResponse())
                {
                    using (Stream dataStreamResponse = tResponse.GetResponseStream())
                    {
                        using (StreamReader tReader = new StreamReader(dataStreamResponse))
                        {
                            String sResponseFromServer = tReader.ReadToEnd();
                            string str = sResponseFromServer;
                        }
                    }
                }
            }
        }
        catch (Exception ex)
        {
            string str = ex.Message;
        }
    }

to行是我连接多个设备的地方如何只发送这些设备的通知?

谢谢

要向多个设备发送推送通知,必须使用"registration_ids"而不是包含设备令牌数组的"to"参数。限制是,此方法最多可以提供 1000 个设备令牌。查看此内容以供参考 FCM 下游消息

最新更新