Questions tagged [flask-ask]

Flask-Ask is a Flask extension that makes building Alexa skills for the Amazon Echo easier and much more fun.

Flask-ask is a Flask middleware allowing to build Alexa skills much easier using the power and simplicity of Flask framework. Basic tutorial and documentation can be found on alexatutorial.com.

It can be installed through the Flask-Ask package on Pypi.

Some more basic documentation can be found on the github repo of the project.

56 questions
0
votes
1 answer

Flask-ask Flask Error when dispatching

I have a weird problem. I have done multiple Alexa Skills using the Flask Ask Framework. Today I wanted to test my new Skill but getting the following error: [2018-03-29 17:04:59,502] ERROR in app: Exception on / [POST] Traceback (most recent call…
MSJ
  • 41
  • 6
0
votes
1 answer

When i tried to run a small script it shows" No handlers could be found for logger "scenario guide""

When I tried to execute the given code, I get No handlers could be found for logger "scenario guide". I dont know what handler to use can anyone help me on it? import inspect import os from flask import Flask,render_template from flask_ask import…
0
votes
1 answer

Flask-Ask not working when using runserver pattern

Trying to add flask-Ask to an existing flask website that uses the runserver pattern where app setup done in init but app.run is called in runserver /myapp /myapp __init__.py views.py alexa_views.py runserver.py This pattern…
Bill
  • 618
  • 6
  • 15
0
votes
1 answer

400 Bad Request error on a LaunchRequest with flask-ask

I'm trying to debug a small Alexa skill that is build with the flask-ask framework. My problem is that I keep getting a 400 error on a simple LaunchRequest. The relevant intent function is this: @ASK.launch def launch(): """Welcome & ask for…
gmolau
  • 2,815
  • 1
  • 22
  • 45
0
votes
1 answer

Trouble Getting Alexa to Playback Streaming Audio

Python 3.6 and Flask-Ask I can't seem to get Alexa to stream audio for my current hobby project (http://github.com/michaeljdietz/jukebox). I can stream the audio manually through a web browser no problem with the https stream URL in my response…
Evriwon
  • 31
  • 5
0
votes
1 answer

Using global variable in Alexa Skill

I'm wondering whether it is safe to use global variables in my Alexa Skill. Here is my setup: * Python skill using flask-ask * Deployed using Zappa as aws-lambda function * Accessed over the AWS API gateway * Is an endpoint for an Alexa Skill with…
mc51
  • 1,883
  • 14
  • 28
-1
votes
1 answer

Problem in response with alexa custom skill using ngrok

I'm working on Alexa custom skill by using Alexa voice control to control raspberry gpio pins, I followed each and every steps mentioned here https://www.instructables.com/id/Control-Raspberry-Pi-GPIO-With-Amazon-Echo-and-Pyt/ but this is giving me…
Akrit Khanna
  • 189
  • 2
  • 16
-1
votes
2 answers

"There was a problem with the requested skill's response" In Alexa Developer Console

SITUATION: So i followed a 3 video short tutorial by sentdex on youtube named "Alexa Skills w/ Python and Flask-Ask" parts 1, 2 and 3. Basically when i run this skill, alexa will read me the first 10 headlines from reddit.com/ r/ worldnews (cant…
cmd
  • 3
  • 1
  • 5
-1
votes
1 answer

Not getting slot values in flask-ask from alexa skills

When ever i am calling my service from alexa i am getting None not the values of slot which i should get. i have intent schema like : { "interactionModel": { "languageModel": { "invocationName": "name_of_app", "intents": [ …
user9263987
-1
votes
1 answer

How to control my webapp with Alexa

I built an alexa skill using Python with Flask_ask, which goes to my DB and retrieves information that I need and spells it out. I am now trying to create a web UI which would have an option of asking the required question by typing it in or…
s_om
  • 661
  • 2
  • 9
  • 24
-2
votes
1 answer

Alexa Tester cant invoke the skill

I'm developing an Alexa Custom Skill. I want to have Beta Testing for the same. I added few emails to the Skill Beta Testing facility by Amazon. After accepting the invitation, it seems the Testers can't invoke the skill(They have enabled the…
Razin Tailor
  • 13
  • 1
  • 4
1 2 3
4