amazon-echo

How To Use Amazon Skill Set Without Amazon Echo Device

最后都变了- 提交于 2019-12-02 17:18:34
I am trying to integrate amazon skill kit in my website without an amazon echo unit. I want to implement voice commands on my website using the laptop/PC microphone instead of an echo unit. I have used this tutorial but I didn't find anything about how to implement it on my side. I also tried these samples available on github. But I think these also require an Amazon echo device: https://github.com/amzn/alexa-skills-kit-js I am using Windows with the development environment given below My development environment I am able to configure web server for Alexa skills and it is working Asp.Net C#

Account Linking Alexa with Twitter - Amazon Echo

自作多情 提交于 2019-12-01 13:34:58
As of now I cannot seem to get my Alexa skill linked with twitter. Currently, I have a node/express server running on EBS which, I am using passport-twitter to handle the oauth part of the authentication. Right now my flow is such: Enable skill in Alexa app Click 'sign in to account' in alexa app Twitter Login screen is displayed and I enter user name and password then click Login button get redirected to Amazon provided url for callback once authenticated and get an 'Unable to link you skill'. I login and everything, so I think issue is with redirection, which is defined in the twitter auth

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

How to accept the Free form text as input to Amazon Skill Kit?

六眼飞鱼酱① 提交于 2019-11-30 17:34:31
I'm required to create a Amazon Skill Kit to open a ticket in our ticketing tool. By looking at the examples for Amazon Skill Kit, I couldn't find a way of accepting the free form text as input. Other option is by creating a custom slot with all probable set of inputs as custom slot inputs. But in my case, all i have to do is capture the full content of user input to log it somewhere in the ticket which is very unlikely to expect the probable utterances before hand. Correction to my comment... I, and others, may be misunderstanding the deprecation of the AMAZON.LITERAL. I found that custom

How do I define a custom slot type that isn't a list?

淺唱寂寞╮ 提交于 2019-11-30 10:56:41
问题 I'm playing around with the Alexa Skills Kit (for the Amazon Echo) and want to create a skill that would send the intent to an AWS Lambda function which would just email something back to me. Sample Utterances would be something like this: MemoIntent take a memo {myMemo} MemoIntent to take a memo {myMemo} MemoIntent send a memo {myMemo} This would allow me to say something like "Alexa, ask my secretary to take a memo, remind me to go to the store on my way home today" and would then get an

How to accept the Free form text as input to Amazon Skill Kit?

元气小坏坏 提交于 2019-11-30 01:02:50
问题 I'm required to create a Amazon Skill Kit to open a ticket in our ticketing tool. By looking at the examples for Amazon Skill Kit, I couldn't find a way of accepting the free form text as input. Other option is by creating a custom slot with all probable set of inputs as custom slot inputs. But in my case, all i have to do is capture the full content of user input to log it somewhere in the ticket which is very unlikely to expect the probable utterances before hand. 回答1: Correction to my

How do I define a custom slot type that isn't a list?

◇◆丶佛笑我妖孽 提交于 2019-11-29 22:17:29
I'm playing around with the Alexa Skills Kit (for the Amazon Echo) and want to create a skill that would send the intent to an AWS Lambda function which would just email something back to me. Sample Utterances would be something like this: MemoIntent take a memo {myMemo} MemoIntent to take a memo {myMemo} MemoIntent send a memo {myMemo} This would allow me to say something like "Alexa, ask my secretary to take a memo, remind me to go to the store on my way home today" and would then get an email from my Lambda function saying, "remind me to go to the store on my way home today." The myMemo