3

我正在尝试使用 php 连接到 Apples Push Notification Service (apns)。如果我使用命令

openssl s_client -connect gateway.push.apple.com:2195 -cert AppCert.pem -key AppKeyNoPass.pem -CAfile ca.pem

在控制台上,我在最后一行收到一条带有“验证返回码:0(ok)”的长消息。如果我使用以下 PHP 代码,我会收到一些警告。

$uuid = '11111111-22222222-33333333-44444444-55555555-66666666-77777777-88888888';
$url = 'ssl://gateway.push.apple.com:2195';

$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', 'App.pem');
stream_context_set_option($streamContext, 'ssl', 'cafile', 'ca.pem');

$socketClient = stream_socket_client($url, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);

这是 stream_socket_client() 的 PHP 警告

Warning: stream_socket_client() [function.stream-socket-client]: SSL operation failed with code 1. OpenSSL Error messages: error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate unknown
Warning: stream_socket_client() [function.stream-socket-client]: Failed to enable crypto
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195 (Unknown error)

你有什么主意吗?我的证书格式有问题吗?

谢谢

4

1 回答 1

2

我使用了本教程,一切对我来说都很好。有关于关键文件的所有详细信息,还有一个php 推送示例文件供下载。希望有帮助。

于 2013-01-17T13:15:07.170 回答