Plugin to turn your Suneidesis Chatbot into a Slack Bot
- Enable Socket Mode
- Add Event Subscriptions: message.channels and message.im
- Add Oauth Permissions: chat:write and im:read
Get both Bot and App tokens
Parser bot = new EchoBox(); // Use your own parser
String botToken = "xoxb-123456-MY_TOKEN";
String appToken = "xapp-654321-MY_TOKEN";
Slack slack = new Slack(botToken, appToken);
slack.init();
slack.addParser(bot);