我创建了一个自定义的Golang服务器来处理Dialogflow的实现。我希望履行服务器告诉Dialogflow(它将在Google主页上运行编译版本)在一段时间不活动后终止我的操作。在当前的架构中这可能吗?
答案 0 :(得分:1)
要标记动作的结束并关闭它,您可以为expectUserResponse
字段返回false
,例如:
{
"payload": {
"google": {
"expectUserResponse": false,
"richResponse": {
"items": [
{
"simpleResponse": {
"textToSpeech": "Goodbye!"
}
}
]
}
}
}
}