使用 Azure 在 Windows phone 8 中推送通知

Posted

技术标签:

【中文标题】使用 Azure 在 Windows phone 8 中推送通知【英文标题】:Push notification in Windows phone 8 using Azure 【发布时间】:2014-01-29 05:59:00 【问题描述】:

我是一名安卓开发者,已经多次实现推送通知。现在,我在 windows phone 上尝试了同样的方法。作为它的初学者,我无法完成任务。

我关注了多个链接,例如:

Link 1 Link 2 Link 3

我有自己的应用程序,并希望自己的服务器使用 azure 服务发送推送通知。

请帮忙。

【问题讨论】:

如果您按照链接 1 操作应该没问题。您对指南的哪一步有问题? 【参考方案1】:

我使用以下代码向 Windows 8 移动应用程序发送推送通知。语言是 C# asp.net。

var sendNotificationRequest = (HttpWebRequest)WebRequest.Create(Notification URL);
sendNotificationRequest.Method = "POST";
const string tileMessage = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
                        "<wp:Notification xmlns:wp=\"WPNotification\">" +
                        "<wp:Tile>" +
                        "<wp:BackgroundImage>" + "</wp:BackgroundImage>" +
                        "<wp:Count>" + "1" + "</wp:Count>" +
                        "<wp:Title>" + "Completed" + "</wp:Title>" +
                        "<wp:BackBackgroundImage>" + "</wp:BackBackgroundImage>" +
                        "<wp:BackTitle>" + "</wp:BackTitle>" +
                        "<wp:BackContent>" + "</wp:BackContent>" +
                        "</wp:Tile> " +
                        "</wp:Notification>";


byte[] notificationMessage = Encoding.Default.GetBytes(tileMessage);
sendNotificationRequest.ContentLength = notificationMessage.Length;
sendNotificationRequest.ContentType = "text/xml";
sendNotificationRequest.Headers.Add("X-WindowsPhone-Target", "token");
sendNotificationRequest.Headers.Add("X-NotificationClass", "1");
try

  using (Stream requestStream = sendNotificationRequest.GetRequestStream())
  
    requestStream.Write(notificationMessage, 0, notificationMessage.Length);
  
  var response = (HttpWebResponse)sendNotificationRequest.GetResponse();
  string notificationStatus = response.Headers["X-NotificationStatus"];
  string notificationChannelStatus = response.Headers["X-SubscriptionStatus"];
  string deviceConnectionStatus = response.Headers["X-DeviceConnectionStatus"];

catch

【讨论】:

以上是关于使用 Azure 在 Windows phone 8 中推送通知的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Azure 在 Windows Phone 8 中为特定设备发送推送通知

使用 WCF 将 SQL Azure 连接到 Windows Phone 7

Windows Phone 8 推送通知 - 不支持的频道 uri

Microsoft.Phone.Maps.Services 可以在 Windows 应用商店应用中使用吗?

windows phone 浏览器。啥浏览器使用windows phone? [关闭]

windows phone 8 和 10 的 windows phone 应用程序开发