Been trying to get push notifications working through the messaging SDK on ios but can't seem to make it work. I've followed the instructions in the link above and was able to validate that non-zendesk push notifications are working using this tool as suggested in this previous post.
Based on some app-level logging, the below function does seem to be working so presumably, ZDKPushNotifications is registering the push notification token
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
And by using that push notification testing tool linked above, I was able to send push notifications to my app on the device using the Production push notification certificate, and confirm that the following function was being called:
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
willPresentNotification:(UNNotification *)notification
withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler
Based on the above, I feel fairly confident that any apple/APNS configurations are being set correctly. So not really sure what's not working properly at the Zendesk level. Is there something I need to turn on in Zendesk admin? Any help would be appreciated.