Nick
Nick
I am unable to reproduce the error you're facing even with replicating your Default Welcome Intent. Are there any other logs like the request header/body when this happens, which may...
I am not encountering this error when trying this on my own example project.
Is your event emitter performing any asynchronous tasks? If you make the intent return a promise of some sort, that may make the flow work the way you intended.
The documentation for media responses are available in the [Responses](https://developers.google.com/actions/assistant/responses#media_responses) page. > Audio for playback must be in a correctly formatted .mp3 file. Live streaming is not supported. > The...
It should be the same as the SSML requirements. I think by "correctly formatted" it means that it can be played in most places and doesn't use some obscure encoding....
One thing that needs to be considered is that recent version of google-auth-library require Node version 8.10+. This library has Node 6 as a minimum dependency. A breaking change to...
Thanks for filing this PR. It seems like the same mistake [is made in @assistant/conversation](https://actions-on-google.github.io/assistant-conversation-nodejs/3.2.0/classes/_conversation_conv_.conversationv3.html) which I can patch.
Travis is failing because of #407.
@Canain the original issue is a bit outdated, but the spirit of the issue applies. If I have an intent handler: ``` app.intent('Default Welcome Intent', conv => { conv.ask(`User language...
Are you defining the follow-up entirely in the Dialogflow console? Does `conv.data` also get lost?