情况: 所以我在 youtube 上关注了 sentdex 的 3 个视频简短教程,名为“Alexa Skills w/ Python and Flask-Ask”第 1、2 和 3 部分。基本上,当我运行此技能时,alexa 会读给我来自 reddit 的前 10 个标题.com/r/worldnews(不幸的是,这篇文章的 URL 不能超过 8 个)。
我遇到的错误: 我按照所有步骤操作,当我在 Amazon Alexa 开发网站上对其进行测试时,我不断收到此错误消息:“请求的技能响应有问题”。我遇到的一个问题是,alexa 开发控制台几个月前已经更新并且完全不同,所以我不知道我是否做错了什么。我看过的所有 youtube 视频都是旧版本,它有不同的做事方式。我将准确概述我所做的事情,希望你们能指出我做错了什么。
我尝试了什么: 我还想提一下,我尝试用返回命令替换 get_headlines 函数的内容,该命令返回一个字符串,让 alexa 说:“它有效”。但是我在开发站点上收到了相同的错误消息。所以我猜我的代码很好,但我可能在我的 Alexa 开发帐户中配置了错误的设置。下面,我包含了我为这个简单程序所做的每一步的图片。
我已经采取的确切步骤:
1) 我已经使用 pip 安装程序安装了 flask、flask-ask 和 unidecode
2) 我下载了 ngrok 来托管我的网站
3)代码:这是我运行的代码(出于显而易见的原因取出了我的 reddit 用户名和密码)。它没有错误,主页运行良好。所以我想代码本身没有问题。
from flask import Flask, render_template
from flask_ask import Ask, statement, question, session
import json
import requests
import time
import unidecode
app = Flask(__name__)
ask = Ask(app, "/big_reader")
def get_headlines(): # DESCRIPTION: get_headlines function will grab the headlines from redit and then its going "stringify" all the headlines together
# 1) LOG INTO REDDIT API
user_pass_dict = {
'user': 'ENTER_YOUR_REDDIT_USERNAME',#'ENTER_YOUR_USERNAME',
'passwd': 'YOUR_REDDIT_PASSWORD',
'api_type': 'json'
}
# Requesting a session from api
sess = requests.Session()
sess.headers.update( {'User-Agent': 'I am testing Alexa Here'} )
sess.post('https://www.reddit.com/api/login', data=user_pass_dict)
time.sleep(1)
url = 'https://reddit.com/r/worldnews/.json?limit=10'
html = sess.get(url)
data = json.loads(html.content.decode('utf-8'))
titles = []
for listing in data['data']['children']:
titles.append( unidecode.unidecode(listing['data']['title']) )
titles = '...'.join([i for i in titles])
return titles
################################# ALEXA STUFF ###################################################################################################
@app.route('/')
def homepage():
return "This is the Homepage"
# A) ALEXA ASKS SOMETHING:
@ask.launch
def start_skill():
welcome_message = 'Sup, You want some news?'
return question(welcome_message)
# B) MY RESPONSE:
@ask.intent("YesIntent")
def share_headlines():
headlines = get_headlines()
headline_msg = 'The current world news headlines are {}'.format(headlines) #string format the headlines?
return statement(headline_msg)
@ask.intent("NoIntent")
def no_intent():
bye_text = 'bye'
return statement(bye_text)
# RUN
if __name__ == '__main__':
app.run(debug=True)
4)我如何设置我的 ALEXA 技能的图片:这里有 10 张图片,它们准确地显示了我的 alexa 开发者网页的样子
https://ibb.co/ZdMdgGF <--我是的意图
https://ibb.co/4N4JygL <-- 我的 JSON 编辑器屏幕
https://ibb.co/c2HDw8h <-- 我的界面屏幕是什么样的
https://ibb.co/BP6ck2L <--我的 ngrok 运行后的样子:ngrok http 5000
https://ibb.co/3k5J7wZ <--将我的 ngrok https 地址复制到 alexa 端点。
https://imgur.com/H6QGWoo <--我什至尝试在其末尾添加“/big_reader”。
https://ibb.co/3s3tVQH <--构建成功
https://ibb.co/wgF7GQ4 <--我尝试启动大阅读器技能并出错