Reputation: 33
My error when upload APNS Certificate Develop IOS
Upvotes: 1
Views: 1058
Reputation: 2980
In my case, I had to remove the passphrase (which OpenSSL was reading fine but not Google), and then it worked.
openssl pkcs12 -in apns-certificate.p12 -nodes -out temp.pem
openssl pkcs12 -export -in temp.pem -out unprotected.p12
rm temp.pem
Upvotes: 0
Reputation: 121
Two possibilities-
1. When export p12 from keychain, don't export on private key, right click on parent node of private key, see the screenshot
Upvotes: 4