Skip to content

Instantly share code, notes, and snippets.

@karrikas
Last active July 2, 2018 10:57
Show Gist options
  • Save karrikas/9fc23353e2b13534a52a0dc11e0a85eb to your computer and use it in GitHub Desktop.
Save karrikas/9fc23353e2b13534a52a0dc11e0a85eb to your computer and use it in GitHub Desktop.
Firebase push notification by PHP example, cordova FCM_PLUGIN
<?php
// API access key from Google API's Console
define('API_ACCESS_KEY', 'your-key');
function pushMessage($title, $body, $sound = true)
{
$msg = array (
'body' => substr($body,0,40), // limit body
'title' => $title,
'click_action' => 'FCM_PLUGIN_ACTIVITY',
);
if ($sound) {
$msg['sound'] = 'mySound';
}
$fields = array (
'to' => '/topics/all', // or your topic "/topics/yourgroupname"
'priority' => 'high',
'data' => array(
'body' => substr($body,0,40), // limit body
'title' => $title,
'soinua' => $sound,
),
'notification' => $msg,
);
$headers = array (
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment