到iOS的PushSharp通知未到达设备

时间:2014-04-16 17:55:44

标签: c# ios push-notification pushsharp

我正在尝试在我正在运行的c#服务中使用PushSharp库进行苹果推送通知。

代码似乎都正确执行,没有错误,似乎所有事情都正确完成。但是通知从未到达我的申请。

我读过的所有东西似乎都认为问题是我的证书,但我已经重新下载了,并且多次重做这些步骤,一切看起来都是正确的。

这是我的PushSharp c#代码

            string pushCertPath = string.Format(string.Format("{0}\\PushCert (DEV).p12", dataPath));
            var appleCert = File.ReadAllBytes(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, pushCertPath));
            PushBroker push = new PushBroker();
            push.RegisterAppleService(new ApplePushChannelSettings(false, appleCert,"pushcert"));

           push.QueueNotification(new AppleNotification()
           .ForDeviceToken("594c78b070698ded0a5f3dc1503a42e3983b7c1d254b61a98cc6e5eb0e8b7edd")
           .WithAlert("You have received new messages")
           .WithSound("default")
           .WithBadge(1));

1 个答案:

答案 0 :(得分:1)

从昨天起我也遇到了同样的问题。我刚刚尝试将SslProtocols从SslProtocols.Ssl3更改为SslProtocols.Default使其再次工作。所以Apple必须改变一些东西并拒绝Ssl3协议。

    stream.AuthenticateAsClient(settings.FeedbackHost, certificates, System.Security.Authentication.SslProtocols.**Default**, false);