Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ltman.eemo.co.kr
/
public_html
/
www
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ltman.eemo.co.kr/public_html/www/test_push.php
<? function send_notification($tokens, $message) { $url = 'https://fcm.googleapis.com/fcm/send'; $fields = array( 'registration_ids' => $tokens, 'data' => $message ); $key = "AIzaSyCG6QsJex8nT-CVCMaDQL7vKxclJl3_XwI"; $headers = array( 'Authorization:key =' . $key, '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_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields)); $response = curl_exec($ch); echo $response; curl_close($ch); $json=json_decode($response,true); //NotRegistered = 앱삭제 if($json["success"]) { return "success"; } else { return $response; } } $tokens = array(); $tokens[]="fUhiIz0xHVw:APA91bFxcN9YiiDY3hgEuQJzawP8BaYLQ-icwk0Tlz0li10V3hfYIyXBwlnxjeYdA4jwe2K36TZQqj2HEimDhuB-EP1D_cSEul2CltZYu8V2HiC1HWfKAxJ9BJelscp74OgVkge-Tg7Y"; $message = array("message" => "테스트","title" => "알람발생","mode" => "warning","sound" => "1","tts" => "테스트 테스트 테스트","istts" => "1"); $rst=send_notification($tokens, $message); ?>