ionic - 使用 PHP 的 firebase 通知不起作用

ionic - firebase notification using PHP not working

我想使用 firebase 将通知推送到我的 Ionic 2 应用程序。我可以直接使用 firebase 控制台推送通知,但我想通过 php 文件发送。

当我发送时,我收到 PHP 的回复:{"message_id":5718309985299480645}

而且phone里面没有通知。

我在 app.component.ts 构造函数中放置了 this.fcm.subscribeToTopic('all')

我不知道我做错了什么..

this.fcm.subscribeToTopic('all') 是我应用中唯一与 fcm 相关的代码。

我的 PHP 代码:

<?php 

   $data = array('title'=>'FCM Push Notifications');
   $target = '/topics/mytopic';


   //FCM API end-point
   $url = 'https://fcm.googleapis.com/fcm/send';
   //api_key available in Firebase Console -> Project Settings -> CLOUD MESSAGING -> Server key
   $server_key = 'my_server_key_from_firebase';

   $fields = array();
   $fields['data'] = $data;
   if(is_array($target)){
   $fields['registration_ids'] = $target;
   }else{
   $fields['to'] = $target;
   }

   //header with content_type api key
   $headers = array(
   'Content-Type:application/json',
   'Authorization:key='.$server_key
   );
   //CURL request to route notification to FCM connection server (provided by Google)           
   $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('Oops! FCM Send Error: ' . curl_error($ch));
   }
   curl_close($ch);
   echo $result;

?>

我什至尝试过推送机器人,但无法在 PHP

的设备上收到通知

所有插件必须在设备准备就绪后调用,特别是如果它们在 app.components 中使用(在某些页面中,不是第一个,它可以在构造函数中使用,因为应用程序是已经准备好并加载了插件)。

所以在设备上订阅主题就绪

this.platform.ready().then(() => {
  this.fcm.subscribeToTopic('all')
});

希望对您有所帮助。

我通过查看 fcm docs 解决了问题。

我将 PHP 文件更改为:

   $data = array('title'=>'Title of the notification', 'body'=>$msg, 'sound'=>'default');
   $target = '/topics/notetoall';

   $url = 'https://fcm.googleapis.com/fcm/send';

   $server_key = 'my_server_api_key_from_firebase';

   $fields = array();
   $fields['notification'] = $data; // <-- this is what I changed from $fields['body']
   if(is_array($target)){
   $fields['registration_ids'] = $target;
   }else{
   $fields['to'] = $target;
   }