我正在设置的APN服务器告诉我.
After requesting the certificate from Apple, export your private key as a .p12 file and download the .cer file from the iOS Provisioning Portal.
Now, in the directory containing cert.cer and key.p12 execute the following commands to generate your .pem files:
$ openssl x509 -in cert.cer -inform DER -outform PEM -out cert.pem
$ openssl pkcs12 -in key.p12 -out key.pem -nodes我从苹果那里获得了.cer,但我不知道如何将我的“私钥”导出为.p12。我猜他们只是指我的私密钥匙?如何将其转换为.p12?
我不知道他们到底在找什么,我从哪里得到key.p12?任何帮助都是非常感谢的,谢谢。
发布于 2014-01-03 01:11:03
创建SSL证书和密钥
完成这些步骤后,将返回到iOS开发中心门户的配置App页面。证书应加上绿色圆圈和标签“已启用”。
若要为生产环境创建证书,请重复相同的过程,但选择生产证书的应用程序ID。
阅读所有的这里的细节
https://stackoverflow.com/questions/20894789
复制相似问题