I’ve checked through other questions and responses here at StackOverflow but couldn’t see something exactly like this; I would like to be able to push a token via APNS. The purpose of this is to verify that a subsequent user request to a restful web service comes from an iPhone device and not from a non-iPhone source (it’s trivial to change HTTP headers to fake looking like an iPhone request).
Couple of questions:
- Is it permissible under Apple Guidelines to insist that push notifications be enabled ?
- Is it possible to send a SILENT push notification carrying some small text payload?
- Does anyone know if this would pass Apple’s scrutiny or run afoul of their guidelines
Many thanks.
However, I do not personally think this use case does cleverly fit the push use case at all. You will have to many edge case to make it reliable enough (delivery delay and non garantee of delivery, etc)
It is easier to have other mechanisms in place (like secret + signature in the URL by the app).