I am facing problem with Firebase "registration_ids". When I send the request from Rest Client i get the successful response.
{"multicast_id":4650719213012935695,"success":2,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1468837777484579%214918aff9fd7ecd"},{"message_id":"0:1468837777484484%214918aff9fd7ecd"}]}
But when I call same php script from my Android application it gives me error in the response. (I got the response in Charles Proxy)
"registration_ids" field is not a JSON array
Here is my php script
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();
}
I had the similar scenario where I had to create a GCM group for user's registration tokens & that error occurred. I figured it out later that i was not following corrent JSON format mentioned on fire-base
Solution:
Create a model
then serialize it
and make a post call to google.
If you Used
registration_ids
you need to passed data in array as follow:PHP:
If registration_ids is just one Token as stated at https://firebase.google.com/docs/cloud-messaging/http-server-ref you should use the field 'to'.
FCM requires registered_ids to be a JSON Array with indexes starting from 0. I have the same error because the indexes where not these. I solved it using the PHP function array_values.
I used
to
rather than sending array of Firebase tokens asregistration_ids
. Causeregistration_ids
having the limit of 1000 number of firebase tokens only https://firebase.google.com/docs/cloud-messaging/http-server-ref.