Skip to content

Instantly share code, notes, and snippets.

@ZahidRasheed
Created November 23, 2016 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZahidRasheed/5c1d494a9d72d7be91734977a671024d to your computer and use it in GitHub Desktop.
Save ZahidRasheed/5c1d494a9d72d7be91734977a671024d to your computer and use it in GitHub Desktop.
Send android push notifcation
<?php
// Server key from Google API's Console https://console.firebase.google.com/project/high-street-auctions/settings/cloudmessaging
define( 'SERVER_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array('','','');
$payLoad = array
(
'message' => 'here is a message.',
'title' => 'This is a title.',
'subtitle' => 'This is a subtitle.',
'tickerText' => 'Ticker text here',
'vibrate' => 1,
'sound' => 1,
'largeIcon' => 'large_icon',
'smallIcon' => 'small_icon'
);
$fields = array
(
'registration_ids' => $registrationIds,
'data' => $payLoad
);
$headers = array
(
'Authorization: key=' . SERVER_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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment