_玖-幽 2014-12-22 11:14 采纳率: 100%
浏览 8891
已采纳

APNS 错误8 : Invalid token ,求解决

用c#写的ios消息推送,引用PushSharp.Apple和PushSharp.Core 运行时出现下面错误:
APNS NotificationFailureException -> 8 : Invalid token

网上有说是token 64位的问题,http://www.cocoachina.com/bbs/read.php?tid=165961 不知道要怎么转成32位的?

还有.ForDeviceToken(tokenID)方法吧token改成32位 提示 5 : Invalid token size

求高手指点一下


 private void Form1_Load(object sender, EventArgs e)
        {  
            string token =  "8d6c30144e7a93e73cc1fafb0a5000000001a0a0bd1f66c9e0ab857291d00000"; 
           StarServices("production_identity.p12", "123123");
           SendSingleMess(token, "这是通过APNS的推送消息");
         }
 public void StarServices(string keyPath, string keyWord)
        {
            try
            {
                      push.OnNotificationSent += NotificationSent;    
            push.OnNotificationFailed += NotificationFailed; 
            push.OnDeviceSubscriptionExpired += DeviceSubscriptionExpired;  
            push.OnDeviceSubscriptionChanged += DeviceSubscriptionChanged;    
            push.OnChannelException += ChannelException;    
            push.OnServiceException += ServiceException;   
            push.OnChannelCreated += ChannelCreated;  //
            push.OnChannelDestroyed += ChannelDestroyed;  //
                var appleCert = File.ReadAllBytes(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, keyPath));
                push.RegisterAppleService(new ApplePushChannelSettings(appleCert, keyWord));  
            }
            catch { }
        }
 public void StopServices()
        {
            try
            {
                push.StopAllServices();
            }
            catch { }
        }
        public void SendSingleMess(string tokenID, string  message)
        {
            try
            { 
                push.QueueNotification(new AppleNotification()
                                           .ForDeviceToken(tokenID)
                                           .WithAlert(message)
                                           .WithBadge(7)
                                           .WithSound("sound.caf"));  
                Console.ReadLine(); 
            }
            catch  (Exception e)
            {
                Console.WriteLine("error:" + e.Message);
            }
        }

        public void Test()
        {

        }
        static void DeviceSubscriptionChanged(object sender, string oldSubscriptionId, string newSubscriptionId, INotification notification)
        {
            //Currently this event will only ever happen for Android GCM
            Console.WriteLine("Device Registration Changed:  Old-> " + oldSubscriptionId + "  New-> " + newSubscriptionId + " -> " + notification);
        }

        static void NotificationSent(object sender, INotification notification)
        { 
            Console.WriteLine("Sent: " + sender + " -> " + notification);
        }

        static void NotificationFailed(object sender, INotification notification, Exception notificationFailureException)
        { 
            Console.WriteLine("Failure: " + sender + " -> " + notificationFailureException.ToString() + " -> " + notification);
        }

        static void ChannelException(object sender, IPushChannel channel, Exception exception)
        {
            Console.WriteLine("Channel Exception: " + sender + " -> " + exception);
        }

        static void ServiceException(object sender, Exception exception)
        {
            Console.WriteLine("Service Exception: " + sender + " -> " + exception);
        }

        static void DeviceSubscriptionExpired(object sender, string expiredDeviceSubscriptionId, DateTime timestamp, INotification notification)
        {
            Console.WriteLine("Device Subscription Expired: " + sender + " -> " + expiredDeviceSubscriptionId);
        }

        static void ChannelDestroyed(object sender)
        {
            Console.WriteLine("Channel Destroyed for: " + sender);
        }

        static void ChannelCreated(object sender, IPushChannel pushChannel)
        {
            Console.WriteLine("Channel Created for: " + sender);
        }

  • 写回答

2条回答

  • _玖-幽 2014-12-23 01:21
    关注

    不知道有没有人遇到过这种问题,度娘也不知道

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题