Skip to content

Commit aaeb9a1

Browse files
committedSep 24, 2017
Initial Setup
0 parents  commit aaeb9a1

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed
 

‎chatbot.php

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?php
2+
3+
$access_token="xxxxx";
4+
5+
$verify_token = "xxxxx";
6+
7+
$hub_verify_token = null;
8+
9+
$wordList_greeting = array("hi", "hii", "hello", "hey");
10+
11+
if(isset($_REQUEST['hub_challenge'])) {
12+
$challenge = $_REQUEST['hub_challenge'];
13+
$hub_verify_token = $_REQUEST['hub_verify_token'];
14+
}
15+
16+
if ($hub_verify_token === $verify_token) {
17+
echo $challenge;
18+
}
19+
20+
$input = json_decode(file_get_contents('php://input'), true);
21+
22+
$sender = $input['entry'][0]['messaging'][0]['sender']['id'];
23+
$message = $input['entry'][0]['messaging'][0]['message']['text'];
24+
$message = strtolower($message);
25+
if ($message) {
26+
if (in_array($message, $wordList_greeting)) {
27+
$message_Response = 'Hi! Welcome to my page';
28+
}
29+
}
30+
else
31+
{
32+
$message_Response = "Hey I'm just a ChatBot. Wait for a real human to reply!";
33+
}
34+
//API Url
35+
$url = 'https://graph.facebook.com/v2.6/me/messages?access_token='.$access_token;
36+
37+
38+
//Initiate cURL.
39+
$ch = curl_init($url);
40+
//JSON DATA
41+
$jsonData = '{
42+
"recipient":{
43+
"id":"'.$sender.'"
44+
},
45+
"message":{
46+
"text":"'.$message_Response.'",
47+
}
48+
}';
49+
50+
//Encode the array into JSON.
51+
$jsonDataEncoded = $jsonData;
52+
53+
//Tell cURL that we want to send a POST request.
54+
curl_setopt($ch, CURLOPT_POST, 1);
55+
56+
//Attach our encoded JSON string to the POST fields.
57+
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
58+
59+
//Set the content type to application/json
60+
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
61+
//curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
62+
63+
//Execute the request
64+
if(!empty($message)){
65+
$result = curl_exec($ch);
66+
}
67+
curl_close($ch);
68+
?>

0 commit comments

Comments
 (0)
Please sign in to comment.