发送 507 推送消息后 APNS 关闭连接
Posted
技术标签:
【中文标题】发送 507 推送消息后 APNS 关闭连接【英文标题】:APNS close connection after sending 507 push message 【发布时间】:2012-09-01 02:10:41 【问题描述】:我已将我的应用程序提交到苹果商店,现在我想将 APNS 发送给用户。 我想从我的桌面通过这个 php 代码发送 7000 条推送消息:
<?php
// Put your private key's passphrase here:
$passphrase = '*****';
// Put your alert message here:
$message = 'text here';
////////////////////////////////////////////////////////////////////////////////
$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.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</br>' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
////////////////////////////////////////////////////////////////////////
function selectfromdb()
$x = array();
$con = mysql_connect("localhost","root","root");
mysql_select_db("my_db", $con);
mysql_query("set character_set_server='utf8'");
mysql_query("set names 'utf8'");
$result = mysql_query("SELECT idip FROM id");
$c = 0;
while($r = mysql_fetch_array($result))
$x[$c] = $r['idip'];
$c++;
return $x;
///////////////////////////////////////////////////////////////////////
$y = selectfromdb();
$i = 0;
while ($i < sizeof($y))
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*',$y[$i]) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered</br>' . PHP_EOL;
else
echo 'Message successfully delivered</br>' . PHP_EOL;
$i++;
echo 'end</br>';
// Close the connection to the server
fclose($fp);
?>
但它只是发送 507 ,然后它说:消息未传递 其余的。
【问题讨论】:
【参考方案1】:问题是苹果在 X 消息发送到不可用的设备 ID 后关闭了连接。 通过使用 APNS 反馈服务清理您的设备 ID 集合/数据库,然后完成您的 APNS 消息的部署。
【讨论】:
以上是关于发送 507 推送消息后 APNS 关闭连接的主要内容,如果未能解决你的问题,请参考以下文章
MobileFirst APNS 推送通知失败并出现 java.net.SocketException(连接被远程主机关闭)