APNS - 通知推送ios:通过对等PHP

时间:2016-06-25 13:50:58

标签: php ios apple-push-notifications

我推送通知工作正常。但有些时候,它从无处开始给出错误:

stream_socket_client():SSL:由同行重置连接

  

奇怪的是我无需做任何事情来解决它而是等待。   过了一段时间,它又重新开始工作了。

我知道很多问题都是重复notifications-push-ios-connection-reset-by-peer 但它们都没有解决我的问题。

我正在使用PHP stream_socket_client来生成套接字连接

正在使用的代码是:

 <?php
ini_set('display_errors','On'); 
error_reporting(E_ALL);
$deviceToken= 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';      
$passphrase = ' ';
$message = 'my first 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
}

1 个答案:

答案 0 :(得分:2)

我无法真正理解它的主要原因。

但请确保您没有做出以下任何错误:

  • 不要并行建立多个连接。在发送推送通知后重复使用相同的连接或关闭连接。实际上,服务器对最大并行连接数有限制,一旦达到阈值,可能会给您带来麻烦。 Apple也建议保持连接打开,除非你知道它会闲置。
  

在多个通知中保持与APN的连接;   不要反复打开和关闭连接。 APN迅速对待   连接和断开作为拒绝服务攻击。你应该   保持连接打开,除非你知道它会闲置一个   延长的时间段 - 例如,如果您只发送通知   您的用户每天可以使用一次新连接。

  • 不要将开发者个人资料令牌发送给LIVE APNS。将发行版和开发应用令牌分开。如果您尝试将沙盒令牌发送到LIVE APNS,则可能会导致错误,反之亦然。