我正在为推送通知开发 iPhone 应用程序,当我在本地主机上运行 php 文件时出现错误。我已经正确创建了证书,.pem 文件。然后当我在本地主机上测试应用程序时,会显示警告。
警告:stream_socket_client() [function.stream-socket-client]:无法在 /Applications/XAMPP/xamppfiles/htdocs/PushNotificationProject/simplepush 中设置私钥文件 `/Applications/XAMPP/xamppfiles/htdocs/PushNotificationProject/ck.pem' .php 在第 21 行
警告:stream_socket_client() [function.stream-socket-client]:未能在第 21 行的 /Applications/XAMPP/xamppfiles/htdocs/PushNotificationProject/simplepush.php 中创建 SSL 句柄
警告:stream_socket_client() [function.stream-socket-client]:无法在第 21 行的 /Applications/XAMPP/xamppfiles/htdocs/PushNotificationProject/simplepush.php 中启用加密
警告:stream_socket_client() [function.stream-socket-client]:无法连接到 /Applications/XAMPP/xamppfiles/htdocs/PushNotificationProject/ 中的 ssl://gateway.sandbox.push.apple.com:2195(未知错误)第 21 行的 simplepush.php 连接失败:0
我收到这个错误。这个错误的原因可能是什么?
这是我的 php 代码。
<?php
// Put your device token here (without spaces):
$deviceToken = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
// Put your private key's passphrase here:
$passphrase = 'xxxxxxxxxx';
// Put your alert message here:
$message = 'My first push notification!';
////////////////////////////////////////////////////////////////////////////////
$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.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp) {
exit("Failed to connect: $err $errstr" . PHP_EOL);
}
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default',
'badge' => '1'
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result) {
echo 'Message not delivered' . PHP_EOL;
} else {
echo 'Message successfully delivered' . PHP_EOL;
}
// Close the connection to the server
fclose($fp);
?>
请帮我解决这个错误。