gpt4 book ai didi

ios - 用于越狱应用程序的 Apple 通知服务

转载 作者:可可西里 更新时间:2023-11-01 03:35:01 24 4
gpt4 key购买 nike

我正在创建一个安装在/Applications 中的越狱应用程序。无论我做什么,我似乎都无法让推送通知正常工作。

我有:

  • 在 Apple Developer 控制台中创建了必要的 App ID,
  • 创建所有必要的证书和规定,
  • 必要时安装以上内容,
  • 使用相应的证书对应用进行签名,
  • 将在 .MobileProvision 文件中找到的内容添加到权限中,
  • 用头撞墙。

症状如下。我成功注册了 APNS 并获得了设备 token 。设备 token 已成功发送到我的服务器。我的服务器成功连接到 APNS 服务器,成功向 APNS 服务器发送推送通知,没有任何投诉,我的应用程序从未收到推送消息。它只是迷路了。无论我是使用越狱的 ios 7 设备还是越狱的 ios 8 设备进行测试都没有关系。据我所知,这两种设备都成功地为其他应用程序获取了 APNS 消息。

我已经尝试了开发者和生产设置。

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

这是一些代码。电话端(Swift):

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

这是一个针对被黑客激活的 iOS 设备的教程,这些设备没有获得推送通知的有效证书,但它也可以帮助您。

enter image description here

关于ios - 用于越狱应用程序的 Apple 通知服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28415570/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com