Firebase Cloud Messaging PHP Integration 发送推送通知



我已经在PHP中集成了FCM推送通知功能。现在,通知工作正常,但badge号码不起作用。

我已经添加了badge = 1但每次都没有显示 1 而不是递增徽章编号。我想发送自动递增的徽章编号。

请参阅我的 php 文件代码:

 <?php
    $ch = curl_init("https://fcm.googleapis.com/fcm/send");
    //The device token.
    $token = "DEVICE_TOKEN_HERE"; //token here 
    //Title of the Notification.
    $title = "Title Notification";
    //Body of the Notification.
    $body = "This is the body show Notification";
    //Creating the notification array.
    $notification = array('title' =>$title, 'text' => $body, 'sound' => 'default', 'badge' => '1');
    //This array contains, the token and the notification. The 'to' attribute stores the token.
    $arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');
    //Generating JSON encoded string form the above array.
    $json = json_encode($arrayToSend);
    //Setup headers:
    $headers = array();
    $headers[] = 'Content-Type: application/json';
    $headers[] = 'Authorization: key=API_KEY_HERE'; // key here
    //Setup curl, add headers and post parameters.
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
    curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);       
    //Send the request
    $response = curl_exec($ch);
    //Close request
    curl_close($ch);
    return $response;
?>

请帮助我!!谢谢。

这是预期的行为。 iOS 不会自动递增您发送的徽章。在发送徽章之前,您必须确定服务器端徽章的假定值。

另请参阅此帖子。

最新更新