ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
Code : https://goo.gl/Ngyw9f
ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
Code : https://goo.gl/Ngyw9f
ส่งภาพด้วย PHP Line Notify ส่งไลน์กลุ่ม แจ้งเตือน ผ่านเว็บด้วย PHP
Reviewed by IOffer
on
มีนาคม 02, 2560
Rating:
2 ความคิดเห็น:
มีโค้ดอยู่ไหม
//line Send
$chOne = curl_init();
curl_setopt( $chOne, CURLOPT_URL, "https://notify-api.line.me/api/notify");
// SSL USE
curl_setopt( $chOne, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt( $chOne, CURLOPT_SSL_VERIFYPEER, 0);
//POST
curl_setopt( $chOne, CURLOPT_POST, 1);
// Message
//curl_setopt( $chOne, CURLOPT_POSTFIELDS, "message=?????");
//????????????? ?????? 2 parameter imageThumbnail ???imageFullsize
curl_setopt( $chOne, CURLOPT_POSTFIELDS, "message=$mms");
// follow redirects
curl_setopt( $chOne, CURLOPT_FOLLOWLOCATION, 1);
//ADD header array
$headers = array( 'Content-type: application/x-www-form-urlencoded', 'Authorization: Bearer '.$linktokennotify.'', );
curl_setopt($chOne, CURLOPT_HTTPHEADER, $headers);
//RETURN
curl_setopt( $chOne, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec( $chOne );
//Check error
if(curl_error($chOne)) { echo 'error:' . curl_error($chOne); }
else { $result_ = json_decode($result, true);
echo "status : ".$result_['status']; echo "message : ". $result_['message']; }
//Close connect
curl_close( $chOne );
//End
แสดงความคิดเห็น