i have integrated one-signal in my web application, notifications are working fine but if considering web page title in push notification title.
i need to set it custom title in my push notification.
i need to set custom message in place of "Dashboard"
Here is my code:
$content = array(
"en" => 'Hello Hii..!!'
);
$fields = array(
'app_id' => 'APP_ID',
'include_player_ids' => ['ids'],
'data' => array("foo" => "bar"),
'url' => 'URL',
'contents' => $content
);
$fields = json_encode($fields);
//print("\nJSON sent:\n");
//print($fields);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://onesignal.com/api/v1/notifications");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json; charset=utf-8',
'Authorization: Basic AuthorizationKey';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
return $response;