Friday, 16 June 2023

PHP CODE ส่งการแจ้งเตือนเข้า LINE

 PHP CODE ส่งการแจ้งเตือนเข้า LINEใช้งานฟรีhttp://103.13.231.227/line/line.php?token=(token)&mes=(ข้อความ)&tel=(เบอร์โทรศัพท์)<?php$token = $_GET['token'];$mes = $_GET['mes'];$tel = $_GET['tel'];$line_api = "https://notify-api.line.me/api/notify";$data = array(  'message' => $mes,  'stickerPackageId' => 1, // (ตัวอย่าง) ID แพ็กเกจสติกเกอร์  'stickerId' => 1, // (ตัวอย่าง) ID สติกเกอร์  'notificationDisabled' => true, // ไม่แสดงการแจ้งเตือนในไลน์แอป);$query = http_build_query($data);$header = array(  "Content-Type: application/x-www-form-urlencoded",  "Authorization:...