|
|
|
สอบถามผู้รู้หน่อย ครับ เรื่อง line notify ส่ง ไป มากกว่า 1 กลุ่ม หรือ 2กลุ่ม up |
|
|
|
|
|
|
|
Code
Generating token
1 account / 1 user or group
เมื่อหาวิธี gen แบบ multiple tokens ได้แล้ว ก็เข้าลูปเอาเลยครับ
Code (PHP 5.4+)
<?php
// ส่งไป 100 groups
$tokens = ["token1", "token2", "token3", ..., "token100"];
$str = "Message posted by Line Notify";
$res = [];
foreach ($tokens as $token) {
$res[] = notify_message($str, $token);
}
print_r($res); // ดู content ถ้าส่งสำเร็จ
function notify_message($message, $token) {
$queryData = ['message' => $message];
$queryData = http_build_query($queryData, '', '&');
$headerOptions = [
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/x-www-form-urlencoded\r\n"
."Authorization: Bearer ".$token."\r\n"
."Content-Length: ".strlen($queryData)."\r\n",
'content' => $queryData
],
];
$context = stream_context_create($headerOptions);
$result = file_get_contents("https://notify-api.line.me/api/notify", FALSE, $context);
$res = json_decode($result);
return $res;
}
?>
คำเตือน แค่ตัวอย่างจากการมโน ยังไม่ทดสอบ
|
|
|
|
|
Date :
2020-04-30 18:32:49 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจ่ม...
รอบนี้ซื้อหวยถูกด้วย
|
|
|
|
|
Date :
2020-05-01 15:18:13 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|