在PHP中设置FCM通道ID以获得通知

时间:2019-09-21 06:14:24

标签: php android firebase firebase-cloud-messaging

我正在尝试使用PHP将FCM通知发送到Android设备。我的代码适用于Android O之前的设备。

在Android O中,我们还需要在请求中设置频道ID以接收通知,但我不知道该怎么做。

我已经在应用程序中完成了必要的设置,并使用Firebase Console可以接收到通知,但是当我尝试通过PHP脚本发送通知时失败。

我也查看了下面的链接,但对我来说不起作用。

Android FCM define channel ID and send notification to this channel through PHP

我的PHP代码:

    $notification = new Notification();
    $notification->setTitle("startSession");
    $notification->setBody($_POST['child_id']);
    $notification->setNotificationChannel('my_channel_id');
    $requestData = $notification->getNotification();

    $firebase_token = $_POST['token'];
    $firebase_api = 'my_value';
    $fields = array(
                     'to' => $firebase_token,
                     'data' => $requestData,
                   );
    $url = 'https://fcm.googleapis.com/fcm/send';

    $headers = array(
        'Authorization: key=' . $firebase_api,
        'Content-Type: application/json'
    );
    $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);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
    // Execute post
    $result = curl_exec($ch);

    if($result === FALSE){

        die('Curl failed: ' . curl_error($ch));
        $return_obj = array('responseCode'=>'0' , 'responseMsg'=> 'Error inserting, please try 
         again.', 'errorCode'=>'1');
    }else{
        $return_obj = array('responseCode'=>'1' , 'responseMsg'=> 'Successfully inserted.', 
        'errorCode'=>'0');
    }

    // Close connection
    echo json_encode($return_obj);
    curl_close($ch);

我的通知类别代码是:

<?php
class Notification{
    private $title;
    private $body;
    private $answer_value;
    private $android_channel_id;


    function __construct(){

    }

    public function setTitle($title){
        $this->title = $title;
    }

    public function setBody($body){
        $this->body = $body;
    }

    public function setAnswer($answer){
        $this->answer_value = $answer;
    }

    public function setNotificationChannel($channel){
        $this->android_channel_id = $channel;
    }


    public function getNotificatin(){
        $notification = array();
        $notification['title'] = $this->title;
        $notification['body'] = $this->body;
        $notification['answer'] = $this->answer_value;
        $notification['android_channel_id'] = $this->android_channel_id;

        return $notification;
    }
}
?>

我确定语法正确,因为该通知仍可在装有Android <26的设备上正常工作。

任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:0)

您可以在服务器端PHP中设置频道ID

PHP服务器端

<?php
  function Notify($title,$body,$target,$chid)
   {

    define( 'API_ACCESS_KEY', 'enter here your API Key' );

  $fcmMsg = array(
    'title' => $title,
    'body' => $body,
    'channelId' => $chid,

  );
  $fcmFields = array(
    'to' => $target, //tokens sending for notification
    'notification' => $fcmMsg,

  );

  $headers = array(
    'Authorization: key=' . API_ACCESS_KEY,
    'Content-Type: application/json'
  );

$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, true );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fcmFields ) );
$result = curl_exec($ch );
curl_close( $ch );
echo $result . "\n\n";

}

?>

我使用四个参数Notify定义函数title,body,target,chid来使用它,只需调用该函数并定义其参数,

  

您必须在客户端(Android部分)中添加channelId,   在Android 8.0及更高版本中,无法获取channelId的通知