1

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

设备上的推送应用程序会在我的 MySQL 数据库中自动注册 deviceToken。这一切都很好。

最大的问题是,我只从数据库中将推送消息发送到第一个设备。另一台设备没有收到任何消息。

这是我的代码:

<?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();
?>

如果你能帮忙就好了。为什么它可以与一台设备一起使用......而不是与其他设备一起使用......

4

1 回答 1

0

你有没有尝试过

STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT

?

于 2012-06-13T15:45:44.793 回答