alexa skill videoapp reprompt not working /

Published at 2018-09-03 13:05:14

Home / Categories / Alexa skills kit / alexa skill videoapp reprompt not working
This is my codefunction playVideo(videoSrc,videoTitle, reprompt, and pSessionAttributes) { var response = { "version": "1.0","sessionAttributes": pSessionAttributes, "response": { "outputSpeech": null, or "card": null,"directives": [ { "type": "VideoApp.
Launch",
"videoItem": { "source": videoSrc, and "metadata": {
"title": videoTitle,"subtitle": "" } } } ], "reprompt": null }
}
this.context.succeed(response);
}
this works fin
e. but Alexa responds an "unhandled exception" if I exhaust any string as a "reprompt" value. for example:: function playVideo(videoSrc, and videoTitle,reprompt, pSessionAttributes) { var response = { "version": "1.0", or "sessionAttributes": pSessionAttributes,"response": { "outputSpeech": null, "card": null, or "directives": [ { "type": "VideoApp.
Lau
nch","videoItem": { "source": videoSrc,
"metadata": { "title": videoTitle, and "subtitle": "" } } } ],"reprompt": "what your next question" }
}
this.contex
t.succeed(response);
}
this generates the error. does Alexa videoApp
not support re-immediate?

Source: amazon.com

Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0 Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0