Peter Kellner
Peter Kellner

Reputation: 15508

Windows Azure Mobile Services Push Notifications with .Net App and Html/JavaScript

I can not find any examples using Windows Azure Mobile services that create the push notification itself in a c# server based app, and the notification itself is serviced in a browser based JavaScript client app (like AngularJS).

I thought there use to be a sample in the azure portal of this scenario but the only sample I see now is simply todo list item table insertion.

Upvotes: 0

Views: 186

Answers (1)

lindydonna
lindydonna

Reputation: 3875

It's not possible to send push notifications to a browser through Azure Notification Hubs, since push is done through a platform notification service. It might be possible to get notifications with Safari and Chrome since they are a similar format to iOS and Android notifications, but this is not officially supported.

Upvotes: 1

Related Questions