我有一个实现的 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 应用程序运行时得到的结果
模拟器和手机都没有显示卡片。我在这里遗漏了一些明显的东西吗?