Reputation:
I'm trying to develop an Xamarin Android App, the uses GCM services to send push Notifications.
I followed the tutorial presented on Xamarin tutorial page, that teach how to Register GCM, requesting the device Token and how to create a Message Sender.
All works fine, excepts that I want to send a push message to a particularly device with token x, and not to all of them.
The Message Sender looks like this:
private static void messageSender(string title, string message, string summary)
{
var jGcmData = new JObject();
var jData = new JObject();
jData.Add("message", message);
jData.Add("title", title);
jData.Add("summary", summary);
jGcmData.Add("to", "/topics/global");
jGcmData.Add("data", jData);
var url = new Uri("https://gcm-http.googleapis.com/gcm/send");
try
{
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.TryAddWithoutValidation(
"Authorization", "key=" + API_KEY);
Task.WaitAll(client.PostAsync(url,
new StringContent(jGcmData.ToString(), Encoding.Default, "application/json"))
.ContinueWith(response =>
{
Console.WriteLine(response);
Console.WriteLine("Message sent: check the client device notification tray.");
}));
}
}
catch (Exception e)
{
Console.WriteLine("Unable to send GCM message:");
Console.Error.WriteLine(e.StackTrace);
}
}
Any help?
Upvotes: 0
Views: 505
Reputation: 11
*client side*
private void SendNotification()
{
var jGcmData = new JObject();
var jData = new JObject();
jData.Add("title", txtTitle.Text);
jData.Add("message", txtMessage.Text);
jData.Add("summary", txtSummary.Text);
jGcmData.Add("to", "/topics/global");
jGcmData.Add("data", jData);
var url = new Uri("https://gcm-http.googleapis.com/gcm/send");
try
{
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.TryAddWithoutValidation(
"Authorization", "key=" + API_KEY);
Task.WaitAll(client.PostAsync(url,
new StringContent(jGcmData.ToString(), Encoding.Default, "application/json"))
.ContinueWith(response =>
{
Console.WriteLine(response);
Console.WriteLine("Message sent: check the client device notification tray.");
}));
}
}
catch (Exception ex)
{
Console.WriteLine("Unable to send GCM message:");
Console.Error.WriteLine(ex.StackTrace);
}
}
*phone side*
public override void OnMessageReceived(string from, Bundle data)
{
var message = data.GetString("message");
var title = data.GetString("title");
var summary = data.GetString("summary");
Log.Debug("MyGcmListenerService", "From: " + from);
Log.Debug("MyGcmListenerService", "Message: " + message);
Log.Debug("MyGcmListenerService", "Title: " + title);
Log.Debug("MyGcmListenerService", "Summary: " + summary);
SendNotification(message, title, summary);
}
void SendNotification(string message,string title,string summary)
{
var intent = new Intent(this, typeof(MainActivity));
intent.AddFlags(ActivityFlags.ClearTop);
var pendingIntent = PendingIntent.GetActivity(this, 0, intent, PendingIntentFlags.OneShot);
var notificationBuilder = new Notification.Builder(this)
.SetSmallIcon(Resource.Drawable.aalogo2)
.SetContentTitle(title)
.SetContentText(message)
.SetSubText(summary)
.SetAutoCancel(true)
.SetContentIntent(pendingIntent);
var notificationManager = (NotificationManager)GetSystemService(Context.NotificationService);
notificationManager.Notify(0, notificationBuilder.Build());
}
Upvotes: 1