@Josh: I for one cannot see any custom data in iOS pushes. My payload is arranged like this (PHP):
[php]
$body[“aps”] = array(
“sound” => “default”,
“alert” => $message,
“custom” => array(
“hello” => “Hello”,
),
);
$body[“world”] = “World”; // Suggested by some forum posting, but does not work either
[/php]
The notification arrives on iPhone like this:
[lua]notification = {
type = “remote”,
name = “notification”,
custom = {
},
sound = “default”,
alert = “This is your wake-up call”,
applicationState = “inactive”, – doesn’t work for active state either
}[/lua]
PS! Looking forward to the notification fix in the next build. [import]uid: 73434 topic_id: 31525 reply_id: 136435[/import]