I am trying to send a push notification using deep link options, but unfortunately it does not work for me. I use PHP and curl, and my code is:
$params = array("audience"=> "all", "notification" => array("alert" => "Push notification from PHP", "actions" => array("app_defined" => array("^+t" => "sec:147", "content" => "http://www.url.com"))), "device_types" => array("android"));
$x = executeCurl('/push/', 'POST', $params);
print_r($x);
Actually, I want to parse these parameters in my PHP code.

Can someone tell me what I'm doing wrong with these parameters? I want to use all pic parameters in my PHP code.
source
share