-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotimize_echo.py
62 lines (55 loc) · 2.13 KB
/
botimize_echo.py
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
61
62
import os
import sys
import json
import requests
from botimize import Botimize
from flask import Flask, request
app = Flask(__name__)
Botimize_Api_Key = 'Your_Botimize_Api_Key'
FACEBOOK_ACCESS_TOKEN = 'Your_Facebook_Access_Token'
botimize = Botimize(Botimize_Api_Key, 'facebook')
@app.route('/', methods=['GET'])
def verify():
if request.args.get("hub.mode") == "subscribe" and request.args.get("hub.challenge"):
if not request.args.get("hub.verify_token") == os.environ["testbot_verify_token"]:
return "Verification token mismatch", 403
return request.args["hub.challenge"], 200
return "Hello world", 200
@app.route('/', methods=['POST'])
def webhook():
data = request.get_json() # receive the message from facebook
botimize.log_incoming(data) # send incoming message to botimize
if data["object"] == "page":
for entry in data["entry"]:
for messaging_event in entry["messaging"]:
if messaging_event.get("message") and messaging_event["message"].get("text"):
message_text = messaging_event["message"]["text"]
sender_id = messaging_event["sender"]["id"]
send_message(sender_id, message_text) # send response message to facebook
data_out = {
"access_token": FACEBOOK_ACCESS_TOKEN,
"message": messaging_event["message"],
"recipient": messaging_event["sender"]
}
botimize.log_outgoing(data_out) # send outgoging message to botimize
else:
pass
return "ok", 200
def send_message(recipient_id, message_text):
params = {
"access_token": FACEBOOK_ACCESS_TOKEN
}
headers = {
"Content-Type": "application/json"
}
data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"text": message_text
}
})
r = requests.post("https://graph.facebook.com/v2.6/me/messages", params=params, headers=headers, data=data)
if __name__ == '__main__':
app.run(debug=True)