Skip to content

Instantly share code, notes, and snippets.

@mrtopf
Last active April 24, 2016 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrtopf/e8604b71ac9e54370628eafa45f9b160 to your computer and use it in GitHub Desktop.
Save mrtopf/e8604b71ac9e54370628eafa45f9b160 to your computer and use it in GitHub Desktop.
Test-Script für den Messenger-Bot-Server
from flask import Flask
from flask import request
app = Flask(__name__)
@app.route('/testbot', methods=["GET"])
def confirm():
return 'Hello World!'
if __name__ == '__main__':
app.debug = True
app.run(port = 8888)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment