无法连接到' ssl://gateway.sandbox.push.apple.com:2195'从服务器端

时间:2014-04-14 12:07:55

标签: ios objective-c macos

我正在使用iOS推送通知的MAC应用程序。我想从我的服务器上的PHP脚本发送通知。我的应用程序中的代码非常适合注册远程通知并接收它们。我使用这个PHP脚本发送通知,它也运行良好:

 <?php

// My device token here (without spaces):
$deviceToken = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

// My private key's passphrase here:
$passphrase = 'myPrivateKeyPassword';

// My alert message here:
$message = 'New Push Notification!';

//badge
$badge = 1;

$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,
    'badge' => $badge,
    'sound' => 'newMessage.wav'
);

// 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 'Error, notification not sent' . PHP_EOL;
else
    echo 'notification sent!' . PHP_EOL;

 // Close the connection to the server
 fclose($fp);
?>

我的问题是,如果我在iMac以及其他mac系统上通过终端运行此脚本,一切正常并发送通知,但如果我将其上传到我的服务器上则无法正常工作。我的证书有效,并且位于脚本的同一文件夹中。当我尝试在服务器上运行脚本时。然后它给出以下错误:

  

警告:stream_socket_client()[function.stream-socket-client]:无法连接到/ home / iphmuvxr / public_html /中的ssl://gateway.sandbox.push.apple.com:2195(连接超时)第25行的Scheduleeling / push_notification.php

1 个答案:

答案 0 :(得分:0)

听起来你没有打开服务器上的端口。 请打开端口再试一次。

您可以通过以下命令进行验证:

$telnet gateway.sandbox.push.apple.com 2195