alexa-skill

Alexa Skills Set SDK - increase timeout of skill

╄→гoц情女王★ 提交于 2019-12-01 14:03:28
I am building an Alexa instructional exercise skill using the Alexa Skill Set SDK on nodejs. I am saving each cooking step to the DB, therefore if the skill times out, the user can reopen the skill and continue where they left off. Problem is that users are annoyed that they have to keeping reopening the skill, people work at different speeds, is it possible to keep the skill open or increase the time out whilst I wait for the user to complete the step and then say "Alexa, next step"? I tried increasing the lambda timeout, it made no difference. I have been trying to do this for quite awhile.

Alexa Skills Set SDK - increase timeout of skill

久未见 提交于 2019-12-01 11:36:36
问题 I am building an Alexa instructional exercise skill using the Alexa Skill Set SDK on nodejs. I am saving each cooking step to the DB, therefore if the skill times out, the user can reopen the skill and continue where they left off. Problem is that users are annoyed that they have to keeping reopening the skill, people work at different speeds, is it possible to keep the skill open or increase the time out whilst I wait for the user to complete the step and then say "Alexa, next step"? I tried

How to give input to Amazon Alexa Skills Kit (ASK) mixed string with numbers?

ぃ、小莉子 提交于 2019-12-01 05:59:14
I'm trying to create a Amazon Alexa Skills Kit to do some kind of automation which would be required to take speech input comprised of strings and numbers ( a-test12fish ). When I've used custom slots in Alexa Skills Kit, it is not letting me key in strings with numbers. When I try to key in ask alexa, dangerZone find a-test12fish , I'm getting the following error: Error: Invalid text input. Text should begin with alphabets and should only contain alphabets, whitespaces, periods or apostrophes How can I overcome this error? Here's a solution. You probably don't want to complete this in the

How to give input to Amazon Alexa Skills Kit (ASK) mixed string with numbers?

江枫思渺然 提交于 2019-12-01 02:59:51
问题 I'm trying to create a Amazon Alexa Skills Kit to do some kind of automation which would be required to take speech input comprised of strings and numbers ( a-test12fish ). When I've used custom slots in Alexa Skills Kit, it is not letting me key in strings with numbers. When I try to key in ask alexa, dangerZone find a-test12fish , I'm getting the following error: Error: Invalid text input. Text should begin with alphabets and should only contain alphabets, whitespaces, periods or

Alexa skill kit vs Alexa Voice Service

瘦欲@ 提交于 2019-11-30 19:32:10
I'm working on an Alexa skill (for Echo), and i've looked into Alexa skill kit from the very start. Now, i'm confused about Alexa Voice Service. i've read documentation on Amazon, but cannot understand it in a better way. Please guide about What's AVS? And how is it related to Alexa skills? The Alexa Skill Kit is for creating skills that specifically run on the Amazon Echo or any other device that contains Alexa. The Alexa Voice Service allows you to add Alexa's voice control to any product that has a microphone and speaker. To Read more about Alexa Voice Service check out this link: https:/

Alexa Skill not recognized when tested on Echo

爱⌒轻易说出口 提交于 2019-11-30 18:02:40
I was doing one of the tutorials (HelloWorld) to make a skill for the Echo and I followed the directions. When I tested the skill using the Service Simulator, I typed in Alexa, tell Greeter to say hello and that returned the following JSON response: { "version": "1.0", "response": { "outputSpeech": { "type": "PlainText", "text": "Hello World!" }, "card": { "content": "Hello World!", "title": "Greeter", "type": "Simple" }, "shouldEndSession": true }, "sessionAttributes": {} } I think that is the correct output. However, when I tried testing the skill on my Echo, Alexa replies "Sorry, I didn't

Adding session attributes in Python for Alexa skills

送分小仙女□ 提交于 2019-11-30 16:10:24
I have 3 slots ( account , dollar_value , recipient_first ) within my intent schema for an Alexa skill and I want to save whatever slots are provided by the speaker in the session Attributes. I am using the following methods to set session attributes: def create_dollar_value_attribute(dollar_value): return {"dollar_value": dollar_value} def create_account_attribute(account): return {"account": account} def create_recipient_first_attribute(recipient_first): return {"recipient_first": recipient_first} However, as you may guess, if I want to save more than one slot as data in sessionAttributes ,

Login with Amazon says user has not consented, but they have - Alexa SMAPI

故事扮演 提交于 2019-11-30 15:57:14
问题 I'm trying to retrieve a list of skills on my Alexa developer account using the Skill Management API (SMAPI). I have the following HTML/javascript: <BODY> <a href id="LoginWithAmazon"> <img border="0" alt="Login with Amazon" src="https://images-na.ssl-images-amazon.com/images/G/01/lwa/btnLWA_gry_312x64.png" width="156" height="32" /> </a> <div id="amazon-root"></div> <script type="text/javascript"> var client_id = "<client id>"; window.onAmazonLoginReady = function() { amazon.Login

Login with Amazon says user has not consented, but they have - Alexa SMAPI

我是研究僧i 提交于 2019-11-30 14:39:11
I'm trying to retrieve a list of skills on my Alexa developer account using the Skill Management API (SMAPI). I have the following HTML/javascript: <BODY> <a href id="LoginWithAmazon"> <img border="0" alt="Login with Amazon" src="https://images-na.ssl-images-amazon.com/images/G/01/lwa/btnLWA_gry_312x64.png" width="156" height="32" /> </a> <div id="amazon-root"></div> <script type="text/javascript"> var client_id = "<client id>"; window.onAmazonLoginReady = function() { amazon.Login.setClientId(client_id); }; (function(d) { var a = d.createElement('script'); a.type = 'text/javascript'; a.async

Alexa skill kit vs Alexa Voice Service

我是研究僧i 提交于 2019-11-30 04:21:34
问题 I'm working on an Alexa skill (for Echo), and i've looked into Alexa skill kit from the very start. Now, i'm confused about Alexa Voice Service. i've read documentation on Amazon, but cannot understand it in a better way. Please guide about What's AVS? And how is it related to Alexa skills? 回答1: The Alexa Skill Kit is for creating skills that specifically run on the Amazon Echo or any other device that contains Alexa. The Alexa Voice Service allows you to add Alexa's voice control to any