I am using Websocket in my iOS app for data transfer. But, since sometimes when the app is suspended in the background, the socket breaks. In that case, I use Voip push to iOS app to wake app up.
//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];
}
}
I send the token received from didUpdatePushCredentials
in my Login API request to my app server.
I have the following doubts in my mind and seeking answers for them.
- Does
PushKit
require both the APNS certificate and Voip certificate? or just one of them and which one and why?- If it requires both the certificates, do I need to keep both the certificates on the app server for sending success pushes to my app?
- Which certificate should be used on the server side to push notification which would invoke "didReceiveIncomingPushWithPayload" from server side?
Please find below the code on server side :
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;
}
}
I did following implementation and it failed : 1. Created APNS SSL Service Certificate Sandbox + Production. 2. Sent token received in didUpdatePushCredentials to server. 3. Server used APNS Certificate to send the push. But failed since it could not find any corresponding certificate.
So I am failing at the combination of token to be sent to server and the certificate that would be used on the server to send the push.