我正在尝试将实现与Webhook结合使用以将JSON返回给Dialogflow,以在Google Assistant中显示卡片。我直接从这里获得JSON: https://developers.google.com/actions/conversation-api-playground
但是,该卡未显示在Google Assistant Simulator中。 模拟器有一个名为“ Response”的选项卡,我可以看到json响应。 错误标签中没有错误。
答案 0 :(得分:0)
您是否在基本卡上添加了字幕?这可能是这里的问题。
conv.ask(new BasicCard({
text: 'This is the Text',
title: 'Title',
subtitle: "This is a subtitle",
buttons: new Button({
title: 'Read More',
url: 'https://assistant.google.com/',
}),
image: new Image({
url: 'https://storage.googleapis.com/actionsresources/logo_assistant_2x_64dp.png',
alt: 'Image alternate text',
}),
}));
请进行这些更改,然后重试。