Questions tagged [alexa-voice-service]

Using the Alexa Voice Service, you can develop a voice-powered UI to connected devices.

371 questions
0
votes
1 answer

How to play back to back mp3 in alexa?

https://www.amazon.com/dp/B07GB24XSZ/?tag=stackoverflow17-20 I want to play song one after one. Now I am able to play one mp3 at a time, but I want to play 10 mp3 one after one. PlayMusicIntent': function() { const songArr = data; …
Rajneesh071
  • 30,846
  • 15
  • 61
  • 74
0
votes
1 answer

URL for sending back JSON response when Alexa skill is hosted as a web service

I have a skill (currently in development phase) hosted in AWS. I want to move it to a local machine instead of using lambda function. I have written an API, exposed it with ngrok publicly and configured it as an endpoint to the skill. I am able to…
aniztar
  • 2,443
  • 4
  • 18
  • 24
0
votes
1 answer

how to design mobile card in alexa

I have developed an app and it is functioning properly, however when it comes to designing, i am unable to achieve what is given in the example despite of doing the same code in the example. I want to achieve this design where image is in the center…
0
votes
1 answer

How to fire fallbackIntent even if user's dialogue fall into some other intent

I am developing an app and everything is working good. One condition are there where I have set the utterances but if user is speaking something else, I am throwing it to the fallbackIntent. One of my utterance is {name} so user can speak any name.…
0
votes
1 answer

Alexa: Can we access the actual voice input by the user inside the lambda function?

Is it possible to access the text (converted from voice) spoken by the user? Is there a switch somewhere, which if enabled, the text is sent to the skill?
aniztar
  • 2,443
  • 4
  • 18
  • 24
0
votes
1 answer

How to get Alexa device IP address and linked account complete details in Alexa skill to process some request?

Can we get IP address of my Alexa device using node.js to process some business logic? I have read some blog but they saying it is personal information so it is not accessible. But some skills available which gives IP address So how it is…
0
votes
0 answers

Alexa add to favourites

Am working on a skill with content and i would like to have an option that user can add something to their favourite list and ask Alexa to send an email with all favourites including links. (what is the best way to to this) Each item has a link to a…
0
votes
2 answers

Is it possible to get current geo location of alexa device?

Can we get current geo location of my alexa device? I have search on google but most saying we can get address of linked account using address API. But I have to get data based on geo location. Is it possible to get current geo location of my alexa…
0
votes
1 answer

Receiving alexa input on my mobile

I am making a mobile app for a college project that will feature some games. I was thinking on how can I make it a better, and I thought of using my amazon echo that has been collecting dust since I bought it :D I had an idea of saying something…
0
votes
1 answer

Simple Alexa Audioplayer Directives Using Node.js

I'm having a problem finding simple examples that handle Alexa audioplayer events using node.js. So far, I've only been able to get the play directive to work using the following: this.response.audioPlayerPlay('REPLACE_ALL', 'URL', 0); …
0
votes
1 answer

Can we change to Alexa's own context and back from custom skill?

When I say Alexa, tell me a joke, it will do so. But say I am in between of a custom skill interaction, and I say Alexa tell me a joke, it will not give me a response as it is not handled in my custom skill. I would like Alexa to handle responses…
AkshayM
  • 1,421
  • 10
  • 21
0
votes
0 answers

Alexa impossible to retrieve slot.value

I have two questions if I may. But let me first put you in the context: I have Intent1 with slot channel. If I try to retrieve channel.value then it works just fine. I have Intent2 with slot RadioNumber. If I try to retrieve RadioNumber.value then…
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69
0
votes
1 answer

Alexa - By canFulfillntentRequest, Can I launch custom intent without asking the name of skill?

By implementing the "canFulfillIntentRequest", Can I launch my custom intent without asking the name of skill while it is already playing an audio? like instead of saying: "Alexa, ask to get me the latest on China" can I…
Anand Dev Singh
  • 107
  • 1
  • 3
  • 11
0
votes
0 answers

Cannot find module 'ask-sdk' AND Unable to import module 'index' when packaged with Alexa CLI

Why is my skill not working? It was made with the Alexa CLI, but I get multiple errors in cloudwatch: "errorMessage": "Cannot find module 'ask-sdk'", "errorType": "Error", "stackTrace": [ "Object. (/var/task/index.js:6:15)", …
0
votes
2 answers

Can i program an Alexa skill to have a start and stop command?

I'm very new to Alexa and am not sure if what I'd like to do is possible. Is there a way to create a skill that functions as a start/stop timer? Ex: "Alexa start recording" and end with Ex: "Alexa end recording". Further, is there a way I can map…