gpt4 book ai didi

php - APNS:无效的 token 导致所有后续的推送通知失败

转载 作者:行者123 更新时间:2023-12-01 22:29:00 25 4
gpt4 key购买 nike

我正在使用Sly PHP Push Notification library,但是如果我完全手动发送所有推送通知而没有库(如下面的脚本中所示),则发生同样的事情。如果我的SQL数据库中存在无效的 token ,并且我尝试向该 token 发送推送,则我与ssl://gateway.push.apple.com:2195断开了连接,所有后续 token 均未收到该推送。如何发现无效 token 并将其从数据库中删除,或者在遇到无效 token 后如何继续发送推送?我下面的一个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);

最佳答案

解决了here。我所做的是按ID对 token 进行排序,当 token 无效时,我从SQL数据库中删除了该 token ,并继续仅向ID高于无效ID的 token 发送推送(因此按ID排序至关重要)。

关于php - APNS:无效的 token 导致所有后续的推送通知失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39759055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com