Reputation: 989
When I view my Azure Notification Hub's device registry, it has a column called Expiration Date. My question is, what happens to the registry after the expiration date? Do clients get notified that their notification hub registry will expire and will need to register with GCM and notification hub again in order to receive future notifications?
Upvotes: 1
Views: 845
Reputation: 25070
GCM will NOT automatically make device to refresh the token. In other words, If your app at the device does not up and running nor being updated until the expiration date, the push message will not be delivered.
Similar discussion can be found at here: Do GCM registration id's expire?
In the view of Azure Notification Hub, Azure also does not have mechanism to make token refresh forcefully, but you can make a worker role to list them up and re-register by sending push message to target devices.
For that, related post can be found at here: Azure Notification Hubs registration time to live (90 days limit)
Upvotes: 2