Я использую сервис push-уведомлений Firebase в своем приложении для Android и PHP-скрипте. Я хочу отправлять уведомления после каждой вставки в MySQL DB. Я сталкиваюсь с проблемой, когда я вызываю свой пользовательский метод с именем sendNotifications (), он снова запускает скрипт php и вставляет в БД дважды, поэтому уведомления также отправляются дважды. Вот код ..
Отсюда я вызываю вставку в БД и после этого вызываю метод sendNotifications
if($_POST['action'] == $news::$INSERT)
{
$isInserted = $news->insert($_POST);
if($isInserted){
deliverResponse(200,'Success..',true,NULL);
$message = $news->selectLastInserted();
if(count($message) > 0)
{
require_once('fcm_notify.php');
$obj = new NotifiyUsers();
$obj->sendNotifications($message);
}
}
else
deliverResponse(200,'Failed...',false,NULL);
}
и вот мой метод sendNotification
class NotifiyUsers{
function sendNotifications($message)
{
//getting tokens from users table to send notification
$users = new FMCUser();
$tokens = $users->selectTokens();
if(count($users)<0) // if no user register
return;
////
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $tokens,
'data' => $message,
);
$headers = array(
'Authorization: key ='.GOOGLE_API_KEY,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
return $result;
}
}
Задача ещё не решена.
Других решений пока нет …