如何同时使用Dialogflow和Google Actions库中的IMAGE函数

时间:2019-02-26 22:04:01

标签: dialogflow actions-on-google

我正在使用实现内联编辑器。我的代理人同时使用Dialogflow和Google Actions的功能。我已经使用了Dialogflow的成功图像功能,但是我还需要将Google动作库的图像用于另一个。该怎么做?

    // DialogFlow functions
const { WebhookClient, Card, Image, Suggestion } = require('dialogflow-fulfillment');
// Import the Dialogflow module from the Actions on Google client library.
// https://github.com/actions-on-google/actions-on-google-nodejs
const {dialogflow, Suggestions, BasicCard, MediaObject, SimpleResponse, Table, Button, List} = require('actions-on-google');

最简单的解决方案是将IMAGE函数添加到Google Actions-on-Google函数中:

const {dialogflow, [...], Image, List} = require('actions-on-google');

但是不幸的是,由于模棱两可,这当然是不可能的。如何解决呢?

0 个答案:

没有答案