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

I have a Amazon's Echo Dot, and I have several Echo devices too, i want to differentiate them

​I'm using Amazon's Echo Dot, and I have several Echo devices. I want to identity that, from which echo dot invokes a request, is it possible to find whether which, echo dot makes request, with any unique identity?
0
votes
1 answer

Delete Alexa History

Is there any way to access alexa history for a particular app form within that app(or lambda) programatically? For e.g If I have library app and want to ensure alexa identifies my request history and tells me which book I already ordered/read…
0
votes
0 answers

Alexa video skill, lambda function is not getting triggered

I have my videos hosted on my server. I have created a video skill to play those videos on fire TV using alexa video skill API. However, my lambda function is not getting triggered when I say "Alexa, play ". Is there anything else that needs to be…
0
votes
0 answers

java.lang.NullPointerException: Attempt to invoke virtual method 'okhttp3.ConnectionPool okhttp3.OkHttpClient.connectionPool()

I am trying to integrate the amozon alexa. I have implemented like below code. private CountDownTimer pingTimer = new CountDownTimer(30000, 3000) { @Override public void onTick(long millisUntilFinished) { try { …
AngelJanniee
  • 613
  • 1
  • 11
  • 30
0
votes
1 answer

What is advantage in using alexa-sdk for alexa skill development?

Am new to Amazon alexa skill development and able to see alexa-sdk node modules is available for development. But not able to find more detail in documentation. Do i need to proceed the development with alexa-sdk or with out alexa-sdk.? could any…
0
votes
0 answers

Error https request android <20

I'm trying to develop an app to communicate with amazon alexa using OKhttp3. Everything was working fine while I was trying the app on an android API 26. But once I started using an android API 19 every request to https://avs-alexa-na.amazon.com/…
0
votes
1 answer

How do I test reprompt message with echosim.io simulator?

I am new to Alexa, is there any way to test reprompt text using any simulator like echosim.io Alexa doesn't reprompt back to me after taking my voice input once.
0
votes
1 answer

i want to send receive and receive data from Alexa lambda node JS

Alexa should ask for use strict'; const Alexa = require('alexa-sdk'); exports.handler = (event, context) => { const alexa = Alexa.handler(event, context); var APP_ID = "amzn1.ask.skill.[XXXXX-45cc-9558-3c284b72148f]"; …
user5336403
0
votes
1 answer

Processing Custom Alexa Skill Cards in AVS-SDK

I am building some simple custom skills with card like this: this.response.cardRenderer(skillName,textCard); this.emit(':responseReady'); I have AVS SDK installed on a Raspberry Pi, but I can't see where the card info ends up. The service simulator…
pip
  • 75
  • 5
0
votes
1 answer

Alexa not responding for when i created skill from skill buidler

I have created custom skill intent called EmergencyIntent by using the skill builder beta. Now the problem is it's not asking Intent confirmation as I configured in skill builder. tried like this also why it's not asking for intent…
user5336403
0
votes
2 answers

how to receive more than 65535 bytes of data on http2 connection from AVS?

I have implemented an application in C language which communicates with Amazon AVS cloud using nghttp2 and openssl. I can get a response up to 65535 bytes only. If a response is greater than 65535 bytes than application can't receive the rest data…
0
votes
0 answers

Custom Alexa Skill Overlapping with Native Echo Alarm

I have developed a custom alexa skill which works fine except for the following case : Set an alarm for say 4:30 PM Invoke the Skill at 4:29 and start the conversation with my custom skill While alexa is conversing with the user , the alarm…
0
votes
1 answer

I am not seeing dialogState in Alexa's event in AWS lambda logs, for a multiturn dialog?

I created an intent with slots in Alexa. This triggers an AWS lambda written in Python. I am logging the 'event'. I expect event['request']['dialogState'] to be present but it is not. Am I missing something? Event: {u'session': {u'application':…
Sharad
  • 9,282
  • 3
  • 19
  • 36
0
votes
1 answer

Error promise after publish data to MQTT broker in My Alexa Lambda node js

I have problem with my Lambda, actually in promise nodejs. I have wrote code like this in my Lambda: 'use strict' const Alexa = require('alexa-sdk'); const mqtt = require('mqtt'); const APP_ID = undefined; const WELCOME_MESSAGE = 'Welcome to the…
0
votes
2 answers

How to create a Multi-Language Alexa Skill using Java?

I'm quite new to VUI and Alexa. I developed a good working Skill for Alexa Voice Services. Now I want to add a second language. I've found a tutorial in the develop documation, but I'm using Eclipse and Java to create my Lambda function like this…