-
-
Save swapnull-in/c37d5ad818f48106d2e59a8fb877b621 to your computer and use it in GitHub Desktop.
Making a PEM File for iOS Push Notifications (From Ray Wenderlich's tutorial)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Convert the .cer file into a .pem file: | |
| $ openssl x509 -in aps_development.cer -inform der -out apns_cert_dev.pem | |
| # Convert the private key’s .p12 file into a .pem file: | |
| $ openssl pkcs12 -nocerts -in aps_development.p12 -out apns_key_dev.pem | |
| # Finally, combine the certificate and key into a single .pem file | |
| $ cat apns_cert_dev.pem apns_key_dev.pem > ck_dev.pem | |
| # At this point it’s a good idea to test whether the certificate works. | |
| $ telnet gateway.sandbox.push.apple.com 2195 | |
| # Let’s try connecting again, this time using our SSL certificate and private key to set up a secure connection. | |
| $ openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert apns_cert_dev.pem -key apns_key_dev.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment