1

除了谷歌助手应用程序之外,我所有的集成都使用静态默认响应而不是我在服务器上托管的自定义实现进行响应。我已经检查了从对话流到我的服务器的请求和响应 json,它们很好......当我从 Skype 发出请求时,来自我的服务器的响应确实有自定义的履行消息,但是 Skype 显示我写的 Skype 的静态响应我的意图的默认短信选项卡。请让我知道我需要做什么。谢谢

预期通过(Skype)进行的对话用户:一些英语单词代理(来自 Fulfillment):英语,这是针对英语的响应

我得到的实际对话:用户:英语代理中的一些单词(来自对话流静态文本响应):你好..我是来自Skype的默认响应

请注意,这只发生在 facebook messenger、skype(这些是我启用的唯一集成)中,而不是在 dialogflow 模拟器和谷歌模拟器上的操作中。

我认为这个问题来自对话流结束,因为 facebook messenger 和 skype 产生相同的行为

    const express = require('express')
const bodyParser = require('body-parser')
const {dialogflow,
  Permission,
Suggestions,
Carousel,
BrowseCarouselItem,
BrowseCarousel,
Image,}= require('actions-on-google')

const request = require('request')
const dialogflowapp = dialogflow()
const app = express()
app.use(bodyParser.json())
app.set('port', (process.env.PORT || 5000))



const LANGUAGE_INTENT = 'Languages';
const LANGUAGE_TYPE_ENTITY = 'LanguageType';
dialogflowapp.intent(LANGUAGE_INTENT, (conv) => {
     const quote_type = conv.parameters[LANGUAGE_TYPE_ENTITY].toLowerCase();
     if (quote_type === "telugu") {
     conv.ask("Telugu, This response is for telugu");
     } else if (quote_type === "english") {
     conv.ask("English, this is response is for english");
     } else if (quote_type === "hindi") {
     conv.ask("Hindi, this response is for Hindi");
     } else {
         conv.ask("Cann't understand bro");
     }
});
dialogflowapp.catch((conv, error) => {
  console.error(error);
  conv.ask('Something went wrong!');
});


app.post('/webhook',(req,res, next)=>{
  console.log(req.body);
  next();
}, dialogflowapp);

app.listen(app.get('port'), function () {
  console.log('* Webhook service is listening on port:' + app.get('port'))
4

1 回答 1

0

问题是您正在使用 actions-on-google 库来实现,它只会创建在 Google Assistant 上有效的结果。

如果要发回对其他 Dialogflow 集成有效的回复,则需要使用dialogflow-fulfillment库。

于 2019-01-09T10:56:12.880 回答