Questions tagged [alexa]

Alexa is a voice service developed by Amazon, made popular by the Amazon Echo and the Amazon Echo Dot devices developed by Amazon Lab126.

From Wikipedia:

Alexa is a voice service developed by Amazon, made popular by the Amazon Echo and the Amazon Echo Dot devices developed by Amazon Lab126. Out of the box, it is capable of voice interaction, music playback, making to-do lists, setting alarms, streaming podcasts, playing audiobooks, and providing weather, traffic, and other real time information, such as news. Developers can expand on the experiences supported by Alexa powered devices by developing "skills". Alexa can also control several smart devices using itself as a home automation system.

Interaction and communication with Alexa is available in English (US), English (CA), English (UK), English (AU), English (IN), French (CA), French (FR), Spanish (ES), Spanish (MX), Spanish (US), Portuguese (BR), German (DE), Italian (IT), Japanese (JP), and Hindi (IN)

2451 questions
0
votes
1 answer

Philips Hue Alexa Skill Authorization

I'm creating an Alexa Skill to control my Philips Hue lights. Everything works as expected, however the token expires after a couple of weeks and Alexa does not refresh the token. I am assuming this is because the Alexa skill setup only takes one…
ragurney
  • 424
  • 5
  • 16
0
votes
1 answer

Alexa Skill with cheerio

Hello I'm trying to use cheerio in a Alexa Skill to get data from website and add in skill. The code of intent const HelloWorldIntentHandler = { canHandle(handlerInput) { return Alexa.getRequestType(handlerInput.requestEnvelope) ===…
Alejo Ribes
  • 1,405
  • 2
  • 10
  • 12
0
votes
1 answer

how could i identify that alexa notification is being seen(heard) by the user?

I want to push notifications to my Alexa Device until the recent notification is seen by the user. If the user has seen the notification I should stop sending it. If the customer hasn't seen my recent notification I should keep on sending the…
Prabhu Anand
  • 530
  • 4
  • 10
0
votes
2 answers

Alexa skill testing error: Error handled: Cannot read property 'value' of undefined

Please help me if any body resolved the issue and below is my lambda funciton code. when i comment all funcitons in exports.handler funciton and execute/test single function it is working but if we enable all funcitons then i am getting the error as…
Raj
  • 1
  • 2
0
votes
1 answer

Connecting to external Mysql database from AWS lambda (back end of Alexa skill) returns "Access denied for user" message

I am writing an Alexa lambda function in Javascript to connect to my external database. I have successfully accessed that database with the same username and password. I have uploaded the mysql code from the noded_modules folder on my laptop. …
scrayne
  • 701
  • 7
  • 18
0
votes
1 answer

Using a variable to look for a value. JSON Alexa skill

Hi im making a simple Alexa skill that asks for a monster name and tells you the speed I ask the user for a monster name, the user's monster name then is stored in: handlerInput.requestEnvelope.request.intent.slots.name.value and I save it to…
P R R S
  • 39
  • 6
0
votes
1 answer

Using Alexa to query a database

How to query a database using ASK ? I want something like "Hey, Alexa get me the ID numbers of cars whose color is Red and type is Convertible" It should hit my database and get all the corresponding records. Is talking to database using Alexa…
Vai
  • 343
  • 3
  • 17
0
votes
1 answer

get dynamic data from the slot ? not added resolutionsPerAuthority's dynamic element in the list

I am trying to get dynamic data from the slot As per documentation and my basic test I am sending directive from launch request as like : {'version': '1.0', 'response': {'outputSpeech': {'type': 'SSML', 'ssml': ' Hi, welcome to developement…
0
votes
1 answer

Custom alexa skill does not recognize dynamic date values

I have built a skill using Python which will fetch me values from an external API. I speak the month name, which is also the slot value, and based on the month name it will get me something. It works well if I speak the name of the month. But if I…
Vai
  • 343
  • 3
  • 17
0
votes
2 answers

Continuous Integration using a virtual Alexa device?

Has anyone had any success with creating their own virtual Alexa device, for the purposes of continuous testing? I've used bespoken.io in the past, however my trial has expired so I've started to look at creating my own since I'm able to host the…
jewkesy
  • 85
  • 2
  • 10
0
votes
1 answer

Alexa custom slot is unidentified (Only for incorrect slot words)

Slot values are: campfire, city, beach and my utterance is: {enviro} mood if i say: campfire mood -> everything works. if i say: peanuts mood -> I don't get any value for that slot (see pic below) Any idea what might be causing this? The skill is…
0
votes
1 answer

having issues with/How to connect to MQTT broker in lambda function for alexa skill

The immediate issue I am trying to overcome is that my aws-lambda function is not connecting to my broke using the js MQTT library. I am able to use this library in a local node environment to connect, just not in the aws-lambda function. I have…
Jordan Klaers
  • 149
  • 11
0
votes
2 answers

How to call Alexa intent from external python code and alexa device to announce

Here is my requirement. External program will get some signals from subprograms each min or specific intervals. I want that external program to call Alexa and pass this information who connect with this skill set should hear automatically this…
Vijay .D.R
  • 11
  • 3
0
votes
1 answer

How to import feedparser as external package in Alexa-host custom skill

I am trying to import and use feedparser in Alexa hosted python skill. It works fine before I write import feedparser but as soon I add import feedparser it says: There was a problem with the requested skill's response
Aqib Farid
  • 128
  • 1
  • 4
  • 14
0
votes
1 answer

Simple Alexa Skill Reading a txt File

I m sorry for my English. I need an alexa skill that reads the contents of a txt file. I think the best solution is to have the file on S3, but I can't find any guide on how to access the file and let alexa read it. I'm trying in various ways for…
Luiss.PEP
  • 17
  • 5
1 2 3
99
100