发送iOS推送通知时超时

时间:2014-07-10 12:39:35

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

我几周都在搜索我的问题,但我无法找到解决方案。我已尝试过与iOS推送通知服务相关的所有内容,但没有任何作用。这是我的问题:

将我的php文件和.pem文件上传到我的服务器时,我会在发送通知时收到timed out error

  1. 我的生产证书100%正常运行,因为我在本地计算机上测试脚本并发送通知。

  2. 我使用了正确的网址:gateway.push.apple.com和正确的端口2195

  3. 我知道设备令牌在制作时会发生变化。

  4. 我的服务器没有防火墙且已打开17.xxxx个端口。

  5. 我在开发过程中测试了通知,它在服务器上运行。

  6. 我使用证书的绝对路径/home/project/public_html/ck.pem

  7. 所以我只是想知道在从开发阶段转换到生产阶段时我是否需要在服务器上进行任何新配置,因为它在不久前使用了dev证书。

    请注意,通知可以在我的本地计算机上使用MAMP和生产证书。

    修改

    这是我用来发送简单通知的代码:

        <?php
    
    
        $deviceToken = 'DISTRIBUTION TOKEN';
    
    
        $passphrase = '*******';
    
    
        $message = 'Hey! It's working';
    
    
    
        $ctx = stream_context_create();
        stream_context_set_option($ctx, 'ssl', 'local_cert', '/home/project/public_html/ck.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;
    
    // 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);
    
    ?>
    

3 个答案:

答案 0 :(得分:2)

它也发生在我身上,原因是我的服务器阻止2195端口..尝试从终端运行此命令到您的服务器

telnet gateway.push.apple.com 2195

您应该得到以下回复 尝试17.172.234.2 ...... 连接到gateway.push-apple.com.akadns.net。 逃脱角色是'^]'。

如果连接超时,则服务器阻止端口2195

答案 1 :(得分:1)

您可以尝试更改

中的PHP代码
 $message = 'Hey! It's working';

 $message = "Hey! It's working";
你确定吗? 1.你正在传递正确的设备吗? 2.在ios应用程序中使用生产证书。 3.在创建ck.pem进行生产时,您使用CSR的公钥导出pem?

答案 2 :(得分:0)

连接到2195端口时,其显示操作超时。你能告诉解决方案解锁2195端口