嗨,我已经为 Android 构建了本机 GCM 应用程序,它在我所有的 android 设备上都运行良好。但是我想进一步使用这个 GCM 服务,就像我想把这个 GCM 服务与我现有的 Android 应用程序集成一样,为了测试我已经为 GCM 完成了我的服务器,但由于客户端实现,我落后了。我一直在尝试获取有关我的项目的相关信息,但我无法在现有 Android 应用程序上找到客户端实现的资源。如果有人能给我提供任何链接,我将不胜感激。提前致谢
这是我的 GCM 服务器端代码
<?php
class GCM {
//put your code here
// constructor
function __construct() {
}
/**
* Sending Push Notification
*/
public function send_notification($registatoin_ids, $message) {
// include config
include_once './config.php';
// Set POST variables
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $message,
);
$headers = array(
'Authorization: key=' . GOOGLE_API_KEY,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
echo $result;
}
}
?>