Recent Posts

[insert_php]

<?php
// API access key from Google API’s Console
define( ‘API_ACCESS_KEY’, ‘AIzaSyDFKom2x6B7CWV-_elacZqjpFfzAF4jNtk’ );
$registrationIds = array(“dJ7R_iv7OM0:APA91bHN5lMQwG7s_0VqmRH47Bg-X8Yft60h1FSvdwreDoxE-TNIYEVLLwKEaJwxOCuTOL-3EfxwCCP3xu2HceUXqA0KsN-k3kGCtk7ROA8lzTDHz1eq1L-Tpb_dVByY_xHv9c_3zZXn” );

// 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
);

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

[/insert_php]