Windows Phone 8.1推送通知测试应用程序错误:推送通知系统不可用

时间:2015-09-25 15:53:07

标签: c# push-notification windows-phone-8.1 azure-mobile-services

我正在关注一个教程博客,以学习Windows Phone 8.1的推送通知

http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2014/04/24/windows-phone-8-1-running-code-in-response-to-cloud-push-notifications.aspx

我正在尝试从Azure通知服务"发送测试通知"进行测试,出现以下错误:

enter image description here

推送通知系统不可用

对此有任何意见。

我也添加了一个按钮,点击后面我写了代码

private async void OnRegister(object sender, RoutedEventArgs e)
        {
            try
            {
                var channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
                NotificationHub hub = new NotificationHub("jaydeepapp", "ccessKeyName=DefaultListenSharedAccessSignature;SharedAccessKey=hQm+Sq15ijRglWGacnngtzUu2wKL3MKcAz0X4xsmo1Y=");

                await hub.RegisterNativeAsync(channel.Uri, new string[] { "Hi", "Jaydeep" });
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }

代码正在执行而没有错误,但我没有在模拟器上获得推送通知。

1 个答案:

答案 0 :(得分:0)

Azure正在迅速发展。试试这个manual,为您的应用添加推送通知。如果有问题请尝试Azure diagnosis guidelines