Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

does GCM delete the old registration id if user installs app again immediately after uninstall?

I came to know that GCM marks registration id for deletion when it is unable to send the next push notification.

But in my case following situation happened to my user.

Scenario :

1)My user installed the app and his device is registered with GCM.

2)Same user uninstalled and installed the app again immediately. Second time a new registration id is generated.

3)These two registration ids are stored in my database.

4)Now this particular user is getting two push notifications.

Now I have the following questions :

Questions :

  1. Will GCM deletes the old registration id after some time?
  2. Please suggest me how to handle this situation?
like image 627
Pradeep Charan Avatar asked Aug 04 '15 20:08

Pradeep Charan


1 Answers

From the official documentation:

How uninstalled client app unregistration works

A client app can be automatically unregistered after it is uninstalled. However, this process does not happen immediately. What happens in this scenario is:

  1. The end user uninstalls the client app.
  2. The app server sends a message to GCM connection server.
  3. The GCM connection server sends the message to the GCM client on the device.
  4. The GCM client on the device receives the message and detects that the client app has been uninstalled; the detection details depend on the platform on which the client app is running.
  5. The GCM client on the device informs the GCM connection server that the client app was uninstalled.
  6. The GCM connection server marks the registration token for deletion.
  7. The app server sends a message to GCM.
  8. The GCM returns a NotRegistered error message to the app server.
  9. The app server should delete the registration token.

Note that it might take a while for the registration token to be completely removed from GCM. Thus it is possible that messages sent during step 7 above get a valid message ID as a response, even though the message will not be delivered to the client app. Eventually, the registration token will be removed and the server will get a NotRegistered error, without any further action being required from the app server.

However, it can apparently happen that you still get the notification for the old registration ID, as users state in other questions:

  • App receives duplicate notification using GCM after reinstalling
  • Android GCM and multiple tokens
  • https://stackoverflow.com/questions/27845298/gcm-deleting-app-and-reinstalling-multiple-notifications
  • Unregistering and re-registering for GCM messages causes two regId's to be valid. Is this as intended?
  • Do old GCM tokens live on even after an uninstall?

For this problem, there is a functionality called "canonical IDs":

Canonical IDs

If a bug in the client app triggers multiple registrations for the same device, it can be hard to reconcile state and the client app might end up with duplicate messages.

Implementing canonical IDs can help you more easily recover from these situations. A canonical registration ID is the registration token of the last registration requested by the client app. This is the ID that the server should use when sending messages to the device.

If you try to send a message using an old registration token, GCM will process the request as usual, but it will include the canonical ID in the registration_id field of the response. Make sure to replace the registration token stored in your server with this canonical ID, as eventually the old registration token will stop working.

like image 71
Baris Akar Avatar answered Oct 30 '22 11:10

Baris Akar