2

我的应用程序中的推送通知有问题。我刚开始使用推送通知,所以我不知道我的问题是什么原因,我在谷歌中找不到解决方案。因此,我使用本教程http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12作为推送通知编程的示例。当我在终端上运行“php simplepush.php”时,一切都很好,我在设备上收到了通知。但是当我在服务器上加载该脚本并尝试从那里运行它时,没有执行任何操作。只有 30 秒的等待和消息“连接失败:110 连接超时”

这是我的脚本的代码

<?php 
Put your device token here (without spaces):
$deviceToken = '***************';

// Put your private key's passphrase here: 
$passphrase = '**************';

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

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

1 回答 1

1

是的,正如 NewObjective 所澄清的,2195 和 2196 端口必须打开。要打开这些端口,您可能会询问 Bluehost 技术支持团队(票务/聊天),但在此之前您必须拥有专用 IP 地址。

但还有另一个问题。如果您尝试在设置专用 IP 地址并且两个端口都打开后立即发送推送通知消息,您可能会收到相同的“连接超时”错误。您可以通过 SSH 登录到您的服务器并运行“telnet gateway.sandbox.push.apple.com 2195”命令来测试该问题。如果您收到“连接超时”错误 - 您可以尝试联系 Bluehost 支持团队,但他们无法解决此问题。

如果您尝试使用 2195 开放端口远程登录任何其他服务器,您也会收到该错误。我与 Bluehost 支持团队进行了大约 10 次聊天,打开了 10 张左右的票,但他们真的无法帮助我。但两周后,一切都开始起作用了。我认为这是因为打开专用 IP 需要一些时间,但我不确定。无论如何,很有趣的是,Bluehost 支持团队总是回答问题出在 Apple 方面,即使您告诉他们任何其他打开 2195 端口的服务器也不可用)

于 2013-05-06T16:28:27.983 回答