推送通知:我几乎总是得到“连接失败”但它工作了几次

时间:2011-09-19 07:57:57

标签: ios connection push-notification apple-push-notifications

我正在使用推送通知测试iPhone应用程序。

在过去的5天里,我让它工作了几次(通常在几分钟的时间内连续通知)。

相反,我几乎总是收到错误消息:“连接失败”。

由于它工作了几次,我认为代码是正确的,证书也是有效的。所以我不知道如何解决这个问题。

我还尝试使用以下代码连接多次:

$ctx = stream_context_create();
    stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');

    $fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);

    for ( $tries = 5, $interval = 10, $fp = false; !$fp && $tries > 0; $tries-- ) {
      if (!($fp)) {
        print "Failed to connect $err $errstrn"; 
        sleep ( $interval );
      }
    }

    if ($fp) {

            ...

输出:无法连接到ssl://gateway.sandbox.push.apple.com:2195(拒绝连接)

感谢

1 个答案:

答案 0 :(得分:2)

代码看起来大致正确。我建议你不需要循环(我从来没有);如果你过度发送相同的请求,它甚至可能会给你带来麻烦。我不确定为什么你会有一些成功和一些失败,我发现APN服务器非常一致。

要检查的一个细节:您使用的PHP代码在ssl选项中不包含密码;如果您使用的pem文件受密码保护,则需要这样做。 (例如,见下面的代码)

我建议您重新验证您使用身份验证进行身份验证的凭据。执行此操作的最佳方法是使用Apple的故障排除技术说明2265中所述的openssl(来自终端):http://developer.apple.com/library/ios/#technotes/tn2265/_index.html。我在以下SO问题上写了一篇很好的演练:Couldn't able to connect to APNS Sandbox server

验证pem文件后,您可以尝试使用以下PHP代码(从我的测试页面中窃取):

// Put your private key's passphrase here:
$passphrase = 'p-a-s-s-p-h-r-a-s-e';

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'CertificateAndPrivateKey.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, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp)
    exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected to APNS' . PHP_EOL;

希望有所帮助。