GIF89a php
Current File : /home/hencockfreshchic/public_html/app_old/send_notification.php
<?php
function sendNotification(){
    $url ="https://fcm.googleapis.com/fcm/send";

    $fields=array(
        "to"=>$_REQUEST['token'],
        "notification"=>array(
            "body"=>$_REQUEST['message'],
            "title"=>$_REQUEST['title'],
            "icon"=>$_REQUEST['icon'],
            "click_action"=>"https://google.com"
        )
    );

    $headers=array(
        'Authorization: key=AAAAxJhk_CA:APA91bF_enScf93mcemJKEQDd76TtTbX3c3q5ucqUAD9B83nhzPOgxvmpelhdgNe-XrAI69CdNdnmEqNHoy41SzTYypdp10ZsGmxHcPwjpxDzRO0AwU9_HiIeDIhZJA9nPFqcXoPIufT',
        'Content-Type:application/json'
    );

    $ch=curl_init();
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_POST,true);
    curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
    curl_setopt($ch,CURLOPT_POSTFIELDS,json_encode($fields));
    $result=curl_exec($ch);
    print_r($result);
    curl_close($ch);
}
sendNotification();