我正在尝试在我的应用程序中实现 Google Cloud Messaging。我仍然无法弄清楚为什么我的手机没有收到正确的消息。我的服务器发送一条消息,GCM 服务器对此作出响应并将一条消息发送回我的手机。这条消息如下所示
{\"multicast_id\":8186678237008516542,\"success\":1,\"failure\":0,\"canonical_ids\":0,\"results\":[{\"message_id\":\"0:1356727074650189%12aaaeccf9fd7ecd\"}]}"
我认为这意味着我收到一条消息,问题是我的应用程序只显示空值。我现在正在使用 Browser Api 密钥并获得这些结果,但我尝试使用服务器密钥(理论上更适合我的需要),但我收到错误 401。
为了接收消息,我使用广播接收器
public void onReceive(Context context, Intent intent){
String newMessage = intent.getExtras().getString(EXTRA_MESSAGE);}
EXTRA_MESSAGE = 消息
这是我在服务器中使用的代码。
$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));
有谁知道可能是什么问题??