我有一个简单的代码:

PushBroker pushBroker = new PushBroker();
string path = HttpContext.Current.Server.MapPath("~/" + AppSettings.CertificatePath);
var appleCert = File.ReadAllBytes(path);
pushBroker.RegisterAppleService(
           new ApplePushChannelSettings(AppSettings.IsProductionPushNotificationServer,
                                        appleCert,
                                        AppSettings.CertificatePassword));

var notification = new AppleNotification().ForDeviceToken(deviceToken.TrimStart('<').TrimEnd('>'))
                                          .WithBadge(unviewedInvitationCount);

pushBroker.QueueNotification(notification);

我尝试使用开发和生产sertificates分别与sandbox和生产服务器。但什么都没发生。客户端能够获取推送通知。
怎么了?提前谢谢。
更新:
我订阅了活动。
OnNotificationFailed告诉我这个错误:
{APNS NotificationFailureException -> 5 : Invalid token size -> {"aps":{"badge":1}}}

如果我将我的设备令牌包装成则会收到另一个错误:
{APNS NotificationFailureException -> 8 : Invalid token -> {"aps":{"badge":1}}}

最佳答案

您的设备令牌不应包含任何空格和“”字符。它应该包含64个十六进制字符。如果没有,这就解释了第一个错误(无效的令牌大小)。
即,
<3948de8f 3948de8f ...>也不3948de8f 3948de8f ...
3948de8f3948de8f...
第二个错误(无效令牌)可能意味着您使用沙盒设备令牌推送到生产APNS服务器,反之亦然。沙盒令牌shuold只在沙盒环境中使用。

08-17 16:56