推送通知iPhone的问题

时间:2012-10-24 17:14:10

标签: iphone push-notification

我的应用中的推送通知存在问题。我刚开始使用推送通知,所以我不知道我的问题是什么原因,我无法在谷歌找到解决方案。 所以,我使用本教程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);

1 个答案:

答案 0 :(得分:1)

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

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

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