我的python webhook没有给我结果

时间:2018-04-05 21:46:11

标签: python json flask webhooks dialogflow

我一直在努力尝试编辑最初用于天气API的webhook,以便与邮政编码/邮政编码API一起使用。原始文件位于:https://github.com/dialogflow/fulfillment-webhook-weather-python/blob/master/app.py 我无法理解我的不同之处,我认为当我用引号替换urlencode时我已经解决了它,但唉,这还不够。 问题不太可能与在postcodeValue()中收集邮政编码的源json请求有关。当您将其输入浏览器并且呈现非常简单时,api url会正确显示。 https://api.getaddress.io/find/SW11%201th?api-key=I98umgPiu02GEMmHdmfg3w12959 它的格式是否正确?也许我需要将它转换为更多JSON然后它已经是。这个问题基本上是一天的脑溢流,我希望有人可以救我。

from __future__ import print_function
from future.standard_library import install_aliases
install_aliases()

from urllib.parse import urlparse, urlencode, quote
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__)

#this line is just naming conventions I reckon with a reference to expect to receive data as POST
@app.route('/webhook', methods=['POST'])
def webhook():
    req = request.get_json(silent=True, force=True)

#who knows where this is getting printed
    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):

    if req.get("result").get("action") != "yahooWeatherForecast":
        return {}
    baseurl = "https://api.getaddress.io/find/"
    apikey = "?api-key=I98umgPiu02GEMmHdmfg3w12959"
    yql_query = postcodeValue(req)
    if yql_query is None:
        return {}
    #this line is the actual api request    
    yql_url = baseurl + quote(yql_query) + apikey
    result = urlopen(yql_url).read()
    data = json.loads(result)
    res = makeWebhookResult(data)
    return res

    #this function extracts an individual parameter and turns it into a string
def postcodeValue(req):
    result = req.get("result")
    parameters = result.get("parameters")
    postcode = parameters.get("postcode")
    if postcode is None:
        return None

    return postcode

#def housenoValue(req):
  #  result = req.get("result")
    #parameters = result.get("parameters")
    #houseno = parameters.get("houseno")
    #if houseno is None:
      #  return None
    #return houseno

def makeWebhookResult(data):
    longitude = data.get("longitude")
    if longitude is None: 
        return {}

#def makeWebhookResult(data):
#    query = data.get('query')
#    if query is None:
#        return {}

#    result = query.get('results')
#    if result is None:
#        return {}

#    channel = result.get('channel')
#    if channel is None:
#        return {}

#    item = channel.get('item')
#    location = channel.get('location')
#    units = channel.get('units')
#    if (location is None) or (item is None) or (units is None):
#        return {}

#    condition = item.get('condition')
#    if condition is None:
#        return {}

    # print(json.dumps(item, indent=4))

    speech = "Sausage face " + longitude

    print("Response:")
    print(speech)

    return {
        "speech": speech,
        "displayText": speech,
        # "data": data,
        # "contextOut": [],
        "source": "apiai-weather-webhook-sample"
    }

#More flask specific stuff
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')

1 个答案:

答案 0 :(得分:0)

以下是您的代码的清洁版本:

from urllib.request import urlopen
import os
from flask import Flask

app = Flask(__name__)

@app.route('/webhook', methods=['GET'])
def webhook():
    res = processRequest()
    return res


def processRequest():
try:
    result = urlopen("https://api.getaddress.io/find/SW11%201th?api-key=I98umgPiu02GEMmHdmfg3w12959").read()
    return result
except:
    return "Error fetching data"

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')

打开浏览器并转到http://localhost:5000/webhook,您会看到回复。

相关问题