Я работаю над примером проекта с Google DialogFlow.Я продвинулся довольно далеко, и сейчас я работаю над выполнением заказов.Я написал некоторые базовые выполнения, но когда я пытаюсь выполнить намерение, которое пытается связаться с другим сервисом, я получаю следующую ошибку в консоли Firebase: name must be a string to req.get
.Со следом стека, который указывает на первое intentMap.set
ниже.Я не уверен, что здесь происходит, любая помощь, указывающая мне правильное направление, была бы признательна.
// See https://github.com/dialogflow/dialogflow-fulfillment-nodejs
// for Dialogflow fulfillment library docs, samples, and to report issues
'use strict';
const https = require('https');
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
const request = require('request-promise-native');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
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 welcome(agent) {
agent.add(`test1`);
var options = {
'uri': 'https://api.com/path',
headers: {
'User-Agent': 'Request-Promise'
},
'json': true
};
return request.get(options).then(response => {
agent.add('My response');
}).catch (error => {
agent.add('My error');
});
}
function fallback(agent) {
agent.add(`I didn't understand!`);
agent.add(`I'm sorry, can you try again?`);
}
// Run the proper function handler based on the matched Dialogflow intent name
let intentMap = new Map();
intentMap.set('Check Hacker News', welcome);
intentMap.set('Default Fallback Intent', fallback);
agent.handleRequest(intentMap);
});