alexa

How to extend built-in slot type with additional values in Alexa?

送分小仙女□ 提交于 2020-01-25 02:19:07
问题 Actually, I have used AMAZON.DATE which is Alexa built-in slot. Now I want to add 'daily' value in that slot. So can anyone tell me how to extend Alexa built-in slots, like how to add additional values in the built-in slot? Please give an example. You can see I have user AMAZON.DATE in my set reminder intent in image 1 In image 2 you can see built-in slot type but I do not get any option to add any additional values. So please help me to achieve this. 回答1: According to documentation you can

Why does connection get closed when using DirectLine v3 Client (Microsoft Bot Connector)

浪子不回头ぞ 提交于 2020-01-25 00:28:07
问题 I have setup a custom service to connect my Alexa Skill with my Chatbot via DirectLine. Last thursday everything worked fine and I was able to send messages to my Bot by using Alexa (Developer Test tool) and also received responses from my Chatbot. Now I wanted to continue my development but everytime i want to start my conversation I get this exception: An existing connection was forcibly closed by the remote host In short my code looks like this: var client = new DirectLineClient(

How to Integrate Alexa Voice Service to Custom Android App

笑着哭i 提交于 2020-01-23 09:45:11
问题 I am planning to develop an Android App with Alexa Voice Service integration to develop an app like Reverb. Below is what I have tried... Checked AVS Device SDK, could get a proper guide to implement it in Android. Checked https://github.com/willblaschko/AlexaAndroid , wasnt able to get it work. Planned to implement myself, below is what I have done. a. Integrated Login framework, was able to successfully login and get the token. b. Created a sound recorder, was able to record and playback

Does / can Alexa replace its generated UserId for a linked user?

旧时模样 提交于 2020-01-22 02:25:51
问题 We have an application utilizing Alexa skill with account linking for user details. According to Alexa's account linking documentation: Our skill is set up for Account Linking which in turn refers to a 3rd party (or it could be internal) Identity Management System (IMS) for user authentication. Our application (as well as our organization) does NOT internally maintain the app's user identities. Let's say the user enabled our skill on her device, at which point (according to the above docs)

No response from any other intent request except Launch request

偶尔善良 提交于 2020-01-22 02:24:07
问题 I'm new to Alexa skill creation. I tried to create a skill for my term project in college and am trying to finish it. I've finally got the Lambda and interaction model communicating and am now testing the skill in the tool. I'm finding 2 issues. 1) The invocation name is sending me the unhandled response back, and 2) None of the intents outside of the launch intent are sending any response back. The Lambda code is as below: "use strict"; var Alexa = require("alexa-sdk"); var handlers = {

“Alexa, open Mighty Righty” - works /// “Alexa, ask Mighty Righty who is right, me or my husband” doesn't work (hmm, I don't know that one)

社会主义新天地 提交于 2020-01-21 16:44:30
问题 My published skill can be invoked by "Alexa, open Mighty Righty," but it won't work if a user says "Alexa, ask Mighty Righty who is right, me or my husband," how to do that? https://www.amazon.com/dp/B07SGBR24G/ This is the link to the working published skill. #------------------------------Part1-------------------------------- # In this part we define a list that contains the player names, and # a dictionary with player biographies Player_LIST = ["me or my wife", "me or my husband", "me or

“Alexa, open Mighty Righty” - works /// “Alexa, ask Mighty Righty who is right, me or my husband” doesn't work (hmm, I don't know that one)

南楼画角 提交于 2020-01-21 16:43:47
问题 My published skill can be invoked by "Alexa, open Mighty Righty," but it won't work if a user says "Alexa, ask Mighty Righty who is right, me or my husband," how to do that? https://www.amazon.com/dp/B07SGBR24G/ This is the link to the working published skill. #------------------------------Part1-------------------------------- # In this part we define a list that contains the player names, and # a dictionary with player biographies Player_LIST = ["me or my wife", "me or my husband", "me or

“Alexa, open Mighty Righty” - works /// “Alexa, ask Mighty Righty who is right, me or my husband” doesn't work (hmm, I don't know that one)

时间秒杀一切 提交于 2020-01-21 16:43:13
问题 My published skill can be invoked by "Alexa, open Mighty Righty," but it won't work if a user says "Alexa, ask Mighty Righty who is right, me or my husband," how to do that? https://www.amazon.com/dp/B07SGBR24G/ This is the link to the working published skill. #------------------------------Part1-------------------------------- # In this part we define a list that contains the player names, and # a dictionary with player biographies Player_LIST = ["me or my wife", "me or my husband", "me or

Echo Spot record video using inbuilt camera - Custom skill

冷暖自知 提交于 2020-01-16 02:02:32
问题 I have a requirement to record video using Amazon device. Currently, I have the Echo spot device and tried to find some way from which I can open the camera and start recording until I give the command to stop, using the custom skill. But didn't get the success. What I have gone through till now is: Alexa.CameraStreamController Interface By which I can handle the camera and Alexa.MediaMetadata Interface to handle recorded videos. But couldn't find anything useful. Can I use an inbuilt camera

学习vue.js

大憨熊 提交于 2020-01-10 07:38:23
每个 Vue 应用都需要通过实例化 Vue 来实现。 语法格式如下: var vm = new Vue({ // 选项 }) 接下来让我们通过实例来看下 Vue 构造器中需要哪些内容: 实例 site : {{site}} url : {{url}} {{details()}} 可以看到在 Vue 构造器中有一个el 参数,它是 DOM 元素中的 id。在上面实例中 id 为 vue_det,在 div 元素中: 这意味着我们接下来的改动全部在以上指定的 div 内,div 外部不受影响。 接下来我们看看如何定义数据对象。 data 用于定义属性,实例中有三个属性分别为:site、url、alexa。 methods 用于定义的函数,可以通过 return 来返回函数值。 {{ }} 用于输出对象属性和函数返回值。 site : {{site}} url : {{url}} {{details()}} 当一个 Vue 实例被创建时,它向 Vue 的响应式系统中加入了其 data 对象中能找到的所有的属性。当这些属性的值发生改变时,html 视图将也会产生相应的变化。 实例 site : {{site}} url : {{url}} Alexa : {{alexa}} // ……反之亦然 data.alexa = 1234 document.write(vm.alexa) //