Я столкнулся с проблемой Firebase «registration_ids». Когда я отправляю запрос от Rest Client, я получаю успешный ответ.
{"multicast_id":4650719213012935695,"success":2,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1468837777484579%214918aff9fd7ecd"},{"message_id":"0:1468837777484484%214918aff9fd7ecd"}]}
Но когда я вызываю тот же php-скрипт из моего приложения для Android, это дает мне ошибку в ответе. (Я получил ответ в Чарльз Прокси)
"registration_ids" field is not a JSON array
Вот мой скрипт php
function fetchFirebaseTokenUsers($message) {
$query = "SELECT token FROM firebase_tokens";
$fcmRegIds = array();
if($query_run = mysqli_query($this->con, $query)) {
while($query_row = mysqli_fetch_assoc($query_run)) {
array_push($fcmRegIds, $query_row['token']);
}
}
if(isset($fcmRegIds)) {
$pushStatus = $this->sendPushNotification($fcmRegIds, $message);
}
}
function sendPushNotification($registration_ids, $message) {
ignore_user_abort();
ob_start();
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $registration_ids,
'data' => $message,
);
define('GOOGLE_API_KEY', 'AIzaSyC.......VdYCoD8A');
$headers = array(
'Authorization:key='.GOOGLE_API_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_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if($result === false)
die('Curl failed ' . curl_error());
curl_close($ch);
return $result;
ob_flush();
}
я использовал to
вместо отправки массива токенов Firebase как registration_ids
, причина registration_ids
имеющий ограничение в количестве только 1000 жетонов огненной базы https://firebase.google.com/docs/cloud-messaging/http-server-ref.
function fetchFirebaseTokenUsers($message) {
$query = "SELECT token FROM firebase_tokens";
$fcmRegIds = array();
if($query_run = mysqli_query($this->con, $query)) {
while($query_row = mysqli_fetch_assoc($query_run)) {
array_push($fcmRegIds, $query_row['token']);
}
}
if(isset($fcmRegIds)) {
foreach ($fcmRegIds as $key => $token) {
$pushStatus = $this->sendPushNotification($token, $message);
}
}
}
function sendPushNotification($registration_ids, $message) {
ignore_user_abort();
ob_start();
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'to' => $registration_ids,
'data' => $message,
);
define('GOOGLE_API_KEY', 'AIzaSyC.......VdYCoD8A');
$headers = array(
'Authorization:key='.GOOGLE_API_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_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if($result === false)
die('Curl failed ' . curl_error());
curl_close($ch);
return $result;
ob_flush();
}
Если registration_ids — это только один токен, как указано на
https://firebase.google.com/docs/cloud-messaging/http-server-ref
Вы должны использовать поле «до».
FCM требует, чтобы register_ids был массивом JSON с индексами, начинающимися с 0.
У меня та же ошибка, потому что индексы, где не эти. Я решил это с помощью PHP-функции array_values.
function sendPushNotification($registration_ids, $message) {
ignore_user_abort();
ob_start();
$url = 'https://fcm.googleapis.com/fcm/send';
//FCM requires registration_ids array to have correct indexes, starting from 0
$registration_ids = array_values($registration_ids);
$numTokens = count($registration_ids);
if($numTokens == 1){
$fields = array(
'to' => $registration_ids[0],
'data' => $message,
);
}elseif($numTokens > 1){
$fields = array(
'registration_ids' => $registration_ids,
'data' => $message,
);
}
define('GOOGLE_API_KEY', 'AIzaSyC.......VdYCoD8A');
$headers = array(
'Authorization:key='.GOOGLE_API_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_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if($result === false)
die('Curl failed ' . curl_error());
curl_close($ch);
return $result;
ob_flush();
}
Если вы использовали registration_ids
вам нужно передать данные в массиве следующим образом:
PHP:
$fields = array(
'registration_ids' => array($registration_ids),
'data' => $message,
);
У меня был похожий сценарий, когда мне нужно было создать группу GCM для токенов регистрации пользователя. & эта ошибка произошла. Позже я понял, что я не следовал формату Corrent JSON, упомянутому на fIRE-база
Решение:
Создать модель
public class tempo {
public string operation {get;set; }
public string notification_key_name { get; set; }
public List<string> registration_ids { get; set; }
}
затем сериализовать его
var hmm = Newtonsoft.Json.JsonConvert.SerializeObject(obj);
и позвоните в Google.