"registration_ids" 字段不是 JSON 数组 (Firebase)

"registration_ids" field is not a JSON array (Firebase)

我在使用 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"}]}

但是当我从我的 Android 应用程序调用相同的 php 脚本时,它在响应中给出了错误。 (我在 Charles Proxy 中得到了响应)

"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 个 firebase 令牌的限制 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,您需要按如下方式在数组中传递数据:

PHP:

$fields = array(
        'registration_ids' => array($registration_ids),
        'data' => $message,
    );

我遇到了类似的情况,我必须为用户的注册令牌创建一个 GCM 组,并且发生了错误。后来我发现我没有遵循 fire-base

中提到的正确 JSON 格式

解法:

创建模型

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);

并 post 调用 google。

如果 registration_ids 只是一个令牌,如 https://firebase.google.com/docs/cloud-messaging/http-server-ref 你应该使用字段 'to'.

FCM 要求 registered_ids 是索引从 0 开始的 JSON 数组。 我有同样的错误,因为索引不是这些。我使用 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();
}