本文介绍了APNS通知未达到入学苹果MDM设备的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

苹果MDM使用。
它使用MDM的APN。

Apple MDM is used.It is MDM using APNs.


  • mobileconfig的主题是一样的APSP-XXX.pem主体的事情。

  • 标记和PushMagic设备的字符串mobileconfig的设置后达到的MDM服务器。

我去叫使用的APN设备令牌的报文的措辞。
它是由PushMagic的字符串替换。
虽然 {MDM:XXXXXXXXXXXXX-XXXX-XXXX-XXXX} 通过的APN从MDM服务器发送,
未达到的iPhone。

I sent wording of a telegram for device tokens using APNs.It is replacing by the character string of PushMagic.Although {"mdm":"xxxxxxxxxxxxx-xxxx-xxxx-xxxx"} is sent via APNs from the MDM server,iPhone is not reached.

为什么?

请让我知道原因考虑。

推荐答案

按照MDM_Protocol PDF格式非常谨慎。

Follow MDM_Protocol pdf very carefully.

如果您遵循此链接:http://www.softhinker.com/in-the-news/iosmdmvendorcsrsigning
然后,确认一些事情。

If you are following this link: http://www.softhinker.com/in-the-news/iosmdmvendorcsrsigningThen verify few things.

使用此命令从customerPrivateKey.pem删除密码

remove the passphrase from customerPrivateKey.pem using this command

openssl rsa -in customerPrivateKey.pem -out PlainKey.pem

然后从门户使用此命令

cat CustomerCompanyName.pem PlainKey.pem > PlainCert.pem

现在这个PlainCert.pem文件可以在你的服务器APNS / MDM证书使用。

Now this PlainCert.pem file can be used in your server as APNS/MDM certificate.

如果还有问题,请在这里展示您的设备日志。

If still there is issue,please show here your device log.

这篇关于APNS通知未达到入学苹果MDM设备的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 22:24