Reputation: 459
Suppose that case when the client app has re-registered with the gcm itself but the server is unaware of this and now the server is sending notification to that particular client what I want is the notification should not be sent with the old registration id. How can this be done?
Upvotes: 0
Views: 163
Reputation: 37778
If your server sends a message to an invalid Registration token, it will probably receive a NotRegistered
error response. You should handle this error accordingly by removing the corresponding token. As per the documentaion I linked above:
For all these cases, remove this registration token from the app server and stop using it to send messages.
Upvotes: 0