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

Botium-Core - Need to assert only certain parts of alexa response

Actual response in Alexa Me : Give my plan details Alexa : You've enrolled in creditlock yearly plan worth $78 .What else would you like to do? Convo file Me# : Give my plan details Bot# : You've enrolled in creditlock , plan worth $ , What else…
0
votes
0 answers

How to integrate Alexa feature in an iOS app

Am trying to implement Alexa feature in an iOS app. From the amazon developer documents, I find that it requires the access token, to send the HTTP POST requests. And I did the Login using Amazone. Now I have the access token. I don't know how to…
Vinu
  • 1
  • 1
0
votes
1 answer

Alexa Skill Flow Builder - how to dynamically update player count

How do I player a player count in Alexa skill flow Builder? Select a number of players. and then Flow Builder updates with the number of players to Ask each player a question in the game. where should I start going? is there a way for me to scale…
0
votes
1 answer

Use Alexa Voice Service, incl. Amazon Music

I doesn't have much experience with Alexa Voice Service. But i hope someone can help me in this scenario. I just used the Raspberry Example for Alexa Voice Service in the past. But this example hat the Limitation that Amazon Music was not…
Stefan Volkmer
  • 318
  • 2
  • 13
0
votes
1 answer

Botium informations are available but whats the happy path to setup up alexa skill starting point of Botium

What needs to be setup first then the second level what needs to be done . Eg : Install botium in vs code with package.json with dependencies "chai": "^4.2.0", "mocha": "^6.1.4", "botium-bindings": "^2.0.13", "botium-cli":…
0
votes
1 answer

When to alexa-smapi and alexa-avs

I need recommendations as when to use the above mentioned .Can i use both of them is it possible . Also in the botium.json's - Containermode only one of these can be mentioned how to understand what and when exactly I have to chose any one of…
0
votes
2 answers

Errors with multi turn dialog in alexa skills

I have created a skill with name "BuyDog" and its invocation name is "dog app" So that should mean, I can use the intents defined inside only after the invocation name is heard. (is that correct?) Then I have defined the Intents with slots as: "what…
0
votes
1 answer

Alexa a/c linking for multiple skills using same authorisation server URI issue

We have developed 2 skills, one Smart Home skill and one Custom skill. Both skills require a/c linking and used the same authorisation server URI. Everything works fine when we link a/c for both of them but when it refresh the access token after…
Dilip
  • 628
  • 2
  • 10
  • 23
0
votes
1 answer

How to get voice query to my app with Amazon Voice Service or Alexa

While developing an IoT device integration with Android app I'm stuck at this problem. What I wish to achieve is to talk to my app, for example, "Alexa, What is the temperature inside the cooker?". For this info to retrieve, I have an android app…
Samuel Robert
  • 10,106
  • 7
  • 39
  • 60
0
votes
1 answer

Alexa - Allow User To Add Item To Amazon Basket/Cart. Help Needed

I've posted this question on the Amazon Developer Forums but I'm not getting a response. In the meantime, I thought I'd see if any devs on here can provide any insight or advice: I’m building an Alexa skill for a client. So far we’ve added the…
0
votes
1 answer

custom skill with https endpoint is not reachable from alexa app. It returns "Sorry, i don't know about that " or "Sorry, i am not sure"

I have written skill endpoints in PHP which returns proper response in test simulator But not reachable from alexa app. My custom skill is enabled in alexa app which is shown under skill & games -> development --> myskill. How to identify the issue…
0
votes
1 answer

How can we publish updates to 10 Alexa Skills with one click?

We have more than 10 skills for dry cleaners around the U.S., and they all receive the same updates, but we have to individually publish them. How can we set up a system that allows us to submit them ALL for review at the same time? From the…
0
votes
0 answers

Alexa - Card Title and Descriptions disappear once audio starts

I am trying to play an audio in my alexa skill with standard card type. This is my json output for Alexa. { "version": "1.0", "response": { "outputSpeech": { "type": "PlainText", "text": "Your Audio will start playing now" …
Nidhin S G
  • 1,685
  • 2
  • 15
  • 45
0
votes
1 answer

SSML Confusion - Alexa Lambda

I am a complete novice to building Alexa skills. I have managed to build and send a skill live, but now want to improve it. I primarily want to change the way Alexa speaks my code... I don't understand how to implement SSML into my Node.js…
0
votes
1 answer

MP3 audio not playing in Alexa/Echo with addAudioPlayerPlayDirective

I'm trying to implement the Play functionality of the Alexa to play an mp3 file I get from an API call. I get the data back fine, and the speak directive does include the data from the API response, so I know the call worked, but the file itself…