Skip to content

Instantly share code, notes, and snippets.

View franciscopessoa's full-sized avatar
🎯
Focusing

Francisco Pessoa franciscopessoa

🎯
Focusing
View GitHub Profile
<?php
$url = "https://fcm.googleapis.com/fcm/send";
$token = "your device token";
$serverKey = 'your server token of FCM project';
$title = "Notification title";
$body = "Hello I am from Your php server";
$notification = array('title' =>$title , 'text' => $body, 'sound' => 'default', 'badge' => '1');
$arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');
$json = json_encode($arrayToSend);
$headers = array();