无法将C2DM消息发送到设备

时间:2013-02-06 08:14:18

标签: php android google-cloud-messaging

我是Android新手,我正在尝试在我的应用中开发推送通知。

我读过这么多帖子,能够生成设备注册密钥和身份验证密钥。

但是当我尝试向设备发送推送通知消息时,我收到了以下消息。

<HTML>
<HEAD>
<TITLE>Unauthorized</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unauthorized</H1>
<H2>Error 401</H2>
</BODY>
</HTML>

以下是我用来发送消息的PHP代码:

function sendMessageToPhone($authCode, $deviceRegistrationId, $msgType, $messageText) {

$headers = array('Authorization: GoogleLogin auth=' . $authCode);
$data = array(
    'registration_id' => $deviceRegistrationId,
    'collapse_key' => $msgType,
    'data.message' => $messageText //TODO Add more params with just simple data instead           
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://android.apis.google.com/c2dm/send");
if ($headers)
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);


$response = curl_exec($ch);

curl_close($ch); 

echo "<pre>";
print_r($response); die;

}

sendMessageToPhone($auth_token, $device_id , "UTF-8","hello");

我还通过emaid启用了“Google Cloud Messaging for Android”服务,我曾用它来生成身份验证令牌。

1 个答案:

答案 0 :(得分:1)

这是错误的方法,因为您尝试使用G2DM。 G2DM已弃用。

这是GCM的精彩教程。您可以在30分钟内设置推送通知。 http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/