嗨,我已經建立了本地GCM應用程序的Android這是在我所有的Android設備的工作非常精細。 但是我想進一步使用這個GCM服務,就像我想把這個GCM服務與我現有的Android應用程序一樣,用於測試,我已經完成了我的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;
}
}
?>
基本上是我在做使用PhoneGap的corodova 2.2.0什麼都沒發生的那一刻到現在我都跟着馬克·納特的,包括在我的應用程序的GCM插件的方法,但是,這並不爲我工作的Android應用項目。我已經在php中完成了服務器端GCM。但我面臨的主要困難是在客戶端,GCM的集成似乎並不適用我已包含的項目ID。但是,我必須把服務器放在那裏,似乎沒有我必須把我的服務器的URL。 – 2013-05-15 07:24:13
啊,我明白了。我已經更新了我的答案 – britzl 2013-05-16 10:13:22
非常感謝你 – 2013-05-20 19:53:18