Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

validate iphone push notification token?

I've not yet implemented push notifications in my app. My understanding is that the app running on the device must request a token, then send this token to my server, and that my server must pass this token to Apple whenever I want to push a message to the device / app.

Is a requested push token specific to the app, or do all apps on the device share a token?

Is there any way for me to validate that the token the device sends to my server was indeed generated by a request within my app?

I'm concerned about a possible spoof where a rogue app could send a valid token to my server that wasn't a token my app requested. This would trick my service into sending push notifications to that device/app.

I understand this is an unlikely scenario. I'm trying to create a mechanism to verify that when my app sends information to my server I am indeed talking with an instance of my app, not some rogue client. Push notifications seem like a possible way to achieve this.

like image 248
TomSwift Avatar asked Jan 21 '23 21:01

TomSwift


1 Answers

Is a requested push token specific to the app, or do all apps on the device share a token? No the requested token is specific to your Application and each device.

Is there any way for me to validate that the token the device sends to my server was indeed generated by a request within my app? There is a service with apple in which you can query and find out if a token is "still valid", this is used for things such as when a user deletes your application and their token is invalidated, you can query the service and check if the token is still valid and if not delete it from your database...So you can also use this service to make sure any tokens given are valid...anyway if u try to push to an invalid token i suspect nothing will happen...

hope this helps

like image 89
Daniel Avatar answered Feb 05 '23 00:02

Daniel