tospichai
Posted on May 22, 2021
Posted on May 22, 2021
Line Notify คือ บริการที่ LINE ให้เราส่งข้อความ หรือแจ้งเตือนอัตโนมัติ ไม่ว่าจะส่งเข้าผ่าน Group หรือบัญชีส่วนตัว ผ่าน API ของ LINE โดยตรง
นี้คือ function หลักที่ใช้ในการส่งข้อความ
function notify_message($message){
$LINE_API = "https://notify-api.line.me/api/notify";
$LINE_TOKEN = "ใส่ Line_Token ตรงนี้";
$queryData = array('message' => $message);
$queryData = http_build_query($queryData,'','&');
$headerOptions = array(
'http'=>array(
'method'=>'POST',
'header'=> "Content-Type: application/x-www-form-urlencoded\r\n"
."Authorization: Bearer ".$LINE_TOKEN."\r\n"
."Content-Length: ".strlen($queryData)."\r\n",
'content' => $queryData
)
);
$context = stream_context_create($headerOptions);
$result = file_get_contents($LINE_API,FALSE,$context);
$res = json_decode($result);
return $res;
}
notify_message("ข้อความที่ต้องการ");
ตั้งค่าชื่อเป็น test ส่งแบบ 1-on-1 และ notify_message(“เทส Line Notify”);
Hey! 👋 I'm a Back-End Developer.
I graduated with a bachelor's degree in Finance from Kasetsart university.
I created a blog to share my knowledge with everyone.
In the future I will let everyone share their knowledge on my blog.
Thailand, Bangkok
workBack-End Web Developer
joinedMay 22, 2021