iOS 如何识别收到的通知是针对 MDM 的?
我想使用 MDM 来管理多个 iOS 设备。
根据文档,我不需要在设备上安装任何东西。在这种情况下,当设备收到来自 APNS 服务器的通知时,它如何知道该通知是针对 MDM 的?
I want to use MDM to manage number of iOS devices.
According to documentation I do not need anything installed on device. In that case when device receives a notification from APNS server, how will it come to know that this notificaation is for MDM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您至少需要安装来自 MDM 公司的根证书(在您的情况下,您的软件/您自己需要将根证书部署到最终用户设备)。
一旦设备安装了根证书,您就可以通过 APNS 发送一些 MDM json 有效负载。
我认为您可以通过多种方式部署根证书,包括在 iOS 上的 safari 中下载或使用配置实用程序。
You need to install at least a root certificate from the MDM-Company (in your case your software / yourself need to deploy the root certificate to the endusers device).
As soon as the device has the root certificate installed, you can send some MDM json payloads through APNS.
I think you can deploy the root certificate with many ways including download in safari on your iOS or also with the configuration utility.
推送通知字符串:
{"aps":{},"mdm":"MagicPushDeviceCode"}
。Push Notification String:
{"aps":{},"mdm":"MagicPushDeviceCode"}
.