PHP Non-blocking cURL requests to firebase for Push Notifications For Web | Android | IOS
There Code implement Push Notification
has a server-side API that you can call to send messages. See https://firebase.google.com/docs/cloud-messaging/server.
Github Project :- https://github.com/bhargavraviya/notifications
This file contains 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-API-ACCESS-KEY-GOES-HERE'); | |
$url = 'https://fcm.googleapis.com/fcm/send'; | |
$registrationIds = array($_GET['id']); | |
// prepare the message | |
$message = array( | |
'title' => 'This is a title.', | |
'body' => 'Here is a message.', | |
'vibrate' => 1, | |
'sound' => 1 | |
); | |
$fields = array( | |
'registration_ids' => $registrationIds, | |
'data' => $message | |
); | |
$headers = array( | |
'Authorization: key='.API_ACCESS_KEY, | |
'Content-Type: application/json' | |
); | |
$ch = curl_init(); | |
curl_setopt( $ch,CURLOPT_URL,$url); | |
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; | |
?> |
Post a Comment