Created
January 27, 2018 01:57
-
-
Save hackintoshrao/92f0ca042ead02db9f9ccb253cb47d64 to your computer and use it in GitHub Desktop.
Webhook server example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding:utf8 -*- | |
# !/usr/bin/env python | |
# Copyright 2017 Google Inc. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
from __future__ import print_function | |
from future.standard_library import install_aliases | |
install_aliases() | |
from urllib.parse import urlparse, urlencode | |
from urllib.request import urlopen, Request | |
from urllib.error import HTTPError | |
import json | |
import os | |
from flask import Flask | |
from flask import request | |
from flask import make_response | |
# Flask app should start in global layout | |
app = Flask(__name__) | |
@app.route('/webhook', methods=['POST']) | |
def webhook(): | |
req = request.get_json(silent=True, force=True) | |
print("Request:") | |
print(json.dumps(req, indent=4)) | |
res = processRequest(req) | |
res = json.dumps(res, indent=4) | |
print(res) | |
r = make_response(res) | |
r.headers['Content-Type'] = 'application/json' | |
return r | |
def processRequest(req): | |
res = makeWebhookResult() | |
return res | |
def makeWebhookResult(): | |
speech = "Hoot from webhook in python!!!!" | |
print("Response:") | |
print(speech) | |
return { | |
"speech": speech, | |
"displayText": speech, | |
"source": "Build conversational interface for your app in 10 minutes." | |
} | |
if __name__ == '__main__': | |
port = int(os.getenv('PORT', 5000)) | |
print("Starting app on port %d" % port) | |
app.run(debug=False, port=port, host='0.0.0.0', threaded=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment