Questions tagged [alexa-voice-service]

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

371 questions
2
votes
0 answers

In alexa video skill how to stop addVideoAppLaunchDirective ? iam playing video using addVideoAppLaunchDirective

I have an Alexa skill which plays using addVideoAppLaunchDirective(). my problem is when I stop the skill using stop intent Alexa only responds with the text which I gave, after that the video continues playing. with stop intent, I want to…
2
votes
1 answer

How to add single word invocation name alexa?

I want to add a single word invocation name for Alexa, in documentation its mentioned that a single word is allowed. One-word invocation names are not allowed, unless: The invocation name is unique to your brand/intellectual property with proof…
Akshay Bande
  • 2,491
  • 2
  • 12
  • 29
2
votes
1 answer

libcurl4-openssl-dev : Conflicts: libssl1.0-dev but 1.0.2q-2 is to be installed

So, Im trying to install Alexa in my raspberry Pi 3b+, but when I run sudo bash setup.sh config.json it just comes out with this error. I've tried installing many things, tried installing the version it shows in the error like sudo apt-get install…
skiLful
  • 41
  • 1
  • 6
2
votes
5 answers

How to test alexa custom skills on alexa app before publishing?

I have created sample skill with aws lamda functions. I have tested skills using simulator which is working fine. I want to test skills on alexa app. Can anybody mention steps to test skills on alexa app from scratch ?
2
votes
1 answer

How do I turn on the Alexa "Audio Player" interface from the serverless.yml file with the serverless framework?

I am trying to build an Alexa skill with the serverless framework for AWS. https://serverless.com Does anyone know how to turn on the Alexa "Audio Player" interface from the serverless.yml file? I can currently add intents but I can't find any…
2
votes
0 answers

How to make alexa sample app (voice service) to call/invoke custom skills?

I have created a Amazon custom skill and using this skill in the test tab, I 'm able to get the intended response in the python code and turn the led on and off. But I'm not able to make the Sample app (avs-device-sdk alexa voice application) to…
Hemant
  • 615
  • 1
  • 8
  • 21
2
votes
1 answer

Alexa Skill Lambda Node.js dynamic intents in handler

Is it possible to dynamically fill the intents in the lambda function of an alexa skill? For example: const handlers = { var intentName = this.event.request.intent.name; 'LaunchRequest': function () { this.emit(':ask', welcomeOutput,…
2
votes
0 answers

Alexa Smart Home device or skill discovery

Does Amazon provide an API that will return a list of the Smart Home skills (or devices) that are currently linked to the user's account? You can get this list and actually control the devices from the Amazon Alexa mobile app, but I was wondering if…
2
votes
1 answer

Alexa not returning SessionEndedRequest when user speaks nothing on echo show

I am using my skill for dot and show both. However, when user speaks nothing after repromt, dot is returning SessionEndedRequest, which I handled but speaking nothing. In echo spot, it is returning nothing, hence kept the session open. And I send…
2
votes
1 answer

How do I use the Alexa Voice Service device SDK in an Android app?

I have successfully built the AVS Device SDK on Android with the help of the reference guide to building Device SDK on Android that the Amazon team sent me. However, as a novice Android developer, I don't know where to go from here to actually use…
2
votes
0 answers

Is it possible to trigger the Alexa Test per url?

In your Alexa skill is a section where you can test the program. https://developer.amazon.com/alexa/console/ask/test/yourskill There you can type in a question for your skill. Is it possible to do this with a link. Like sending the link with the…
Alexander Pilz
  • 180
  • 1
  • 6
  • 16
2
votes
0 answers

Alexa Skill AudioPlayer: Console test Support poor support/bugs

I'm developing a skill to play my own music. I have troubles with AudioPlayer with the developer console test environment ( https://developer.amazon.com/alexa/console/ask/test/ ). Two questions: 1. AudioPlayer Built-in Intents doesn't run as…
2
votes
2 answers

Alexa smarthome skill routines

I need to create an Alexa smart home skill. I would like to control my lights using Alexa device. But based on my understanding, smart home skill only support utterances like this Alexa, turn on name Alexa, turn off name Alexa, set name to x…
2
votes
2 answers

How to compare two String Source and destination with fullname in nodejs

Compare two string with third-string like JSON Array full name var source = intentObj.slots.toPlazaName.value.toString(); // Jaipur var destination = intentObj.slots.fromPlazaName.value.toString(); // Kishangarh match with this "FullName":…
Sonu Kumar
  • 969
  • 1
  • 11
  • 36
2
votes
2 answers

How to dial-in some number using Alexa custom skill?

I've created custom Alexa skill (using AWS lambda function), which should do the following things: Send a message to slack channel. Dial-in hardcoded phone number. Now, I'm looking for the solution to make a call using this custom skill. Is it…