2019独角兽企业重金招聘Python工程师标准>>>
推送证书
1 openssl pkcs12 -in CertificateName.p12 -out CertificateName.pem -nodes 转换文件上传
2证书有效期
openssl x509 -in xxx.pem -noout -dates
—反馈
notBefore=Dec 12 07:42:27 2015 GMT
notAfter=Dec 11 07:42:27 2016 GMT
3 连接APNS测试证书是否合法
开发环境
openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert xxx.pem -key xxx.pem
生产环境
openssl s_client -connect gateway.push.apple.com:2195 -cert xxx.pem -key xxx.pem