我以node.js的身份进行了一些API调用,并检查了它在本地环境中是否正常。
所以我试图加入Dialogflow。
但是它没有任何变量。
这是错误。
错误:无法处理请求
我在下面解释我的程序。
[1]
这在我的本地节点中可以很好地工作。
它的值为['aa','bb','cc',...,'dd']
const request = require('request');
const url = "https://datos.madrid.es/portal/site/egob/menuitem.ac61933d6ee3c31cae77ae7784f1a5a0/?vgnextoid=00149033f2201410VgnVCM100000171f5a0aRCRD&format=json&file=0&filename=201132-0-museos&mgmtid=118f2fdbecc63410VgnVCM1000000b205a0aRCRD&preview=full";
function information(){
request({
url: url,
json: true
}, function (error, response, body) {
if (!error && response.statusCode === 200)
{
}
var bd = body['@graph'];
var model = [];
var i = i;
for (i = 0; i < Object.keys(bd).length; i++)
{
model[i] = bd[i].title;
}
return model;
});
}
[2]
因此,我在内联编辑器上编写了一些代码,以检查它是否适合这种值。
我在下面的代码中附加了一个函数。
当我键入“ hello”时,它会显示“ 1、2”。很好。
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
const request = require('request');
process.env.DEBUG = 'dialogflow:debug';
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function hello(agent) {
var model2 = information();
agent.add(model2);
}
function fallback(agent) {
agent.add(`I didn't understand`);
agent.add(`I'm sorry, can you try again?`);
}
let intentMap = new Map();
intentMap.set('hello', hello);
intentMap.set('Default Fallback Intent', fallback);
agent.handleRequest(intentMap);
});
function information(){
return ['1','2'];
}
[3]
最后,我尝试使用我的API调用。
但是它没有任何价值。
它也有每一个模块。
我想知道为什么在相同情况下它不起作用。
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
const request = require('request');
const url = "https://datos.madrid.es/portal/site/egob/menuitem.ac61933d6ee3c31cae77ae7784f1a5a0/?vgnextoid=00149033f2201410VgnVCM100000171f5a0aRCRD&format=json&file=0&filename=201132-0-museos&mgmtid=118f2fdbecc63410VgnVCM1000000b205a0aRCRD&preview=full";
process.env.DEBUG = 'dialogflow:debug';
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function hello(agent) {
var model2 = information();
agent.add(model2);
}
function fallback(agent) {
agent.add(`I didn't understand`);
agent.add(`I'm sorry, can you try again?`);
}
let intentMap = new Map();
intentMap.set('hello', hello);
intentMap.set('Default Fallback Intent', fallback);
agent.handleRequest(intentMap);
});
function information(){
request({
url: url,
json: true
}, function (error, response, body) {
if (!error && response.statusCode === 200)
{
}
var bd = body['@graph'];
var model = [];
var i = i;
for (i = 0; i < Object.keys(bd).length; i++)
{
model[i] = bd[i].title;
}
return model;
});
}
答案 0 :(得分:2)
您没有显示自己得到的错误,但是您尝试执行的操作可能有两个问题。
第一个是request
通过回调异步返回其信息。 dialogflow-fillfillment库要求任何执行异步操作的Intent Handler都应返回Promise。
虽然可以将其包装在Promise中,但更简单的方法是使用可以直接与Promises一起使用的request
版本,例如request-promise-native。 (例如,参见https://stackoverflow.com/a/49751176/1405634)
另一个问题是,如果您使用Dialogflow的内置代码编辑器,那么您将在Cloud Functions for Firebase上工作。默认情况下,仅允许在Google网络内部进行网络通话。为了访问外部地址,您需要确保使用的是付费计划,例如Blaze plan。但是,这里有一个免费层,足以进行开发和大多数测试,甚至还可以进行轻量级生产。
答案 1 :(得分:0)
您可以在heroku上制作一个应用程序并将其发送给它,而不是使用Google Cloud的包含代码编辑器。