Skip to content

Cannot connect to Slack #208

Description

@phaniindra

I have integrated the bot kit with Slack

Here is my CODE

const { Botkit } = require('botkit');
const { MemoryStorage } = require('botbuilder');
const { SlackAdapter } = require('botbuilder-adapter-slack');
const WatsonMiddleware = require('botkit-middleware-watson').WatsonMiddleware;

const middleware = new WatsonMiddleware({
    iam_apikey: process.env.ASSISTANT_IAM_APIKEY,
    workspace_id: process.env.WORKSPACE_ID,
    url: process.env.ASSISTANT_URL,
    version: '2018-07-10'
});

// Configure your bot.
const adapter = new SlackAdapter({
    clientSigningSecret: process.env.SLACK_CLIENT_SIGNING_SECRET,
    botToken: process.env.SLACK_TOKEN,
});
const controller = new Botkit({
    adapter,
    storage: new MemoryStorage(),
    // ...other options
});

controller.middleware.receive.use(
    middleware.receive.bind(middleware),
);

controller.hears(['.*'], ['direct_message', 'direct_mention', 'mention', 'message_received'], async (bot, message) => {
    console.log('Slack message received');
    await middleware.interpret(bot, message);
    if (message.watsonError) {
        console.log(message.watsonError);
        await bot.reply(message, message.watsonError.description || message.watsonError.error);
    } else if (message.watsonData && 'output' in message.watsonData) {
        await bot.reply(message, message.watsonData.output.text.join('\n'));
    } else {
        console.log('Error: received message in unknown format. (Is your connection with Watson Assistant up and running?)');
        await bot.reply(message, 'I\'m sorry, but for technical reasons I can\'t respond to your message');
    }
});

Integrated with Slack configuration too. But when i sent a message to Bot. I couldn't catch the message to reply from watson assistant

Thanks.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions