使用 GCM 向多个 Android 设备发送推送通知
我正在关注 http://javapapers.com/android/google-cloud-messaging-gcm-for-android-and-push-notifications/?通过 GCM 发送推送通知.一切正常,但是,我只能向一台设备发送推送通知.注册另一个设备会替换之前设备的注册 ID.我在 http://javapapers 中尝试了 Shardool 提供的解决方案.com/android/android-multicast-notification-using-google-cloud-messaging-gcm/?但它不工作.
任何建议都会有很大帮助.
这是我的 gcm.php
代码,用于注册设备并发送推送通知,但仅限于最近注册的单个设备.
gcm.php
$registatoin_ids,'数据' =>$消息,);//Google Cloud Messaging GCM API 密钥定义(GOOGLE_API_KEY",MY_KEY");$headers = 数组('授权:密钥='.GOOGLE_API_KEY,'内容类型:应用程序/json');$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_POSTFIELDS, json_encode($fields));$result = curl_exec($ch);如果($result === FALSE){死('卷曲失败:'.卷曲错误($ ch));}curl_close($ch);返回 $result;}?><?php//这个块是在点击时将消息发布到GCM$pushStatus = "";如果(!空($_GET[推"])){$gcmRegID = file_get_contents("GCMRegId.txt");$pushMessage = $_POST["message"];if (isset($gcmRegID) && isset($pushMessage)) {$gcmRegIds = 数组($gcmRegID);$message = array("m" => $pushMessage);$pushStatus = sendPushNotificationToGCM($gcmRegIds, $message);}}//这个块是从外部(移动应用程序)接收GCM regId如果(!空($_GET[shareRegId"])){$gcmRegID = $_POST["regId"];file_put_contents("GCMRegId.txt",$gcmRegID);echo "好的!";出口;}?><头><title>PHP 中的 Google Cloud Messaging (GCM) 服务器</title>头部><身体><h1>PHP 中的 Google Cloud Messaging (GCM) 服务器</h1><form method="post" action="gcm.php/?push=1"><div><textarea rows="2" name="message" cols="23" placeholder="通过 GCM 传输的消息"></textarea><div><input type="submit" value="Send Push Notification via GCM"/></div></表单><p><h3><?php echo $pushStatus;?></h3></p>