【发布时间】:2023-03-23 08:47:01
【问题描述】:
我有一个用于实现的 webhook。 下面是响应的代码
let result_obj = {
"fulfillmentText": "This is a text response",
"fulfillmentMessages": [
{
"text": {
"text": [
"this is test"
]
}
},
{
"card": {
"title": "card title",
"subtitle": "card text",
"imageUri": "https://assistant.google.com/static/images/molecule/Molecule-Formation-stop.png",
"buttons": [
{
"text": "button text",
"postback": "https://assistant.google.com/"
}
]
}
}
]
}
以下是对话流 GUI 的结果
以下是我从模拟器或 Android 手机上的 Google Assistant 应用程序运行时得到的结果
模拟器和手机都没有显示卡片。我在这里遗漏了一些明显的东西吗?
【问题讨论】:
标签: dialogflow-es google-home google-assist-api