如何使用C#将带有图像的FCM通知发送到所有设备



是否有任何方法可以使用C#?

将FCM通知 - 加上图像 -

我想包括图像并通过Firebase Notification Service发送到所有设备,而不是发送到一个特定的设备ID。

我使用此代码将数据发送到单个用户设备,但没有图像:

public string SendNotificationInstaTips(string firebaseID, 
        string notTitle
        string notText, 
        string notContent)
    {
        try
        {
            string SERVER_API_KEY = "AIza..QXq5OQCaM";
            string SENDER_ID = "162..09";                
            string REGISTERATION_ID = firebaseID;
            WebRequest tRequest = WebRequest.Create("https://fcm.googleapis.com/fcm/send");
            tRequest.Method = "post";
            tRequest.ContentType = "application/json";
            var data = new
            {
                to = REGISTERATION_ID,
                data = new
                {
                    title = notTitle,
                    text = notText
                    content = notContent
                }
            };
            var serializer = new JavaScriptSerializer();
            var json = serializer.Serialize(data);
            Byte[] byteArray = Encoding.UTF8.GetBytes(json);
            tRequest.Headers.Add(string.Format("Authorization: key={0}", SERVER_API_KEY));
            tRequest.Headers.Add(string.Format("Sender: id={0}", SENDER_ID));
            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();
                            return sResponseFromServer;
                        }
                    }
                }
            }
        }
        catch (Exception ex)
        {
            return ex.Message;
        }
    }

我一直在使用PHP进行此操作,但在C#中应该相似。使用"注册ID",而不是您的代码中的" to"

var data = new
        {
            to = REGISTERATION_ID, //Change this line
            data = new
            {
                title = notTitle,
                text = notText
                content = notContent
            }
        };
var data = new
        {
            registration_ids = {"AIza..QXq5OQCaM","An2i..QXq5OQCaM", .....},
            data = new
            {
                title = notTitle,
                text = notText
                content = notContent
            }
        };

希望这有帮助

这不是推送通知的常用用例。对于FCM,强烈建议不要发送图像,这主要是因为有效载荷尺寸限制-notification的2KB,data的4KB。

我建议使用firebase存储存储图像,然后在需要时将其下载到设备中,只是将下载URL发送到推送通知中而不是作为解决方法。

有关如何发送到多个设备的问题,请参见我的答案。我建议您的用例使用主题消息传递。

相关内容

  • 没有找到相关文章

最新更新