APNS:无效令牌导致所有后续推送通知失败
Posted
技术标签:
【中文标题】APNS:无效令牌导致所有后续推送通知失败【英文标题】:APNS: Invalid token causes all subsequent push notifications to fail 【发布时间】:2016-09-28 23:17:27 【问题描述】:我正在使用Sly php Push Notification library,但是如果我完全手动发送所有推送通知,而不使用库(如下面的脚本),也会发生同样的事情。如果我的 SQL 数据库中存在无效令牌并且我尝试向该令牌发送推送,我将与 ssl://gateway.push.apple.com:2195
断开连接,并且所有后续令牌都不会收到推送。如何发现无效令牌并将其从我的数据库中删除,或者在遇到无效令牌后继续发送推送?我在下面的一个 php 脚本(虽然不是上面的库)也有同样的错误:
// Put your device token here (without spaces):
$iosTokens = array(xxxx, xxxx, xxxx);
// Put your private key's passphrase here:
$passphrase = '';
$message = "Message";
$url = "URL";
if (!$message || !$url)
exit('Example Usage: $php newspush.php \'Breaking News!\' \'https://raywenderlich.com\'' . "\n");
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', '../../../PEMs/siouxFallsStampede.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',
'link_url' => $url,
);
// Encode the payload as JSON
$payload = json_encode($body);
foreach($iosTokens as $devicetoken)
// 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));
var_dump($result);
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
【问题讨论】:
【参考方案1】:这已解决here。我所做的是按 ID 对令牌进行排序,当令牌无效时,我将其从我的 SQL 数据库中删除,并继续向那些 ID 高于无效令牌的令牌发送推送(因此按 ID 排序至关重要)。
【讨论】:
以上是关于APNS:无效令牌导致所有后续推送通知失败的主要内容,如果未能解决你的问题,请参考以下文章
Worklight 推送通知 (APNS) 失败并出现 javax.net.ssl.SSLHandshakeException