12

我有一个问题,我想使用 php 发送推送通知,但是我不断收到此错误:

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection refused) in /home/colupon/public_html/iPhone/push/index.php on line 21
Failed to connect: 111 Connection refused

我的代码如下:

$deviceToken = '0f************************************************************78';

$passphrase = '************';

$message = 'My first push notification!';

////////////////////////////////////////////////////////////////////////////////

$ctx = stream_context_create();
$filename = 'ckdev.pem';
stream_context_set_option($ctx, 'ssl', 'local_cert', $filename);
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'
);

// 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);

?>

我相信问题出在我正在使用的服务器上,因为我在不同的服务器上发布了相同的代码和相同的 .pem 文件,并且它发送通知没有任何问题。我试图为我的服务器打开防火墙上的端口,因为我读到这可能会导致此问题,但仍然出现相同的错误消息。还有什么我可以做的吗?任何帮助将不胜感激,谢谢!

4

5 回答 5

15

此问题是 Apple Push 通知中的常见问题,要解决此错误,您必须执行以下操作:

  1. 如果问题是服务器,则在服务器中本地和远程测试您的 pem 文件转到 2 否则构建 pem 正确文件。

  2. 对有证书文件的文件夹设置权限错误。这对我有用:

chmod 755 your_folder_that_has_certificate_files

3.从您的托管服务器检查 apns 端口 2195 的连接性,如下所示:

 telnet gateway.push.apple.com 2195

如果这是问题

Trying 17.172.233.36...
telnet: connect to address 17.172.233.36: Connection refused

您可以通过在生产服务器上打开端口 2195 来解决此问题。您可以通过以下命令进行验证 $telnet gateway.push.apple.com 2195

-bash-3.2# telnet gateway.push.apple.com 2195

Trying 17.149.38.141...
Connected to gateway.push.apple.com (17.149.38.141).
Escape character is '^]'.
Connection closed by foreign host. 
于 2014-02-19T12:14:14.420 回答
2

MAC的情况下,(对我来说,内置服务器使用终端工作正常,但不能通过浏览器工作,所以我安装了 MAMP。)

1.转到---> /Library/WebServer/Documents /----复制phpckdev。pem文件在这里。

2 转到终端--> $open /private/etc-->转到--->apache2>originals>httpd.config 文件--> **"#LoadModule php5_module libexec/apache2/libphp5.so",删除" # "..(也许,您还必须更改权限..!)

然后转到浏览器并检查 - > localhost/yourPhpFile.php

Windows 系统的情况下,

1.安装WAMP ,

2.转到php.ini文件--->搜索此“ ;extension=php_openssl.dll ”行并删除分号“ ; ”。

3.从右下角点击 WAMP 图标转到PHP>PHP Extensions>select php_openssl ..

就是这样..希望这可以帮助更多的寻求者。

于 2014-06-03T09:08:43.773 回答
1

就我而言,问题是我忘记在 php 脚本中正确设置密码。

<?php

// Put your device token here (without spaces):
$deviceToken = 'xxx';

// Put your private key's passphrase here:
$passphrase = 'xxx';
于 2014-09-14T16:46:13.417 回答
0

对我来说,这是 SELinux 的问题。

因此,在您的 /etc/selinux/config 文件中,将SELINUX=enforcing设置为SELINUX=disabled。并重新启动。而已。

于 2015-03-06T13:22:57.270 回答
0
于 2016-02-09T19:49:49.130 回答