Code: Select all
$msg = array
(
'priority' => 'high',
'body' => $_POST["message"],
'title' => $_POST["title"],
'vibrate' => 1,
'icon' => 'new',
'sound' => 1
);
< /code>
Und das wird jetzt verwendet: < /p>
$fields = [
'message' => [
'topic' => $username,
'notification' => $message,
'android' => [
'priority' => 'HIGH',
'notification' => [
'defaultVibrateTimings' => true,
'sound' => true,
],
],
],
];