Android Push Notifications using Google Cloud Messaging (GCM), PHP and MySQL
5. GCM.php
Sending Android Push Notifications from PHP to phonegap applications
/*
* Google API Key
*/
define("GOOGLE_API_KEY", "AI088yCb858-eo6jdL1OmRvpwQCfYP5pHm0Q-3A"); // Place your Google API Key
/*
*發送推播
*/
function android_push_notification($deviceToken,$message)
{
include_once './GCM.php';
$gcm = new GCM();
$registatoin_ids = array($deviceToken);
$message_array = array("message" => $message);
$result = $gcm->send_notification($registatoin_ids, $message_array);
return $result;
}
沒有留言:
張貼留言
注意:只有此網誌的成員可以留言。