我已经执行了为自定义iOS应用启用推送通知的大部分步骤。我缺少找不到任何文档的部分。如何从我的自定义iOS应用发送设备令牌和另一个标识ID,以向ServiceNow Push提供程序进行注册?我已经在ServiceNow仪表板中上传了.p12文件。但是我不明白ServiceNow如何在APNs设备令牌和另一个ID之间创建映射,比方说创建ServiceNow票证的人的userIds。因此,基本上我错过了如何执行Apple在其文档第4步中确定的步骤: https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/HandlingRemoteNotifications.html#//apple_ref/doc/uid/TP40008194-CH6-SW1 注册以接收远程通知
每次启动应用程序时,它都必须向APN注册。所使用的方法因平台而异,但在所有情况下其工作方式如下:
Your app asks to be registered with APNs.
On successful registration, APNs sends an app-specific device token to the device.
The system delivers the device to your app by calling a method in your app delegate.
Your app sends the device token to the app’s associated provider.
任何帮助将不胜感激。