这不是我第一个发送推送通知的应用程序,但它是我第一个同时向所有用户发送通知的应用程序。
我所经历的是,并非我的所有用户都收到通知,只有其中一些用户,即使他们的设置正确(即我的应用程序启用通知),代码也是正确的,因为它被发送给他们中的一些人,所以我的猜测是代码“错过”了一些执行,因为与 APNS 的连接是异步的,所以不知何故(如果我错了,你告诉我)它弄乱了发送通知的队列。
这是代码:
function sendNotification(){
$sql = "SELECT * FROM users WHERE phone = 'iPhone' AND pushID != ''";
try {
$db = getConnection();
$stmt = $db->prepare($sql);
$stmt->execute();
$users = $stmt->fetchAll(PDO::FETCH_OBJ);
$request = Slim::getInstance()->request();
$content = json_decode($request->getBody());
$message = $content->message;
foreach($users as $user){
// Put your device token here (without spaces):
$deviceToken = $user->pushID;
// Put your private key's passphrase here:
$passphrase = 'xxxxxxx';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'xxxxx.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'
);
// Encode the payload as JSON
$payload = json_encode($body);
// 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));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
}
$db = null;
} catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
}
如您所见,我使用 iPhone 获取所有用户并向他们发送通知。我的手机是该列表中的最后一个用户,我没有得到它,我知道的另一个用户是第一个用户,她得到了它。它要么错过了数组中的一些用户,要么只做了前半部分,没有显示错误。
我为此使用 Slim。
希望你能帮助我,谢谢!