我在Android应用中实现了推送通知。
现在,我遇到了着名的规范问题。
如果我在没有注销的情况下卸载应用程序,那么不从我的数据库中删除device_ids
,当我重新安装应用程序时,我会收到不适合新用户的通知。
谷歌建议使用规范ID来解决这个问题,但我不明白我必须在哪里拦截它并更改数据库中的id。 我有这个发送通知的PHP页面:
$gcm=new GCM();
//get the array of all id associated to the user
$row= (query to get registration_ids from my database);
while($row = mysql_fetch_assoc($result)){
array_push($registration_ids, $row['id_device']);
}
//create a message to send
$mymessage="my message";
$message=array("message"=>$mymessage);
//send the notification and take the result
$result_android=$gcm->send_notification($registration_ids,$message);
echo $result_android;
//class that send the notification
class GCM{
function __construct(){}
public function send_notification($registatoin_ids,$message){
// GOOGLE API KEY
define("GOOGLE_API_KEY","xxxxxxxxxxxxxxxxx");
$url="https://android.googleapis.com/gcm/send";
$fields=array(
"registration_ids"=>$registatoin_ids,
"data"=>$message,
);
var_dump($fields);
$headers=array(
"Authorization: key=".GOOGLE_API_KEY,
"Content-Type: application/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_SSL_VERIFYPEER,false);
curl_setopt($ch,CURLOPT_POSTFIELDS,json_encode($fields));
$result=curl_exec($ch);
if($result===FALSE){
die("Curl failed: ".curl_error($ch));
}
curl_close($ch);
echo $result;
}
我应该在哪里取canonical_ids
并将其插入我的数据库?服务器端还是客户端?我很困惑。
答案 0 :(得分:0)
现在,当我向具有多个注册ID的设备发送推送通知时,发送请求的php页面的结果是:
array(2) { ["registration_ids"]=> array(1) { [0]=> string(162) "XXXXXX(old reg id)XXXXXXX" } ["data"]=> array(1) { ["price"]=> string(24) "Hi, I’m a push notification!" } }
{"multicast_id":7004172909649400096,"success":1,"failure":0,"canonical_ids":1,"results":[{"registration_id":" XXXXXX(canonical reg id)XXXXXXX ","message_id":"0:1428420202799897%73660ba9f9fd7ecd"}]}
如何不发送错误通知我该怎么做?
答案 1 :(得分:0)
您需要阅读此工作Example来解决您的问题。基本上我们必须使用现有的重复注册ID更新规范ID。在GCM通知的响应中,有一点是类似的,即有助于使用现有注册ID更新规范id以避免重复消息的数组位置。