Google Firebase Cloud Messaging with PHP
composer require absystem/gfcm
▪️ PHP >=5.6.
▪️ Composer.
▪️ Guzzle v6.x sudah include di package.
$config = [
'server_key' => '', // kunci server dari google console
'base_url' => 'https://fcm.googleapis.com/fcm/send'
];
//array token device
$tokendevice = [];
require_once __DIR__ . '/vendor/autoload.php';
use ABSystem\Google\FCM;
$fcm = new FCM($config);
$fcm->setTokenDevice($tokendevice);
$fcm->setDataPayload([
'koordinat' => [
'lat' => '',
'lng' => '',
],
'link' => [
'page'=> '/map.html'
],
]);
$fcm->setPesan('Judul Notifikasi', 'Isi pesan yang tampil.');
$fcm->kirim();