I have created custom skill intent called EmergencyIntent by using the skill builder beta.
Now the problem is it's not asking Intent confirmation as I configured in skill builder.
tried like this also
why it's not asking for intent confirmation?
I have created custom skill intent called EmergencyIntent by using the skill builder beta.
Now the problem is it's not asking Intent confirmation as I configured in skill builder.
tried like this also
why it's not asking for intent confirmation?
From your comment it looks like you've resolved your issue. But, I thought I'd add that you could also check the dialog state before emitting your final response. Something like...
let dialogState = this.event.request.dialogState;
try {
if (dialogState == "STARTED" || dialogState == "IN_PROGRESS") {
this.emit(":delegate");
}
} catch(err) {
console.log("Error: " + err.message);
}