Solid Line
Solid Line

Reputation: 63

iOS Push implementation in PHP server

How to exactly configure and implement iOS push notification in PHP server? .Net server need .p12 file. But what exactly need for PHP server?

Upvotes: 1

Views: 2512

Answers (2)

Bhavi Lad
Bhavi Lad

Reputation: 247

You need to create .pem certificate which you can use in your .php file including passphrase

Upvotes: 0

Jamil
Jamil

Reputation: 2999

Export Push certificate from keychain Go to .p12 directory in command line. Execute following

openssl pkcs12 -in Certificates_push_dev.p12 -out Certificates_push_dev.pem -nodes -clcerts

Here is the PHP Code

Upvotes: 3

Related Questions