FCM Mobile notifications for IOS using Asp.Net | Code2night.com
Code2night
  • Home
  • Blogs
  • Guest Posts
  • Tutorial
  • Post Blog
  • Register
  • Login
  1. Home
  2. Blogpost

FCM Mobile notifications for IOS using Asp.Net

Date- Jan 02,2022

5496

IOS Notifications AspNet

FCM(Firebase Cloud Messaging)

Firebase is used for sending notifications or cloud messaging. For sending notifications on Android devices we must have a firebase account. After you create firebase account you will get your firebase server key. We will see the next steps 

Controller-

So, we will use

https://fcm.googleapis.com/fcm/send

This api for sending notifications, we will see how to pass required data and server key. So for this api you need to add some data which we will serialize and send with the request . So your Firebase model must be like this.


public class FirebaseModel
{
        [JsonProperty(PropertyName = "to")]
        public string To { get; set; }

        [JsonProperty(PropertyName = "data")]
        public NotificationModel Data { get; set; }
}
	
public class NotificationModel
{
       
        [JsonProperty("title")]
        public string Title { get; set; }
        [JsonProperty("body")]
        public string Body { get; set; }
}

Now, use this code for sending notifications on IOS, Sender Id and server key can be taken from FCM registration.

FirebaseModel firebaseModel = new FirebaseModel();
firebaseModel.Data = new NotificationModel();
firebaseModel.To = "IOS Device Token";
firebaseModel.Data.Body = "Test Notificaton";
 WebRequest tRequest = WebRequest.Create("https://fcm.googleapis.com/fcm/send");
               tRequest.Method = "post";
               
               //serverKey - Key from Firebase cloud messaging server  
				var serverKey ="Your server key"
               tRequest.Headers.Add(string.Format("Authorization: key={0}", serverKey));
               //Sender Id - From firebase project setting  
				var senderId = "Enter your SenderId"; 
               tRequest.Headers.Add(string.Format("Sender: id={0}", senderId));
               tRequest.ContentType = "application/json";
               var totoken ="Enter your IOS Device Token";
               var payload = new
               {
                   to = totoken,
                   priority = "high",
                   content_available = true,
                   notification = new
                   {
                       body = firebaseModel.Data.Body,
                       title = firebaseModel.Data.Title,
                       badge = 1
                   },
                   data = firebaseModel
	  
               };
	  
               string postbody = JsonConvert.SerializeObject(payload).ToString();
               Byte[] byteArray = Encoding.UTF8.GetBytes(postbody);
               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();
                                   //result.Response = sResponseFromServer;
                               }
                       }
                   }
               }

So here we are addng some dummy data with device token in the firebase model. Then we are serializing the data and sending to the fcm api. After this, you can check you will receive one fcm notification on the device for which device token was specified. So, this is how we can send fcm notifications using asp.net for IOS.

Comments

Tags

LinkedinLogin
LinkedinProfile
GetLinkedinProfile
C#
Aspnet
MVC
Linkedin
ITextSharp
Export to Pdf
AspNet Core
AspNet
View to Pdf in Aspnet
Model Validation In ASPNET Core MVC 60
Model Validation
Model Validation In ASPNET Core MVC
Model Validation In ASPNET
Image Compression in AspNet
Compress Image in c#
AspNet MVC
Free Download for Youtube Subscribers!

First click on Subscribe Now and then subscribe the channel and come back here.
Then Click on "Verify and Download" button for download link

Subscribe Now | 1210
Download
Support Us....!

Please Subscribe to support us

Thank you for Downloading....!

Please Subscribe to support us

Continue with Downloading
Be a Member
Join Us On Whatsapp Join Us On Facebook

Welcome To Code2night, A common place for sharing your programming knowledge,Blogs and Videos

  • Panipat
  • info@Code2night.com

Links

  • Home
  • Blogs
  • Tutorial
  • Post Blog

Popular Tags

Copyright © 2025 by Code2night. All Rights Reserved

  • Home
  • Blog
  • Login
  • SignUp
  • Contact
  • Terms & Conditions
  • Refund Policy
  • About Us
  • Privacy Policy
  • Json Beautifier
  • Guest Posts