Push Notification Firebase Cloud Messaging (FCM) PHP untuk Android

Di bawah ini adalah kode PHP sederhana untuk push notification memakai Firebase Cloud Messaging untuk push ke device android.

<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array( $_GET['id'] );
// prep the bundle
$msg = array
(
	'message' 	=> 'here is a message. message',
	'title'		=> 'This is a title. title',
	'subtitle'	=> 'This is a subtitle. subtitle',
	'tickerText'	=> 'Ticker text here...Ticker text here...Ticker text here',
	'vibrate'	=> 1,
	'sound'		=> 1,
	'largeIcon'	=> 'large_icon',
	'smallIcon'	=> 'small_icon'
);
$fields = array
(
	'registration_ids' 	=> $registrationIds,
	'data'			=> $msg
);
 
$headers = array
(
	'Authorization: key=' . API_ACCESS_KEY,
	'Content-Type: application/json'
);
 
$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/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;


About Author

Cecep Yusuf

Hi, my name is Cecep Yusuf. However, in the virtual world I am more likely to use the name Cheyuz, which is an abbreviation of two words "Cecep" and "Yusuf". I am founder of Jagocoding.com, u can view more of me in Cheyuz.id


Comment & Discussions

  • Rahmat Asri
    Admin, jualan E-booknya tutorial ga?

  • Gilang ramadhan
    dev pascal. program ini bagaimana , saya masih new bie, Amir berlatih berenang setiap 4 hari sekali sedangkan budi berlatih berenang 7 hari sekali. Hitunglah berapa kali mereka berlatih bersama dalam waktu 6 bulan (q bulan = 30 hari), dan pada hari keberapa saja ?

  • Reza Fahlevi
    bro approve tutorial gw dong biar gw semangat berbagi disini

    • Cecep Yusuf

      Udah diapprove gan, sorry nih ane skarang udah agak sibuk bgt :(


  • Bro bro.. kok tutorial gw pada hilang ya?

  • Please LOGIN before if you want to give the comment.