I am trying to send Push Notification to all my test flight users. However, i don't know how i have to proceed. I followed the raywenderlich tutorial (here)
in the php file :
// Put your device token here (without spaces):
$deviceToken = 'e606c132727582dab8b280a01cb3c6498141f1e8b4ce61f66b47xxxxxxxxxxxx';
// Put your private key's passphrase here:
$passphrase = 'xxxxxxxx';
// Put your alert message here:
$message = 'My first push notification!';
you need to put the device token. Then how i can get all device token register to put in this file ? I would like try this :
$deviceToken = getAllToken()
with getAllToken() return an array with all deviceToken registered with testFlight
I hope it's clear :)
Thanks !