Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to force your iOS push notification deviceToken to change?

Apples docs are a bit vague on when a device's deviceToken can change. It pays to code defensively, and to test that code.

I've written my app so that at startup it registers for push notifications and handles the didRegisterForRemoteNotificationsWithDeviceToken callback.

My didRegisterForRemoteNotificationsWithDeviceToken saves the last device token to user defaults, and if the token is still the same, it moves on. If it doesn't have a saved token at all, or if the tokens don't match, it uploads the new token our server.

I also have a mechanism that lets me name my test devices with human-readable names like "4s_1" "5s_1" "5s_2", etc. I have a server command line tool that takes the human-readable device name, looks up the device's 'identifierForVendor' from that, and then looks up the device token using the identifier. It then triggers a sandbox notification.

It seems that deleting the app and reinstalling it causes the 'identifierForVendor' to change, but not the deviceToken, which is exactly the opposite of what I'd like to have happen for testing. I want some value that never changes to uniquely identify a test device, and away to change the device token so I can test my code.

EDIT: Since writing this I've changed the app to generate it's own UUID and save that to the keychain as suggested by Wain in his answer.

Is there a way to force Apple's APNs to change a device's token so I can test out my code (both client side and server side) for handling the case where the token changes?

like image 510
Duncan C Avatar asked Nov 16 '15 15:11

Duncan C


People also ask

How do I change push notifications on iOS?

Go to Settings and tap Notifications. Select an app under Notification Style. Under Alerts, choose the alert style that you want. If you turn on Allow Notifications, you can choose when you want the notifications to be delivered — immediately or in the scheduled notification summary.

Does push token change?

Push tokens can expire when an app is updated, when users transfer their data to a new device, or when they re-install an operating system.


2 Answers

I don't believe so.

If you want a single unique identifier then you should create one explicitly and store it in the keychain, then you can store the device name and all other details against this so you have a single point of truth.

Any identifier you stored in the keychain would survive until it was explicitly removed or the device was restored from a backup without that keychain content.

like image 133
Wain Avatar answered Oct 28 '22 10:10

Wain


I'm not sure if this approach also resets the token, but you may try to reset the permission:

Resetting the Push Notifications Permissions Alert on iOS The first time a push-enabled app registers for push notifications, iOS asks the user if they wish to receive notifications for that app. Once the user has responded to this alert it is not presented again unless the device is restored or the app has been uninstalled for at least a day.

If you want to simulate a first-time run of your app, you can leave the app uninstalled for a day. You can achieve the latter without actually waiting a day by following these steps:

Delete your app from the device. Turn the device off completely and turn it back on. Go to Settings > General > Date & Time and set the date ahead a day or more. Turn the device off completely again and turn it back on.

Regarding the change of device identifiers: You could install a second application on your test devices (a blank one from the same issuer). If you reinstall your actual app, the identifierForVendor shouldn't change.

like image 39
tilo Avatar answered Oct 28 '22 09:10

tilo