使用 javapns 实现 {“mdm”:“”}
我正在使用 javapns 开发苹果推送通知 mdm 服务器。有一个包“javapns.notification.management”我找不到一个API来发送{“mdm”:“”}到苹果。
我想使用 javapns 实施 MDM 解决方案。我已经安装了 mobileConfig 并拥有 deviceToken 和 PushMagic 字符串。接下来我想发送 {"mdm":""} ,然后发送其他命令。
使用 javapns 是否可以实现这一点?如果可以,是否有示例或一些如何做到这一点的输入?
javapns 中的问题 #37 表示可以发送 mdm 有效负载,但我不知道如何发送。
我真的很感谢对此的任何帮助。
I am using javapns to develop apple push notification mdm server. There is a package "javapns.notification.management" I could not find an api to send {"mdm":""} to apple.
I want to implement MDM solution using javapns. I have installed the mobileConfig and have the deviceToken and pushMagic String. Next I want to send {"mdm":""} and then the other commands.
Is this possible using javapns and if yes - is there a sample or some inputs of how to do it?
Issue #37 in javapns says it is possible to send mdm payloads but I could not figure how.
I really appreciate any help on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定 javapns 实现,但我已经使用 java-apns 库实现了 2 个解决方案(https://github .com/notnoop/java-apns)通过 MDM 负载发送。
Not sure about the javapns implementation, but I have implemented 2 solutions using the java-apns library (https://github.com/notnoop/java-apns) that send across the MDM payload.
正如 Abstractec 提到的,您可以使用 notnoop 库。它适用于 MDM 推送通知。
As Abstractec mentioned you can use notnoop library. It works for MDM push notifications.