Skip to content

Instantly share code, notes, and snippets.

View abhibisht89's full-sized avatar
🎯
Focusing

Abhishek Bisht abhibisht89

🎯
Focusing
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@abhibisht89
abhibisht89 / app.py
Created June 6, 2017 18:19 — forked from nikhilkumarsingh/app.py
Facebook Messenger Bot tutorial series | A basic echo bot | app.py
import os, sys
from flask import Flask, request
from pymessenger import Bot
app = Flask(__name__)
PAGE_ACCESS_TOKEN = "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
bot = Bot(PAGE_ACCESS_TOKEN)