Last active
July 2, 2018 10:57
-
-
Save karrikas/9fc23353e2b13534a52a0dc11e0a85eb to your computer and use it in GitHub Desktop.
Firebase push notification by PHP example, cordova FCM_PLUGIN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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