APNS服务几天前工作正常。唯一改变的是我将服务器从Ubuntu 12.10升级到13.04。升级后,我的apns停止工作。我不知道为什么,但这是我在服务器上更改的唯一内容。
我还尝试使用我从mac生成的证书telnet gateway.push.apple.com:2195并且一切正常。
但是当我尝试使用我的服务器和php代码时,我得到了这个回复:
连接失败:0
<?php
// Put your device token here (without spaces):
$deviceToken = 'bd218fb8ce00xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
// Put your private key's passphrase here:
$passphrase = 'xxxxxxxxxxxxxxxxxxxx';
// Put your alert message here:
$message = 'My first push notification!';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apns.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, 360, 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'
);
// 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);
答案 0 :(得分:0)
尝试将正确的证书路径放在php脚本中,即..
stream_context_set_option($ctx, 'ssl', 'local_cert',APPPATH.'../assets/apns.pem');
答案 1 :(得分:0)
格式化并安装Ubuntu 14.10的全新副本后,一切进展顺利。 APNS再次正常运作。
一切都表明升级会破坏PHP或任何配置文件上的内容。
所以我们的教训是不要从终端升级Ubuntu。
首先备份所有数据,如果要升级,请从光盘或USB安装新版本的Ubuntu。使用所有可能的更新重新安装LAMP并恢复所有文件和数据。
之后一切正常。