gpt4 book ai didi

php - 发送 507 推送消息后 APNS 关闭连接

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:36 24 4
gpt4 key购买 nike

我已经将我的应用程序提交到苹果商店,现在我想将 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,然后它说:消息未送达 对于所有其他人。

最佳答案

问题是苹果在发送了 X 条消息到不可用的设备 ID 后关闭了连接。通过使用 APNS 反馈服务清理您的设备 ID 集合/数据库,然后完成 APNS 消息的部署。

关于php - 发送 507 推送消息后 APNS 关闭连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12224369/

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