Eng-Fouad /
JTelegramBot
JTelegramBot is a Java library that wraps Telegram Bot API with a simpler API using Builder design pattern
61/100 healthLoading repository data…
Cadiducho / repository
Simple Telegram Bot API to Java through https
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This API is an unofficial one. Check Telegram Bot API for more info.
import com.cadiducho.telegrambotapi.BotAPI;
import com.cadiducho.telegrambotapi.TelegramBot;
import com.cadiducho.telegrambotapi.api.User;
import com.cadiducho.telegrambotapi.api.exception.TelegramException;
...
static BotAPI telegramBot;
public static void main(String[] args) {
telegramBot = new TelegramBot("to:kken");
try {
User user = telegramBot.getMe();
} catch(TelegramException e) {
System.out.println("Could'nt get bot instance!");
}
}
JavaDocs are located in https://cadiducho.com/telegrambotapi
If you want use Telegram Bot API as a Maven Dependency simply add repo and artifact:
<repository>
<id>cadiducho-repo-releases</id>
<name>Cadiducho Repository</name>
<url>https://repo.cadiducho.com/releases</url>
</repository>
<dependency>
<groupId>com.cadiducho</groupId>
<artifactId>TelegramBotAPI</artifactId>
<version>6.3</version>
</dependency>
You can always check lastest version in my maven repository.
This project is released under the MIT-License.
This project starts as a Bukkit-Minecraft API, and now it is a standalone library. Check the original Minegram! Cadiducho's TelegramBotAPI is highly inspired on Irazasyed's Telegram Bot API - PHP SDK and Rainu's telegram-bot-api, but this one is written from scratch.
© 2022 Cadiducho
Selected from shared topics, language and repository description—not editorial ratings.
Eng-Fouad /
JTelegramBot is a Java library that wraps Telegram Bot API with a simpler API using Builder design pattern
61/100 healthleocus /
A simple java library that allows you to manage your telegram bots. It allows you also to use inline queries, inline keyboards and the methods included in Telegram bots api 2.0.The only requirements to contribute to this repository is to follow Java Code Conventions and produce javadocs :). For tutorials and examples:
63/100 healthDevKarmanov /
Library for simplified development of Telegram bots in Java
sfera-labs /
A simple java library implementing the Telegram Bot API
37/100 healthmarcenavuc /
Simple implementation of weather telegram bot on Java. This bot can read, send messages and work with api.
29/100 healthbitwisebro /
A simple telegram bot - mini project
19/100 health