ios – 越狱应用程序的Apple Notification Service

ios – 越狱应用程序的Apple Notification Service,第1张

概述我正在创建一个安装在/ Applications中的越狱应用程序.无论我做什么,我似乎无法使Push Notifications工作. 我有: >在Apple Developer控制台中创建了必要的App ID, >创建所有必要的证书和条款, >必要时安装以上, >使用相应的证书签署应用程序, >将.MobileProvision文件中找到的内容添加到权限中, >把头靠在墙上. 症状如下.我成功注 我正在创建一个安装在/ Applications中的越狱应用程序.无论我做什么,我似乎无法使Push Notifications工作.

我有:

>在Apple Developer控制台中创建了必要的App ID,
>创建所有必要的证书和条款,
>必要时安装以上,
>使用相应的证书签署应用程序,
>将.MobileProvision文件中找到的内容添加到权限中,
>把头靠在墙上.

症状如下.我成功注册了APNS并获得了设备令牌.设备令牌已成功发送到我的服务器.我的服务器成功连接到APNS服务器,成功发送推送通知到APNS服务器,没有任何类型的投诉,我的应用程序永远不会收到Push消息.它只是迷路了.无论我是使用越狱的ios 7设备还是越狱的ios 8设备进行测试都无关紧要.据我所知,这两款设备都成功获得了其他应用的APNS消息.

我尝试了开发人员和生产设置.

我是否缺少一些必要的越狱应用程序步骤,通常是在定期注册应用程序时为您完成的?系统应用程序是不是能够成为APNS应用程序(这看起来很奇怪)?

这是一些代码.电话侧(斯威夫特):

func application(application: UIApplication,dIDFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool{    if Global.Osversion() < 800    {        application.registerForRemoteNotificationTypes(UIRemoteNotificationType.Alert                                                     | UIRemoteNotificationType.Badge                                                     | UIRemoteNotificationType.sound);    }    else    {        var types: UIUserNotificationType = UIUserNotificationType.Alert                                          | UIUserNotificationType.Badge                                          | UIUserNotificationType.sound;        var settings: UIUserNotificationSettings = UIUserNotificationSettings(forTypes: types,categorIEs: nil);        application.registerUserNotificationSettings(settings);    }    application.beginReceivingRemoteControlEvents();}func application(application: UIApplication,dIDRegisterForRemoteNotificationsWithDevicetoken devicetoken: NSData){    let bytes: [Byte] = devicetoken.getBytes();    var token: String = "";    for byte: Byte in bytes    {        token += Nsstring(format: "%02.2hhx",byte);    }    // code to send token to server goes here...}func application(application: UIApplication,dIDReceiveRemoteNotification userInfo: [NSObject : AnyObject],fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> VoID){     let command: String = userInfo["Command"] as String;     // code to process command goes here...}

服务器代码(C#):

private bool SendIPhone()    {        isSent = false;        Pushbroker pushbroker = new Pushbroker();        try        {            pushbroker.OnChannelCreated += pushbroker_OnChannelCreated;            pushbroker.OnChannelException += pushbroker_OnChannelException;            pushbroker.OnChannelDestroyed += pushbroker_OnChannelDestroyed;            pushbroker.OnServiceException += pushbroker_OnServiceException;            pushbroker.OnNotificationFailed += pushbroker_OnNotificationFailed;            pushbroker.OnNotificationSent += pushbroker_OnNotificationSent;            pushbroker.OnNotificationRequeue += pushbroker_OnNotificationRequeue;            pushbroker.OnDeviceSubscriptionChanged += pushbroker_OnDeviceSubscriptionChanged;            pushbroker.OnDeviceSubscriptionExpired += pushbroker_OnDeviceSubscriptionExpired;            pushbroker.RegisterappleService(new ApplePushChannelSettings(XXXConfig.APNSIsProduction,XXXStatic.APNSCertificate,XXXConfig.APNSPassword));            AppleNotification notification = new AppleNotification();            notification.Devicetoken = cloudtophoneID;            notification.Payload.Alert.Body = "This is a test";            notification.Payload.sound = "Alarm.wav";            notification.Payload.Badge = 5;            notification.Payload.CustomItems["content-available"] = new Object[] { "1" };            notification.Payload.CustomItems["Command"] = new Object[] { "TestCommand" };            pushbroker.QueueNotification(notification);        }        finally        {            pushbroker.StopAllServices(); // This will force us to wait until we have sent what's in the queue...        }        return isSent;    }    voID pushbroker_OnNotificationSent(object sender,INotification notification)    {        isSent = true;    }

有很多代码我没有表现出所有可行的代码. SendIPhone始终返回true,并且只有在调用pushbroker_OnNotificationSent时才能将其设置为true.

待遇:

<dict>    <key>application-IDentifIEr</key>    <string>REMOVEDFORPRIVACY</string>    <key>aps-environment</key>    <string>development</string>    <key>com.apple.developer.team-IDentifIEr</key>    <string>REMOVEDFORPRIVACY</string>    <key>get-task-allow</key>    <true/>    <key>keychain-access-groups</key>    <array>        <string>REMOVEDFORPRIVACY</string>    </array></dict>

我错过了什么,或者从这里没有路径?

解决方法 我不测试它,但如果我知道Apple允许iOS根应用程序文件夹中的推送通知(只看“提示”应用程序),那么它可能是证书问题,所以也许这会有所帮助:

http://www.hackthatphone.com/3x/push.html

这是Hackctivated iOS设备的教程,没有有效的推送通知证书,但它也可以帮助你.

总结

以上是内存溢出为你收集整理的ios – 越狱应用程序的Apple Notification Service全部内容,希望文章能够帮你解决ios – 越狱应用程序的Apple Notification Service所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1099880.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存