I am trying to send push notification using deep link parameters but unfortunately it is not working for me. I'm using 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 params to my PHP code.
Can someone suggest me what I'm doing wrong with these parameters? I want to use all params of pic in my PHP code.
Finally done and parameter look likes: