我读了苹果推送通知服务指南:
使用简单格式,如果您发送通知包 在某种程度上畸形 - 例如,有效载荷超过规定的 limit-APNs通过切断连接来响应。
但是如果消息(简单格式)是正确的呢?如果我发送保持活动数据包,APN是否会保留连接?我不想建立大量的连接,因为这可能被视为DOS。
答案 0 :(得分:1)
我的评论的版本,更详细:
以下是我的第一点中的详细信息示例:
// connect to your MySQL database
$con = mysql_connect("localhost", "username", "password");
// select a database
mysql_select_db("my_database", $con);
// run a query to grab your device tokens
$result = mysql_query("SELECT device_tokens FROM some_table");
// set your message
$msg = 'important update';
// create the payload
$body['aps'] = array('alert' => array('body' => $msg, 'action-loc-key' => 'Read'));
// convert to JSON
$payload = json_encode($body);
// setup APNS connection
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'cert.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', 'password');
// open a connection to the APNS server
$apns = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $error, $errorString, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
while ($row = mysql_fetch_array($result))
{
$deviceToken = $row['device_tokens'];
$apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken)) . chr(0) . chr(strlen($payload)) . $payload;
fwrite($apns, $apnsMessage, strlen($apnsMessage));
}
// close APNS connection
fclose($apns);
// close database connection
mysql_close($con);
...并且记得在上面代码中的URL中切换沙箱或实时推送服务器。