How do I build ASP.NET web site to send push notification to windows store app -


i want send push notification apps, on both windows 8.1 , windows phone 8.1 asp.net web application alternative microsoft azure mobile service.

how can this?

for sending push notifications devices website, use windows push notification services (wns). sending push notification directly devices not possible, need wns communication.

read article details: https://msdn.microsoft.com/en-us/library/windows/apps/hh913756.aspx

sending notification

note example, not cut-and-paste code can use in own code.

  post https://cloud.notify.windows.com/?token=aqe%bu%2fsjzocvrjjpilow%3d%3d http/1.1  content-type: text/xml  x-wns-type: wns/tile  authorization: bearer egacaqmaaaaalyaay/c+huwi3fv4ck10urknmtxro6njk2mga=  host: cloud.notify.windows.com  content-length: 24   body.... 

Comments