如何控制我收到的 Apple 推送通知

发布于 2024-12-29 13:08:24 字数 182 浏览 0 评论 0原文

我已经成功创建了一个发送 Apple 推送通知的服务器,并且我的 iphone 接收了它们。

例如我有A类型的通知和B类型的通知,

如何控制在iphone端收到的通知类型?例如,我只想要 A 类型而不是 B 类型(就像 Facebook 一样,我想要好友请求的通知,但不需要 Walls 的通知)

谢谢

I have successfully created a server that sends Apple Push Notifications, and my iphone receives them.

For example I have Notification of type A and notifications of type B,

How can I control the types of notifications I received on the iphone side? For example I only want type A and not B (Just like Facebook, I want notifications for Friend Request, but not for Walls)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随心而道 2025-01-05 13:08:24

您无法阻止设备接收特定类型的通知,除非是在服务器端完成的。虽然当应用程序处于运行状态时,您可以忽略通知,因为您在 didReceiveRemoteNotification 中收到通知,并且您可以在检查后简单地忽略它,但如果应用程序处于后台或已关闭,则您无法控制来自您的应用程序内的传入通知。

您可以在服务器上创建一项服务来设置通知类型的首选项。
从设备,用户可以启用/禁用各个功能的推送服务,并从设备更新服务器上的首选项。

在服务器上,在发送 PUSH 之前,您可以检查用户从表中选择的首选项,并仅发送用户选择的通知。

you cannot stop your device on receiving a specific type of notification unless it is done on server side. Though you can ignore a notification when app is in running state as you get the notification in didReceiveRemoteNotification and you can simply ignore it after checking it but if app is in background or it is closed then you cannot control the incoming notifications from within your app.

you can make a service on server to set preferences for notification types.
from device, user can enable/disable the push service for individual features and update the preferences on server from device.

On server, before sending the PUSH, you can check for the preferences selected by user from the table and send only those notifications which the user has opted for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文