Firebase云消息传递PHP集成发送推送通知

时间:2017-03-29 06:04:20

标签: php ios firebase push-notification firebase-cloud-messaging

我在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;

?>

请帮帮我!!!感谢。

1 个答案:

答案 0 :(得分:0)

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

另见post