
examples.BasicExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slack Show documentation
Show all versions of slack Show documentation
A plugin to turn your Suneidesis Chatbot into a Slack Bot
The newest version!
package examples;
import com.harium.suneidesis.chat.Parser;
import com.harium.suneidesis.chat.box.EchoBox;
import com.harium.suneidesis.chat.slack.Slack;
public class BasicExample {
public static void main(String[] args) throws Exception {
Parser bot = new EchoBox();
String botToken = "xoxb-123456-MY_TOKEN";
String appToken = "xapp-654321-MY_TOKEN";
Slack slack = new Slack(botToken, appToken);
slack.init();
slack.addParser(bot);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy