how to send push notification in php



how to send push notification in php



Here are some steps to follow.
1) Go to the Firebase console https://console.firebase.google.com. (Login using Google account)
2) Create a new project
3) Click on “Add Firebase to your iOS app” button and enter iOS bundle ID (example: com.yourapp.ios) then click on “REGISTER APP”
4) Download configuration file “GoogleService-Info.plist”  and move it to the app project folder
5) To configure FCM to APNs (Apple Push Notification service), we need APNs certificate. To generate APNs certificate go to Apple developer console and generate a certificate in .p12 extension
6) In Firebase console, go to “Project settings” then click on “CLOUD MESSAGING”. Upload the APNs certificate (.p12 file) in iOS app configuration
7) To check if the FCM is successfully configured with APNs, send first push notification from Firebase notification console
8) To send push notifications using PHP script, use PHP script written below. Replace with iOS device FCM token and replace with Firebase server key
Note: APNs certificate (.p12 file) has an expired date, so it should be always up-to-date and Firebase may upgrade the server key. You can use Legacy server key but Firebase recommends to use newest server key.
$url = "https://fcm.googleapis.com/fcm/send";
$token = "";
$serverKey = '';
$title = "Title";
$body = "Body of the message";
$notification = array('title' =>$title , 'text' => $body, 'sound' => 'default', 'badge' => '1');
$arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');
$json = json_encode($arrayToSend);
$headers = array();
$headers[] = 'Content-Type: application/json';
$headers[] = 'Authorization: key='. $serverKey;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST,

"POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
//Send the request
$response = curl_exec($ch);
//Close request
if ($response === FALSE) {
die('FCM Send Error: ' . curl_error($ch));
}
curl_close($ch);
Post A Comment
  • Blogger Comment using Blogger
  • Facebook Comment using Facebook
  • Disqus Comment using Disqus

No comments :

Thanks For visiting Infotech Solutuion Blog