Using the Alexa Voice Service, you can develop a voice-powered UI to connected devices.
Questions tagged [alexa-voice-service]
371 questions
0
votes
2 answers
Autofilling of utterances in alexa skills generated by utterance generator tool(ex. utternance expander)
Is there any API or way to integrate the utterance generator to alexa skill developer console.
Means I want the generated utterances by generator tool to be autofilled in the alexa skills intents in develope console.
Does developer console provide…

Harshita
- 11
- 3
0
votes
1 answer
Alexa in Custom web application
Can we use Alexa SDK use AVS API services in let's say search bar of some web application, Have any one tried creating such web application? or came across such web application.
This can be considered as creating custom echosim application.

Gaurav B
- 346
- 2
- 5
0
votes
2 answers
Capture Alexa response json
I would like to capture Alexa response and do some processing outside AWS Lambda. Maybe a view I would like to create with bar charts and on update it at runtime based on Alexa response. How should I do that? I can create an independent Alexa…

Justin
- 35
- 1
- 11
0
votes
2 answers
how to get alexa skill slot value in python
I am trying to get the slot value and access it later but I am not able to get the value. Can you please help me
this is the line i am stuck with. how do i get the response the from slot and save it to the variable.
textoutput =…

venkatesh
- 39
- 1
- 5
0
votes
3 answers
alexa custom skill not working in Reverb
I have developed a custom skill, which is working well with Alexa test tool, but even after enabling the skill on Alexa app, it is not working with reverb.
PS:
I'm running skill server locally on my computer with the help of reverse proxy.
skill is…

mahendra
- 367
- 5
- 18
0
votes
0 answers
Acess token is not coming
I have linked Alexa with Google OAuth2.
For the first time I click on account linking I receive accessToken but after some time(1 0r 2 hrs) I am unable to receive.(I get only user id)
Does Amazon has provided some mechanism to generate fresh access…

Divyam Khandelwal
- 66
- 5
0
votes
1 answer
How to integrate with alexa app
I have a music application. I have built all the custom skill for my music application and it is working fine in amazon echo device. My question is how do i integrate it with alexa app. I can see spotify, pandora, saavn etc in the music section of…

Rajeev Shetty
- 1,534
- 1
- 17
- 27
0
votes
1 answer
In publishing your alexa skill what is the purpose of APP_ID
I want to publish my own skill but I'm confuse to what is
var APP_ID= //your specific APP_ID
is this code above use for accessing your app_ID so what will happen if the customer want to use my skill? are they not going to get access to my skill?…

Spaceboard
- 3
- 4
0
votes
1 answer
how to store or fetch requests given by user to alexa voice service on raspberry pi in database?
I am naive to alexa voice service.
I am trying to integrate machine learning algorithm(naive bayes) in alexa voice service sample app. To implement this algorithm i need to store all the request(voice commands given by user) which are successfully…

animesh123
- 1
- 4
0
votes
1 answer
Alexa sometimes not understanding city name
In my app, user has to tell the current city. My intent request is
{
"slots": [
{
"name": "cityName",
"type": "AMAZON.US_CITY"
}
],
"intent": "cityIntent"
}
And my utterances are
cityIntent my city is {cityName}…

Rahul Gupta
- 972
- 11
- 29
0
votes
1 answer
There was a issue with the requested skill's response when using Alexa Simulator but works with Manual JSON
I am having a few issues with my new created alexa skills.
Typing the request in the text box in Alexa Simulator always returns "There was a problem with the requested skill's response". With the output JSON bellow.
{
"body":{
…

John
- 347
- 1
- 5
- 16
0
votes
1 answer
Error: Please select a default endpoint
Going through a tutorial on Treehouse trying to create an Alexa skill using Lambda and coming up with the following error
please select and endpoint what does this mean and how do i go about solving this problem ?

CAC
- 45
- 1
- 3
- 11
0
votes
1 answer
How do I calculate the duration of alexa saying something?
is there a way to calculate how long it will take Alexa to say a certain phrase?
I would like to make Alexa read out a list of articles and be interrupted by the user, if they want to know more about the article Alexa last mentioned. Therefore I…
0
votes
1 answer
what thus the `OnIntent: function`do in Alexa?
AlexaSkill.prototype.eventHandlers = {
OnSessionStarted: function(sessionStartedRequest, session){
},
OnLaunch: function(launchRequest, session, response){
throw: "OnLaunch should be overriden by subclass";
},
OnIntent:…

Spaceboard
- 3
- 4
0
votes
1 answer
Alexa Skill using the Voice code
I wanted to add additional security to all the voice request given to Alexa after account linking. I have seen some skill app using the personal pin which they can utter to say who they are, also I see echo has this Voice code which can be used for…

lsiva
- 473
- 1
- 7
- 16