Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Messaging Server Side Code in C#

I want to write implement 3rd party server for GCM (Google Cloud Messaging) for android using .Net. The official documentation gives guidelines for using it with servlet-api and gcm-server.jar ( Java helper for server side ).

Is there any equivalent for using it in C#?

like image 446
Amey Bhatkar Avatar asked Jul 18 '12 14:07

Amey Bhatkar


1 Answers

The Google Cloud Messaging Client Library has been ported to C#: https://github.com/Redth/GCMSharp

The same developer has produced a library for sending server-side push notifications to iOS, Android, Windows Phone, and Blackberry: https://github.com/Redth/PushSharp

like image 133
Robin Minto Avatar answered Nov 08 '22 03:11

Robin Minto