Как отправить push-уведомление более 1000 пользователям, использующим Firebase в Android?

Я получаю следующее сообщение об ошибке при отправке push-уведомления более чем 1000 пользователям:

«firebase Количество сообщений навалом (1082) превышает максимально допустимое (1000)»

Я погуглил проблему и обнаружил, что FCM может отправлять только 1000 сообщений на запрос.
Решение: разделить список отправителей в php, но, к сожалению, я новичок в php и не могу выполнить зацикливание.

Мой PHP-скрипт:

    <?php
function send_notification ($tokens, $message)
{
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $tokens,
'data' => $message,
'click_action' => ACTIVITY_CIRCULAR
);
$headers = array(
'Authorization:key = <MY_KEY> ',
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
curl_close($ch);
return $result;
}

$conn = mysqli_connect("localhost","username","password","databse_name");
$sql = " Select Token From users";
$result = mysqli_query($conn,$sql);
$tokens = array();
if(mysqli_num_rows($result) > 0 ){
while ($row = mysqli_fetch_assoc($result)) {
$tokens[] = $row["Token"];
}
}
mysqli_close($conn);
$message = array("message" => "Hi This Arbaz Alam And You are using Android App Thanks.");
$message_status = send_notification($tokens, $message);
echo $message_status;
?>

Не могли бы вы помочь мне в этом вопросе и предоставить мне скрипт push_notification.php, который разделит пользователей.

Я попытался разбить сообщение на 1000 частей, но безуспешно:

    <?php
function send_notification ($tokens, $message)
{
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $tokens,
'data' => $message
);

$headers = array(
'Authorization:key = <MY-KEY>',
'Content-Type: application/json'
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
curl_close($ch);
return $result;
}function send_message($tokens)
{
$message = array("message" => "AKTU Even Semester Result is updated");
$message_status = send_notification($tokens, $message);
echo $message_status;
}$conn = mysqli_connect("localhost","username","password","database_name");

$sql = " Select Token From users";

$result = mysqli_query($conn,$sql);
$tokens = array();

$num_of_rows = mysqli_num_rows($result);
echo "$num_of_rows";
if(mysqli_num_rows($result) > 0 ){

while ($row = mysqli_fetch_assoc($result)) {
$tokens[] = $row["Token"];
if(count($tokens) == 1000){
send_message($tokens);
$tokens = array();
}
}
}

send_message($tokens);
mysqli_close($conn);
?>

2

Решение

Здравствуйте, вы можете использовать array_chunk для отправки 1000 уведомлений

if(mysqli_num_rows($result) > 0 ){
while ($row = mysqli_fetch_assoc($result)) {
$tokens[] = $row["Token"];
}
}
mysqli_close($conn);
$message = array("message" => "Hi This Arbaz Alam And You are using Android App Thanks.");

$regIdChunk=array_chunk($tokens,1000);

foreach($regIdChunk as $RegId){
$message_status = send_notification($RegId, $message);
}
echo $message_status;

Пожалуйста, измените это в своем коде.

6

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]