Code Monkey home page Code Monkey logo

Comments (5)

khajam30 avatar khajam30 commented on June 12, 2024

Can anybody please help, why "botkit-middleware-dialogflow": "^2.0.4" doesnt work

from cf-nodejs-logging-support.

nicklas-dohrn avatar nicklas-dohrn commented on June 12, 2024

Dear khajam,
I briefly looked into your trace and the module "botkit-middleware-dialogflow", and i can see no correlation with this module so far, so i would like you to point out to us in which way exactly we might be able to help you with this issue?
Sincerely, Nicklas Dohrn

from cf-nodejs-logging-support.

khajam30 avatar khajam30 commented on June 12, 2024

Thanks Nicklas,
I am new to this and would appreciate your suggestion.
I have successfully deployed botkit module on SAP cloud platform, but as soon as I add entry of "botkit-middleware-dialogflow": "^2.0.4" in to the package.json and build the app, it throws the error.

Why it has to throw the error only when the middleware module is added to the package.json file?

Following is the complete code


//Server.js //

/eslint no-console: 0/
"use strict";

const Botkit = require('botkit');
const xml = require('@xmpp/xml');
/const dialogflowMiddleware = require('botkit-middleware-dialogflow')({
//keyFilename: './mybot-service-key.json', // service account private key file from Google Cloud Console
token: 'XXXXXXXXXXXXXXXXXXXXXXXXXX',
});
/

var controller = Botkit.jabberbot({
json_file_store: './jabberbot/'
});

var bot = controller.spawn({
client: {
jid: 'jbot',
password: 'xxxxx',
host: "xxxxxxxxx",
port: 5222,
preferred: "PLAIN"
}
});
/Controller.middleware.receive.use(dialogflowMiddleware.receive);
Controller.hears(['Default Welcome Intent'], 'direct_message', dialogflowMiddleware.hears, function(bot, message) {
replyText = message.fulfillment.text; // message object has new fields added by Dialogflow
bot.reply(message, replyText);
});
/

controller.hears('hello', 'direct_message', function(bot, message) {
bot.reply(message, 'Hello yourself!');
});

controller.on('direct_message', function(bot, message) {
bot.reply(message, 'I got your direct message. You said, "' + message.text + '"');
});


//Package.json//
{
"dependencies": {
"botkit": "^0.7.0"
},
"description": "my description",
"devDependencies": {
"jest": "^23.6.0",
"jest-junit": "^5.2.0"
},
"files": [],
"main": "server.js",
"name": "myjabberBot",
"scripts": {
"test": "jest --config jest.json",
"test-coverage": "jest --coverage --config jest.json",
"start": "node server.js"
},
"engines": {
"node": "8.x"
},
"version": "1.0.0"
}


from cf-nodejs-logging-support.

khajam30 avatar khajam30 commented on June 12, 2024

Correction.....
Package.json

{
"dependencies": {
"botkit": "^0.7.0",
"botkit-middleware-dialogflow": "^2.0.4"
},
"description": "my description",
"devDependencies": {
"jest": "^23.6.0",
"jest-junit": "^5.2.0"
},
"files": [],
"main": "server.js",
"name": "myjabberBot",
"scripts": {
"test": "jest --config jest.json",
"test-coverage": "jest --coverage --config jest.json",
"start": "node server.js"
},
"engines": {
"node": "8.x"
},
"version": "1.0.0"
}

from cf-nodejs-logging-support.

christiand93 avatar christiand93 commented on June 12, 2024

Question is not related to this library

from cf-nodejs-logging-support.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.