这不是我的第一个应用程序发送推送通知,但它是我的第一个应用程序,我在同一时间发送给我的所有用户发送通知。
什么IM经历是,并不是所有的用户会收到通知,只是其中的一部分,即使他们有(启用了我的应用程序即通知)正确的设置,还因为它被发送到他们中的一些代码是正确的,所以我猜测是代码“错过”的一些处决,因为与APNS的连接如为asyncronous这样莫名其妙地(你告诉我,如果我错了),它弄乱发送通知的队列。
下面的代码:
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,我给他们的通知。 我的手机是在该列表中的最后一个用户,我没有得到它,我知道是首当其冲的一个其他用户,她得到了它。 它或者错过一些用户的阵列中,或者它只是做上半年,没有显示任何错误。
即时通讯使用斯利姆这一点。
希望你能帮助我,谢谢!