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