Reputation: 506
I have spent a long while searching for a guide on implementing PUSH for Android with Azure with no luck. Is this just not available yet?
If not, is there an alternative way I can implement this, perhaps by using HTTP Requests from the server side to another service that can Push to android?
Thanks
Upvotes: 1
Views: 2709
Reputation: 1191
Reading online documentation seems to suggest that you need to use a Mobile Service in Azure. You should be able to use the Push option on the Mobile Service to connect to Google Cloud Messaging which connects to the Android client. GCM authentication requires that you add the IP address of the Mobile Service to a white list.
However there is an easier way... I can access the GCM API directly from my azure website (after adding the IP address which is not available in free mode). To see my code look here
Upvotes: 0
Reputation: 24870
Windows Azure supports push notification through Mobile Services which is still a preview feature. And it currently only supports Windows Store, Windows Phone and iOS apps. Support for iOS hasn't been available for that long which could mean that Microsoft is also working on other platforms like Android.
Your other option is to build something yourself, use existing tools like GCM or to use a third-party provider like Pushwoosh. The great thing about Pushwoosh is that they have a free plan, they support Android and they have a REST API which can be called from Windows Azure to create the notifications.
Upvotes: 3