データベースに保存されている多くのデバイスで(配布用に)プッシュ通知を送信するコードを作成しました。phpを作成しました:
// Put your alert message here:
$message = "send push";
// Put your private key's passphrase here:
$passphrase = 'phrase';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apns.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>" ;
ob_flush();
flush();
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
if (mysql_num_rows($results)!=0) {
while($row = mysql_fetch_array($results))
{
$deviceToken= $row['deviceToken'];
if(isset($deviceToken)&&(strcmp($deviceToken,"(null)")!=0)){
echo "<br>".$deviceToken."<br>";
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered';
else
echo 'Message successfully delivered' ;
ob_flush();
flush();
}
}
// Close the connection to the server
fclose($fp);
}
db に deviceToken のみが正しいか値 (null) がある場合、メッセージは送信されますが、deviceToken が 1 つ間違っていると、すべてのメッセージを送信したが機能しないメッセージ「メッセージが正常に配信されました」が表示されます。どこで間違いを犯しますか?ありがとう。