2

这是我正在使用的代码

<?php
$deviceToken = 'my device key';  // not putting in for security

$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');
$payload = json_encode($payload);

$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
$apnsCert = 'apns-dev.pem';

$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);

$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);

$apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken)) . chr(0) . chr(strlen($payload)) . $payload;
fwrite($apns, $apnsMessage);

socket_close($apns);
fclose($apns);
?>

我得到了这些错误

警告:stream_socket_client() [function.stream-socket-client]: Unable to set private key file `apns-dev.pem' in /home/bryan/sendpush.php on line 14

警告:stream_socket_client() [function.stream-socket-client]:未能在第 14 行的 /home/bryan/sendpush.php 中创建 SSL 句柄

警告:stream_socket_client() [function.stream-socket-client]:无法在第 14 行的 /home/bryan/sendpush.php 中启用加密

警告:stream_socket_client() [function.stream-socket-client]: 无法连接到第 14 行 /home/bryan/sendpush.php 中的 ssl://gateway.sandbox.push.apple.com:2195(未知错误)

警告:fwrite():提供的参数不是第 17 行 /home/bryan/sendpush.php 中的有效流资源

警告:socket_close() 期望参数 1 是资源,布尔值在第 19 行的 /home/bryan/sendpush.php 中给出

警告:fclose():提供的参数不是第 20 行 /home/bryan/sendpush.php 中的有效流资源

实际上我现在把它归结为这些错误

警告:stream_socket_client() [function.stream-socket-client]:SSL 操作失败,代码为 1。OpenSSL 错误消息:错误:14094410:SSL 例程:SSL3_READ_BYTES:sslv3 警报握手失败在 /home/bryan/PushService.php 在线27

警告:stream_socket_client() [function.stream-socket-client]:无法在第 27 行的 /home/bryan/PushService.php 中启用加密

警告:stream_socket_client() [function.stream-socket-client]: 无法在线连接到 /home/bryan/PushService.php 中的 ssl://gateway.sandbox.push.apple.com:2195 (未知错误)

4

2 回答 2

3
  1. 使用私钥的绝对路径而不是相对路径。

  2. 确保允许 php 用户(或 webserver 用户,取决于.. www-data, apache, nginx, www...)读取它(chown, chmod)。

于 2015-06-25T22:25:37.017 回答
-3

我也收到了这个错误。发现我在包含证书文件的文件夹上设置了错误的权限。这对我有用:

chmod 755 your_folder_that_has_certificate_files
于 2012-12-24T06:06:42.913 回答