i'd like to implement PushKit service within my app ( Voip app ), but i have following doubt: I see that i can generate only production voip certificate , it works if i try to test voip push notification service on develop device ?
This is my implementation test:
With this 3 line of code i can get push token on didUpdatePushCredentials callback that i use to save into my server.
PKPushRegistry *pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
Server side i generate a "normal" payload push notification with only alert text, and i sent to voip token stored into my server.
I use the callback with debug log, but they never getting called!
- (void)pushRegistry:(PKPushRegistry *)registry didInvalidatePushTokenForType:(NSString *)type {
NSLog(@"didInvalidatePushTokenForType");
}
-(void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type {
NSLog(@"didReceiveIncomingPushWithPayload: %@", payload.description);
}
-(void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type {
if([credentials.token length] == 0) {
NSLog(@"voip token NULL");
return;
}
NSLog(@"didUpdatePushCredentials: %@ - Type: %@", credentials.token, type);
}
If i try to generate a push notification message from my server to voip device token previously uploaded, i'm never notified on didReceiveIncomingPushWithPayload callback, but from server i get 200 ok message( message was successfully sent )
Today I explored this in great detail. I, too, was wondering how to use the generated push token on a development build when Apple only allows us to generate a production VoIP push certificate.
On the server, you have to send a production push to
gateway.push.apple.com
and a development/sandbox push togateway.sandbox.push.apple.com
. I was able to generate and receive VoIP pushes on a development build of my app using the production VoIP certificate ongateway.sandbox.push.apple.com
. I have not yet tried, but assume it will also work on an ad hoc or production build and usinggateway.push.apple.com
.Also, note that push notifications do not work in the simulator at all.