简体   繁体   English

针对ios的FCM自定义通知

[英]FCM custom notification for ios

I know this question have been ask a lot of time in android but not ios. 我知道这个问题已经在android中问了很多时间但不是ios。 So I already test out push notification with FCM it work fine. 所以我已经用FCM测试推送通知它工作正常。 Mine problem is wether it's a way to create custom notification rather than letting the system to handle the notification with the notification payload? 我的问题是,它是一种创建自定义通知的方式,而不是让系统使用通知有效负载处理通知?

-Users can send data messages with FCM.What you have to send is, - 用户可以使用FCM发送数据消息。你必须发送的是,

Sample PostMan Json data: 示例PostMan Json数据:

{ "data": {
    "any key": "any value",
    "any key 2": "any value 2"
  },
  "to" : "token received to mobile from FCM"
}

Payload inside "data" can change according to the requirement. “数据”内的有效负载可以根据需要改变。

Mobile end: 移动端:

application(_:didReceiveRemoteNotification:) override method will get fire.So it is unto developer to extract data from the userInfo property in iOS and use it. 应用程序(_:didReceiveRemoteNotification :)覆盖方法将获得fire.So它是开发人员从iOS中的userInfo属性中提取数据并使用它。

For ios using c# working code:- 对于使用c#工作代码的ios: -

  public bool NotificationToiosDevice()
    {
        bool str;
        try
        {
            //Create the web request with fire base API  
            WebRequest tRequest = WebRequest.Create("https://fcm.googleapis.com/fcm/send");
            tRequest.Method = "post";
            //serverKey - Key from Firebase cloud messaging server  
            tRequest.Headers.Add(string.Format("Authorization: key={0}", "AAAALNl-P7o:APA91bE38khU73UTdIj7L6LvVS3uI6f47REmxl.................................."));
            //Sender Id - From firebase project setting  
            tRequest.Headers.Add(string.Format("Sender: id={0}", "12345"));
            tRequest.ContentType = "application/json";

            var payload = new
            {
                to = "dDDbFltwE5o:APA91bFmZZ-c1pNp................",

                priority = "high",
                content_available = true,
                notification = new
                {
                    title =  "Title Of Notification",

                },
                data = new
                {
                    body = new { Parameter1 = "FirstParameterValue", Parameter2 = "SecondParameterValue" },

                },
            };
            string jsonNotificationFormat = Newtonsoft.Json.JsonConvert.SerializeObject(payload);

            Byte[] byteArray = Encoding.UTF8.GetBytes(jsonNotificationFormat);
            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())
                    {
                        if (dataStreamResponse != null) using (StreamReader tReader = new StreamReader(dataStreamResponse))
                            {
                                String sResponseFromServer = tReader.ReadToEnd();
                                // str = sResponseFromServer;
                            }
                    }
                }
            }
            str = true;
        }
        catch (Exception ex)
        {
            str = false;
        }
        return str;
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM