Atkinsonline
Atkinsonline

Reputation: 57

Sending a push notification from node.js via Azure

I've been reading a lot about Azure Push Notification Hub but there's one thing I don't seem to be able to find a definitive answer for. I want to modify an existing node.js service which runs on my own server so it can send push notifications through Azure's Push Notification Hub. I don't want to host any code or data on Azure, I just want it to look after Push Notifications. I've read that this is possible via a rest api on Azure but I don't seem to be able to find any info on that rest api such that I can access it from an external node service. I don't want to host my node service in an Azure mobile service.

Does anyone know if this is possible or can anyone point me on at any docs or samples?

Thanks

Upvotes: 1

Views: 2340

Answers (1)

sabbour
sabbour

Reputation: 5019

You can use the Azure Notification Hub SDK for node.js. You don't need to host the node.js application on Azure: http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-nodejs-how-to-use-notification-hubs/

Upvotes: 1

Related Questions