美文网首页
iOS推送证书导出给后端

iOS推送证书导出给后端

作者: SumerZZ100 | 来源:发表于2023-10-06 17:02 被阅读0次

    1.从苹果开发者平台获取到 aps.cert (正式和沙箱同时支持),安装aps.cert ,导出 aps.p12文件

    2.使用证书生成PEM

    openssl x509 -in aps.cer -inform der -out PushChatCert.pem
    

    3.使用私钥生成PEM

    openssl pkcs12 -nocerts -out PushChatKey.pem -in aps.p12
    

    4.合并PEM

    cat PushChatCert.pem PushChatKey.pem > ck.pem
    

    相关文章

      网友评论

          本文标题:iOS推送证书导出给后端

          本文链接:https://www.haomeiwen.com/subject/rmylvhtx.html