Posts

Showing posts with the label Android Notification

Send Push Notification to ANDROID Devices

SEND PUSH NOTIFICATION TO ANDROID DEVICES public static string APPSendNotification(string Title, string Text, string DeviceID, CSendNoti Data, int DeviceType = 1)     {         var result = "-1";         try         {             if (!string.IsNullOrEmpty(DeviceID))             {                 var webAddr = "https://fcm.googleapis.com/fcm/send";                 //VAISHALI GEMS                 //string SERVER_API_KEY = "SERVERAPIKEY";                 //string SENDER_ID = "SENDERID";                 string SERVER_API_KEY = "SERVERAPIKEY";                 string SENDER_ID = "SENDERID";     ...