Java电报Bot API
与进行交互的Java库
全面支持所有Bot API 5.0方法
电报和解密API
机器人
下载
Gradle:
implementation ' com.github.pengrad:java-telegram-bot-api:5.0.1 '
Maven:
com.github.pengrad
java-telegram-bot-api
5.0.1
用法
// Create your bot passing the token received from @BotFather
TelegramBot bot = new TelegramBot ( " BOT_TOKEN " );
// Register for updates
bot . setUpdatesListener(updates - > {
// ... p
1