Author: SW-Team
- org.json - JSON-LICENSE
TelegramBot bot = new TelegramBot("Bot::TOKEN");
bot.setHandler(list -> list.forEach(update -> {
Message message = update.getMessage();
//...etc
}));
bot.start();TextMessage message = new TextMessageSender(bot).setText("Hello, World!").setChatId("@username").send();Chat chat = new ChatGetter(bot).getChatId("@username").send();