This issue started this morning (21 June 2019) affecting ALL our dialogflow agents. Previously they have been working fine, though we had observed this behaviour occasionally over the past month, but found it difficult to reproduce.
Now we can reliably reproduce it and it has hammered all our voice work.
Our webhook returns a piece of json like this to trigger an event to move the user to the next intent:
"followupEventInput": {
"name": "Textbox",
"languageCode": "en-AU"
}
The problem is that if we use events more than twice after the initial trigger, the user is just given a message "Sorry, I can't help" and the Agent is forcibly closed.
Example conversation:
"Talk to Foobar Toys"
"Welcome to Foobar Toys. How can I help you?" (Start app)
"I'd like to know about Lego"
"Do you want to know about Technic, or Star Wars lego?" (Invocation started)
"Technic"
"Are you interested in sets or minifigs?" (Interaction 1)
"sets"
"What kind of sets?" (Interaction 2)
"cars"
"Sorry, I can't help." (Failure after interaction 2.)
This is very similar behaviour to as if we were using a default fallback intent all the time, but we aren't.
The interactions are all intents triggered by events.
If we DO happen to trigger a fallback intent or help text, the counter resets and we can keep going until we next hit this.
A LOT of our workflows involve more than 2 interactions. So this is a pretty big deal. Any advice appreciated. I've spent a day or two trying to work out a scenario in which this doesn't happen for us with no luck at all.