forked from Fernando23296/f8project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
54 lines (40 loc) · 1.86 KB
/
app.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
import random
from flask import Flask, request
from pymessenger.bot import Bot
app = Flask(__name__)
ACCESS_TOKEN = 'EAAFFZC3XDrDQBAAKoYdzNn7ZAbddS7T4ZCeRrNlNLP7vFmRniHkU7ikYy01sqRAMRQZABpRm7piQUNs24ifMXbjug1XZB9BYn8ZBpW0T80bsY8BoSVyNzRbbeiZBwZBCVg6Xyt7DkHtjpkEaZCUQLnZAu6ci3BLBM5kklUPwT3UsbuMAZDZD'
VERIFY_TOKEN = 'f8hackathon2019'
bot = Bot(ACCESS_TOKEN)
@app.route("/", methods=['GET', 'POST'])
def receive_message():
if request.method == 'GET':
"""Before allowing people to message your bot, Facebook has implemented a verify token
that confirms all requests that your bot receives came from Facebook."""
token_sent = request.args.get("hub.verify_token")
return verify_fb_token(token_sent)
else:
output = request.get_json()
for event in output['entry']:
messaging = event['messaging']
for message in messaging:
if message.get('message'):
recipient_id = message['sender']['id']
if message['message'].get('text'):
response_sent_text = get_message()
send_message(recipient_id, response_sent_text)
if message['message'].get('attachments'):
response_sent_nontext = get_message()
send_message(recipient_id, response_sent_nontext)
return "Message Processed"
def verify_fb_token(token_sent):
if token_sent == VERIFY_TOKEN:
return request.args.get("hub.challenge")
return 'Invalid verification token'
def get_message():
sample_responses = ["You are stunning!", "We're proud of you.", "Keep on being you!", "We're greatful to know you :)"]
return random.choice(sample_responses)
def send_message(recipient_id, response):
bot.send_text_message(recipient_id, response)
return "success"
if __name__ == "__main__":
app.run(debug=True)