我已经制作了一个代码,在许多已经保存在db上的设备上发送推送通知(用于分发),我已经制作了php:
// Put your alert message here:
$message = "send push";
// Put your private key's passphrase here:
$passphrase = 'phrase';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apns.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>" ;
ob_flush();
flush();
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
if (mysql_num_rows($results)!=0) {
while($row = mysql_fetch_array($results))
{
$deviceToken= $row['deviceToken'];
if(isset($deviceToken)&&(strcmp($deviceToken,"(null)")!=0)){
echo "<br>".$deviceToken."<br>";
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered';
else
echo 'Message successfully delivered' ;
ob_flush();
flush();
}
}
// Close the connection to the server
fclose($fp);
}
如果我在db上,只有deviceToken正确或带有值(null),则发送消息,但如果我有一个deviceToken错误,则会收到已发送所有消息但无法正常工作的消息“已成功发送消息”。哪里弄错了?感谢。
答案 0 :(得分:0)
你没有做错,这是一个苹果质量控制。我遇到了这种现象,并且 - 如果我记得很清楚 - 如果设备令牌的结构无效,则没有提供推送通知......
因此,如果您有一个当前不属于设备的有效令牌(例如设备已删除您的应用),则会传递您的其他推送通知,但如果令牌似乎具有绝对错误的结构,不会发送推送通知。
因此,这种现象对您的生产系统不会造成危险,因为您的设备会向您的提供商的数据库注册有效的令牌。
可能在本教程的评论之间有更多细节:http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
答案 1 :(得分:0)
这不可能。没有确定的消防方式来判断推送通知是否成功发送。有其他选择,但它们不是在飞行中而且不可靠。
用户解释了这一点,并在另一篇文章中给出了一些链接。 How to find the Apple Push Notification Delivered to user or not from our server?