我在 PHP 中集成了 FCM 推送通知功能。现在,通知工作正常,但 badge
号码不起作用。
我添加了 badge = 1
,但每次都没有显示 1 而不是递增角标(Badge)编号。我想发送自动递增的角标(Badge)编号。
请看我的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, "OST");
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 不会自动增加您发送的角标(Badge)。在发送之前,您必须在服务器端确定角标(Badge)的应有值。
另见 post .
关于php - Firebase 云消息传递 PHP 集成发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43085546/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |