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


<?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;
?>

No comments

Note: only a member of this blog may post a comment.