我一直在寻找这个看似简单的问题几个小时。
“如何获得FCM Web推送通知以在屏幕上停留更长时间?”
我正在使用PHP将“ curl”发送到“ https://fcm.googleapis.com/fcm/send”
$notification = array('title' =>$title , 'body' => $body, 'icon' => 'myicon.png');
$arrayToSend = array('to' => $token, 'notification' => $notification, 'priority'=>'high','badge' => '1');
此外,如果您发现上述代码有任何问题,请随时纠正我。
谢谢