APNS notifications not reaching devices enrolled in Apple MDM

前端 未结 3 634
情深已故
情深已故 2020-12-05 03:44

Apple MDM is used. It is MDM using APNs.

  • The topic of mobileconfig is the same as the thing of Subject of APSP-XXX.pem.
  • The character string of a devi
相关标签:
3条回答
  • 2020-12-05 04:02

    I made a python script that does the vendor signing part, so you don't have to use the softhinker java code.

    https://github.com/grinich/mdmvendorsign

    0 讨论(0)
  • 2020-12-05 04:12

    Follow MDM_Protocol pdf very carefully.

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

    remove the passphrase from customerPrivateKey.pem using this command

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

    Then merge your APNS certificate (for example CustomerCompanyName.pem) downloaded from the portal https://identity.apple.com/pushcert/ using this command

    cat CustomerCompanyName.pem PlainKey.pem > PlainCert.pem
    

    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.

    0 讨论(0)
  • 2020-12-05 04:12

    the issue may be because two reasons:

    1. key and pem both should be present.
    2. password used should belong to the password use while creating pem
    0 讨论(0)
提交回复
热议问题