我在我的 iOS 应用程序中使用 Websocket 进行数据传输。但是,由于有时当应用程序在后台挂起时,套接字会中断。在这种情况下,我使用 Voip 推送到 iOS 应用程序来唤醒应用程序。
//called on appDidFinishLaunching
//register for voip notifications
PKPushRegistry *voipRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
voipRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
voipRegistry.delegate = self;
//delegate methods for `PushKit`
#pragma mark - PushKit Delegate Methods
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)pushCredentials forType:(PKPushType)type {
self.myDeviceToken = [[[[pushCredentials token] description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]] stringByReplacingOccurrencesOfString:@" " withString:@""];
NSLog(@"voip token: %@", self.myDeviceToken);
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type {
if (![self socketIsConnected]) {
[self reconnectSocket];
}
}
我将从我的登录 API 请求中收到的令牌didUpdatePushCredentials
发送到我的应用服务器。
我心中有以下疑惑,并为之寻求答案。
- 是否
PushKit
需要 APNS 证书和 Voip 证书?或者只是其中一个,哪一个,为什么?- 如果它需要这两个证书,我是否需要将这两个证书都保留在应用服务器上以向我的应用发送成功推送?
- 服务器端应该使用哪个证书来推送从服务器端调用“didReceiveIncomingPushWithPayload”的通知?
请在服务器端的代码下方找到:
private ApnsService getService(String appId) {
synchronized (APP_ID_2_SERVICE_MAP) {
ApnsService service = APP_ID_2_SERVICE_MAP.get(appId);
if (service == null) {
InputStream certificate = getCertificateInputStream(appId);
if (certificate == null) {
String errorMessage = "APNS appId unsupported: " + appId;
LOGGER.error(errorMessage);
throw new ATRuntimeException(errorMessage);
}
boolean useProd = useAPNSProductionDestination();
if (useProd) {
LOGGER.info("Using APNS production environment for app " + appId);
service = APNS.newService().withCert(certificate, CERTIFICATE_PASSWORD).withProductionDestination()
.build();
} else {
LOGGER.info("Using APNS sandbox environment for app " + appId);
service = APNS.newService().withCert(certificate, CERTIFICATE_PASSWORD).withSandboxDestination()
.build();
}
APP_ID_2_SERVICE_MAP.put(appId, service);
}
return service;
}
}
我做了以下实施,但失败了: 1. 创建了 APNS SSL 服务证书沙盒 + 生产。2. 将在 didUpdatePushCredentials 中收到的令牌发送到服务器。3. 服务器使用 APNS 证书发送推送。但由于找不到任何相应的证书而失败。
因此,我无法将要发送到服务器的令牌与将在服务器上用于发送推送的证书相结合。