forked from jackrtd/LINE-BOT-PHP-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot_puridev.php
60 lines (50 loc) · 1.93 KB
/
bot_puridev.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
$access_token = '6tS7pO00ncfJFML6WrMEMXhtYru4rMFRapvH4qzPbxFp/2cf9dK6uxzzotYxyNMV51zGDZ23dznOogrpAhxNh3z881mOnyZ5M5mZVZPsyDj52DEvuJQZCf1u67UBBgkj+zrgPiD6n8Pd+lByPRTN0wdB04t89/1O/w1cDnyilFU=';
// Get POST body content
$content = file_get_contents('php://input');
// Parse JSON
$events = json_decode($content,true);
// Validate parsed JSON date_add
if(!is_null($events['events'])){
foreach($events['events'] as $event){
if($event['type']=='message' && $event['message']['type']=='text'){
// Get text sent
$text = $event['message']['text'];
// Get reply token
$replyToken = $event['replyToken'];
// Build message to reply back
$messages = [
[
'type' => 'text',
'text' => "ดีคับ"
],
[
'type' => 'text',
'text' => "เมื่อกี้คุณ พูดว่า..".$text
],
[
'type' => 'text',
'text' => "มีอะไรเหรอครับ?"
],
];
$url = 'https://api.line.me/v2/bot/message/reply';
$data = [
'replyToken'=> $replyToken,
'messages'=>$messages
];
$post = json_encode($data);
$headers = ['Content-Type: application/json','Authorization: Bearer ' . $access_token];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$result = curl_exec($ch);
curl_close($ch);
echo $result."\r\n";
}
}
}
echo "OK";
?>