我在我的应用程序中实现推送通知,在开发部分它工作正常,我收到推送通知很好。当我决定在应用商店中发布它时,我实现了它以进行分发(我使用证书和配置文件进行分发),我进行了相同的步骤,并将 .p12 文件通过 shall 转换为 .pem,然后将certificate.pem 和 key.pem 到另一个文件 ck.pem。在 PHP 文件中,我执行了以下操作:
$passphrase = 'The passphrase I put it in the shall';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
我已经在我的 php.ini 中将沙箱更改为 ssl://gateway.push.apple.com:2195。
我用这个步骤创建了 production.pem。
$ openssl x509 -in aps_developer_identity.cer -inform der
-out PushChatCert.pem
$ openssl pkcs12 -nocerts -out PushChatKey.pem -in PushChatKey.p12
Enter Import Password: MAC verified OK Enter PEM pass phrase: Verifying - Enter PEM pass phrase:
$ cat PushChatCert.pem PushChatKey.pem > ck.pem
然后我将我的 ck.pem 上传到我的共享主机。这没有什么错误,但它不会推送通知。
在我的 php 中它说:连接到 APNS 消息已成功传递