我一直在尝试使用http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/ 作为参考来实现 Android GCM 服务。我可以在数据库中注册模拟器,但是模拟器没有收到从服务器发送的任何消息。有人可以告诉我哪里出错了吗?
问问题
823 次
1 回答
2
运行以下 PHP 文件,
<?php
//request url
$url = 'https://android.googleapis.com/gcm/send';
//your api key
$apiKey = 'YOUR API KEY';
//registration ids
$registrationIDs = array('First_Reg_Id','Second_Reg_Id','Third_Reg_Id');
//payload data
$data = array('title' => 'hi', 'message' => 'Push notification');
$fields = array('registration_ids' => $registrationIDs,
'data' => $data);
//http header
$headers = array('Authorization: key=' . $apiKey,
'Content-Type: application/json');
//curl connection
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
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));
print_r($fields);
$result = curl_exec($ch);
curl_close($ch);
echo $result;
?>
在此之前,请替换Google 提供的API 密钥。将First_Reg_Ids替换为您的模拟器的注册码。如果不使用,请删除其他人。
你只需要运行这个 PHP 文件,你就会得到带有标题和消息的消息。只需解析它。
于 2013-06-13T07:05:34.433 回答