Page 1 of 1

Tiggzi Push msg format

Posted: Wed Feb 13, 2013 7:35 pm
by Emmz

What is the Tiggzi pushed message format sent to registered push device...?
From the tiggzi send push message. you type one in and its sent.
Works great! But I'm trying to send from my server using common php script.
It works but message is always null. So your using formatting in the msg string I'm assuming..
I'm not referring to the API key or the device token. Just the message format.
Thanks


Tiggzi Push msg format

Posted: Wed Feb 13, 2013 7:44 pm
by Emmz

LOL!!
Nevermind. I found it...
its "alert" !
For others... use this for your php
code
$fields = array(
'registration_ids' => $registrationIDs,
'data' => array( "alert" => $message ),
);
/code