1.准备证书申请文件
2.准备App ID和SSL证书
3.制作推送服务器需要的p12文件
使用MAC命令行下的OpenSSL生成,所用文件:CSR认证签名申请文件(APNS.certSigningRequest),专用密钥(APNS.p12),SSL证书(aps_development.cer)
#将aps_development.cer转换成aps_development.pem格式 openssl x509 -in aps_development.cer -inform DER -out aps_development.pem -outform PEM #将p12格式的专用密钥转换成pem,依次输入密码 openssl pkcs12 -nocerts -out APNS_Noenc.pem -in APNS.p12 #创建PKCS#12格式的p12文件 openssl pkcs12 -export -in aps_development.pem -inkey APNS_Noenc.pem -certfile APNS.certSigningRequest -name "aps_development" -out aps_development.p12
制作苹果推送通知APNS服务器证书文件,布布扣,bubuko.com
原文:http://www.cnblogs.com/lear/p/3833085.html