Posts

Showing posts from September, 2017

Send simple notification to Android

Send  simple notification to Android    public string SendNotification( string DeviceToken, string message)         {             var value = message;             WebRequest tRequest;             tRequest = WebRequest .Create( "https://android.googleapis.com/gcm/send" );             tRequest.Method = "post" ;             tRequest.ContentType = " application/x-www-form-urlencoded;charset=UTF-8" ;             tRequest.Headers.Add( string .Format( "Authorization: key={0}" , Common .GoogleAppID));             tRequest.Headers.Ad...