Apple引入了新的扩展名"UNNotificationServiceExtension",但如何从推送通知启动它?
我读到服务扩展为有效负载提供端到端加密。
设置推送通知的有效负载需要哪个密钥?
如何识别有效负载以及如何从推送通知启动服务扩展?
答案 0 :(得分:30)
让我一步一步来。
UNNotificationServiceExtension - 它是什么?
UNNotificationServiceExtension是一个App Extenstion目标,它与您的应用程序捆绑在一起,目的是在将推送通知交付给设备之前修改推送通知,然后再将其呈现给用户。您可以通过下载或使用应用程序中捆绑的附件来更改标题,副标题,正文以及附加推送通知的附件。
如何创建
转到文件 - >新 - >目标 - >通知服务扩展并填写详细信息
设置推送通知的有效负载需要哪个密钥?
您需要将mutable-content
标志设置为1
才能触发服务扩展。
此外,如果
(编辑:这不适用。您可以设置或取消设置content-available
设置为1
,则服务扩展程序将无效。因此,要么不设置它,要么将其设置为0. content-available
标志)
如何识别有效负载以及如何从推送通知启动服务扩展?
构建扩展程序,然后构建并运行您的应用程序。发送推送通知,mutable-content
设置为1
。
<强>代码强>
UNNotificationService公开了两个函数:
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request
withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler;
- (void)serviceExtensionTimeWillExpire;
当在设备上接收到推送通知并且在将其呈现给用户之前触发第一功能。您在函数内部的代码有机会修改此函数内推送通知的内容。
您可以通过修改扩展程序的bestAttemptContent
属性来执行此操作,该扩展程序是UNNotificationContent
的一个实例,并具有以下属性:title
,subtitle
,body
, attachments
等。
远程通知的原始有效负载通过函数参数request.content
的{{1}}属性传递。
最后,您使用contentHandler:
调度bestpattemptContentrequest
您在第一种方法中只有有限的时间来完成您的工作。如果时间到期,则会使用您的代码迄今为止所做的最佳尝试调用第二个方法。
示例代码
self.contentHandler(self.bestAttemptContent);
上面的代码将[modified]附加到PN有效载荷中的原始标题。
示例有效负载
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request
withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
self.contentHandler = contentHandler;
self.bestAttemptContent = [request.content mutableCopy];
// Modify the notification content here...
self.bestAttemptContent.title = [NSString stringWithFormat:@"%@ [modified]", self.bestAttemptContent.title];
self.contentHandler(self.bestAttemptContent);
}
请注意,{
"aps": {
"alert": {
"title": "Hello",
"body": "body.."
},
"mutable-content":1,
"sound": "default",
"badge": 1,
},
"attachment-url": ""
}
密钥是您自己关注的自定义密钥,不会被iOS识别。
答案 1 :(得分:1)