Alexa - Python,调用远程端点时出错,返回HTTP 404:NOT FOUND

时间:2017-01-26 13:16:44

标签: python http-status-code-404 alexa ngrok alexa-slot

我正在使用带有python的flask来开发我获取维基百科数据的Alexa技能的代码。我也在使用维基百科的Python库。

每次我尝试测试我的技能服务模拟器都会出错。请帮我找到错误。

“调用远程端点时出错,返回HTTP 404:NOT FOUND”

from flask import Flask
from flask_ask import Ask, statement, question, session
import json
import requests
import time
import unidecode
import wikipedia


app = Flask(__name__)
ask = Ask(app,"/wiki_reader")

def get_wikisummary(searchitem):
    summ=wikipedia.summary(searchitem,sentences=3)
    sober=[unidecode.unidecode(summ)]
    return sober

@app.route('/')
def homepage():
    return "hi there, how ya doin?"

@ask.launch
    def start_skill():
    welcome_message='Hi, ask me about any country of the World'
    return question(welcome_message)

@ask.intent("AnswerIntent")
def answer(ans):
    summ1=get_wikisummary(ans)
    summ2=[unidecode.unidecode(summ1)]
    return statement("{}",format(summ2))

if __name__=='__main__':
    app.run(debug=True)

我正在使用ngrok来托管我的机器上当前托管在localhost上的代码。

1 个答案:

答案 0 :(得分:0)

我刚想通了我试图在一个端口上运行多个代码。这就是为什么它没有找到错误。