18 ms·
No, you need a push token, which is a combination of device id and app id, and is only generated when the user authorizes the app for remote notifications. Addi
by sgman 14y ago
No, you need a push token, which is a combination of device id and app id, and is only generated when the user authorizes the app for remote notifications. Additionally, you need a certificate on the server that is authorized to send messages to that app id.
- nodesocket 14y agoGood to know, thanks for the explanation.
- saurik 14y agoThe push token is static for the device installation: it is not in combination with the "app id". http://stackoverflow.com/questions/2338267/is-the-apn-device-token-unique-to-each-individual-app http://stackoverflow.com/questions/2338267/is-the-apn-device...
- erichocean 14y agoYeah, but the certificate used to push is. Effectively, it's the same result: you can only push to one app with one set of credentials, and credentials are not shared between apps.