推送通知未在多个设备上接收 - 仅在一台设备上获得推送

时间:2012-06-08 12:04:30

标签: php ios push-notification push apple-push-notifications

我的PHP代码有点问题。 我没有让它工作,我发送的消息将在所有设备上收到,并保存在我的数据库中。

设备上的Push App会自动在我的MySQL数据库中注册deviceToken。这一切都很好。

最大的问题是,我只从数据库中获取FIRST设备的推送消息。其他设备不会收到任何消息。

这是我的代码:

<?php

require_once('konfiguration.php');

$sql = "SELECT deviceToken FROM DeviceTokens";
$dbquery = mysql_query($sql);

// check checkboxes
$message = $_POST['alert'];
$badge = $_POST['badge'];
$sound = $_POST['sound'];
// Construct the notification payload
$body = array();
// anti-error variable
$nothing = true; 
// get user input
if ($message) { $alert=$_POST['message']; $nothing = false;
$body['aps']['alert'] = $alert; }
if ($badge) { $nothing = false;
if($_POST['number']) $number=(int)$_POST['number'];
else $number=1;
$body['aps']['badge'] = $number; }
if ($sound) { $nothing = false;
$body['aps']['sound'] = 'beep.wav'; }
// if input not correct, scream
if ($nothing || ($message && $alert=="")) { echo "Falscher Input!"; exit(); }
//make new stream context
$ctx = stream_context_create();
// set parameters
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', 'w3workProd.pem');
//stream_context_set_option($streamContext, 'ssl', 'passphrase', 'nils');

$socketClient = stream_socket_client('ssl://gateway.push.apple.com:2195', $error,      
$errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);

$payload = json_encode($body);

print "sending message :" . $payload . "\n";

while($row = mysql_fetch_array($dbquery)) {
$message = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken))   
.chr(0) . chr(strlen($payload)) . $payload;
$deviceToken = str_replace(' ', '', $row['deviceToken']);
$message = pack('CnH*', 0, 32, $deviceToken);
$message = $message . pack('n', strlen($payload));
$message = $message . $payload;

fwrite($socketClient, $message);
echo ($row['deviceToken']);
}

fclose($socketClient);
exit();
?>

如果你可以提供帮助,那会很好。 为什么它与一个设备一起工作......而不是与其他设备一起工作......

1 个答案:

答案 0 :(得分:0)

你试过吗

  

STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT