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

How to get email as response in alexa skills

How do I take email as input from Alexa skills? I have the following code to get email input then send the email but I need to understand how to take valid email as input, if I type in test@gmail.com, somehow Alexa returns test gmail.com to my…
dealwap
  • 621
  • 2
  • 14
  • 33
0
votes
1 answer

How do I tell Alexa to prompt user for input

I need to tell alexa to prompt user for input then store that input in a variable to be used in my code. InvocationName: send mail Alexa: Tell me mail subject User: Test email Alexa: Okay, tell me message body. User: This is just a sample…
dealwap
  • 621
  • 2
  • 14
  • 33
0
votes
1 answer

xml parser problem in alexa using javascript

var xml = require('XML-Parser-master'); const fs = require('fs'); var responseString = 'html string'; var finalString=""; var xmlDoc = new xml.DOM(xml.parse(responseString)); const items…
user12820114
0
votes
0 answers

How can I create a Alexa skill that reminds you whenever an event occurs?

I'm trying to create an Alexa skill that reminds you whenever an event happens, in this case whenever a Tweet from a profile comes out which is about every 5-10 minutes. How can I do this? I looked at setting a recurring alarm, but it seems to be…
784k
  • 11
  • 1
0
votes
0 answers

Alexa is unable to connect

I am trying to connect alexa with my website. I created an Alexa skill (following the guide) that works in connecting with a website like "numbersapi" it asks the user for a number and reads the answer given by the site. This is the code: function…
Luiss.PEP
  • 17
  • 5
0
votes
0 answers

Alexa testing console doesn't ask to me

I'm working with an alexa skill, I tested it in AWS and it works but when i go to test tab to try to ask something the only result is " " what should be the problem? my skill name is "test" that has an intent called "sensor" that recive a…
user12820114
0
votes
2 answers

how to parse XML in alexa skill javascript

i'm trying to parse an XML string formed by a sequence of data of type 1233onname1548offname2.... this string from 10 to 100 object status,id and name and i'd like to…
user12820114
0
votes
1 answer

How can I get matched utterance text from Alexa request instead of intent name?

I have created one Alexa skill which I want to communicate with my chatbot. When I am asking question to Alexa, in request only intent name is coming.But I want the utterance text also. Is it possible to get that utterance? "request": { …
0
votes
1 answer

Is there any way to add company info to Alexa service and use it without invocation name?

do you know maybe how to add info about our company to Alexa voice service? Cause now I have a skill with lambda and so on, and to ask about company I have to install the skill on Alexa device, then start the skill and the ask what I want... But…
0
votes
1 answer

Can an Alexa skill keep the microphone always on?

I have been a C/C# developer for many years but haven't written any Alexa apps. I would like to write a skill to listen for baby babble (NOT WORDS) and respond in different ways. I would like my Alexa skill to keep the microphone ALWAYS on (similar…
Denis
  • 11,796
  • 16
  • 88
  • 150
0
votes
2 answers

Alexa Trivia Skill - Quiz

I was trying to make a Trivia Quiz. In general it is working fine, but the quiz doesn't recognize the answer and doesn't count the score correctly. I don't know where to find the mistake in the code and how to change it. I used this instruction and…
0
votes
1 answer

Use beautifulsoup4 in Alexa developer console

I need beautifulsoup4 to scrape through a websites HTML and get information. I want to use that information in my Alexa-skill. How do I import/use bs4 in my Alexa developer console? I've already read how to make a deployment package…
0
votes
1 answer

CloudWatch Logs not showing up anymore after switching from Alexa-hosted to custom skill

Since I switched from building an Alexa hosted skill to building a custom skill using the ASK SDK no logs are showing up in my CloudWatch interface. Before I could simply click on Code > Logs: Amazon CloudWatch and were presented with the logs of…
Jan Kreischer
  • 679
  • 3
  • 8
  • 21
0
votes
1 answer

Unable to execute intents in Alexa Skills

For some reason I am unable to execute a few of my intents in my Alexa skill. Here is the flow of discussion as it is. 'open my passwords' Alexa: what is your passphrase? 'my passphrase is test' Alexa: You're in. 'what is my wifi…
Matt Croak
  • 2,788
  • 2
  • 17
  • 35
0
votes
1 answer

Alexa check if a new session was started by accessing session.new

This is the data that is being send by alexa to my skills backend. In the backend code I would like to test if the session is new or not and based on this information I would like to produce a different output. I try to access the session.new, but I…
Jan Kreischer
  • 679
  • 3
  • 8
  • 21