以下是我的客户代码:
public class GCMIntentService extends GCMBaseIntentService {
public GCMIntentService() {
super(SENDER_ID);
}
@Override
protected void onError(Context arg0, String arg1) {
}
@Override
protected void onMessage(Context arg0, Intent arg1) {
Context context = getApplicationContext();
String NotificationContent = arg1.getStringExtra("message");
System.out.println("Message: " + NotificationContent);
}
@Override
protected void onRegistered(Context arg0, String arg1) {
System.out.println("Registered id: " + arg1);
}
@Override
protected void onUnregistered(Context arg0, String arg1) {
System.out.println("Unregistered id: " + arg1);
}
}
注册和取消注册方法如下:
public void Registering() {
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
RegistrationId = GCMRegistrar.getRegistrationId(this);
if(RegistrationId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
}
}
public void Unregistering() {
Intent unregIntent = new Intent("com.google.android.c2dm.intent.UNREGISTER");
unregIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0));
startService(unregIntent);
}
在同一台设备上,第一次拨打Registering()
时,我收到registered_id_1
我打电话给Unregistering()
,它会打印:
Unregistered id: registered_id_1
表示取消注册成功
再次致电Registering()
,它会获得另一个registered_id_2
。
推送通知服务器我将消息发送到registered_id_1
,如下所示:
Sender sender = new Sender("Android API Key");// Android API KEY
Message message = new Message.Builder().addData("message", My Message).build();
Result result = null;
try {
result = sender.send(message, registered_id_1, 5);
} catch (IOException e) {
e.printStackTrace();
}
但是客户端仍会收到发送给registered_id_1
的消息
我的方法有什么问题?
答案 0 :(得分:2)
你的方法没有错。这就是GCM的行为。当设备获取给定应用的新注册ID时,之前为此设备和应用分配的旧注册ID仍然有效。如果使用旧的注册ID发送GCM消息,则会收到包含规范注册ID(其值为该设备的新注册ID)的响应。当您收到此类回复时,您应该从服务器的数据库中删除旧的注册ID。
或者您可以更好地处理它,如果取消注册旧的注册ID,您也会通知您的服务器,这将删除旧的注册ID,并且永远不会尝试再次向其发送消息。