Results 656 comments of Eric Blade

I don't think there's any way to affect the AVS response via the skill interface. The directives received back from SpeechRecognizer are how to handle interaction with the user (play...

Yea, it doesn't seem like using the available APIs that there's a real good path to being able to implement building new device experiences. Now, I haven't really looked too...

@Shagans982 I suspect we will probably see some things along the lines of this for supporting Echo Show. In the meantime, I have implemented a cloud service that devices connect...

hmm.. what i use is ```` response.linkAccount(); throw new Error('Account Not Linked'); ```` then my error handler looks like: ```` app.error = (exception, request, response) => { const msg =...

yeah.. it might make more sense if i threw the error, then responded in the error handler with both actions, instead of doing one of the actions above, then throwing...

I thought we added the confirmation stuff with the conversation stuff right after the directives On Jun 30, 2017 10:55 AM, "Daniel Doubrovkine (dB.) @dblockdotorg" < [email protected]> wrote: > Doesn't...

I guess "we" (i mean the people that aren't me that are contributing with more than conversation right now :) ) did the confirmation before the dialog. https://github.com/alexa-js/alexa-app/commit/b4e110647d167f06d56269186298d2d66bdd7f8c #248

So, I haven't worked with the feature yet, *but* the basics of it seem to indicate that it provides you a way to get the Alexa service to prompt (with...

I haven't tried to do anything with this in React, but my gut feel is that you're going to need useLayoutEffect() at the very least. maybe that'll get it going?

Ok, so, i'm thinking about it a little bit right now.. and.. I think that you're actually closer to correct than you think. Somewhere in your React app, probably in...