All Projects → rubenlagus → Telegrambots

rubenlagus / Telegrambots

Licence: mit
Java library to create bots using Telegram Bots API

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Telegrambots

Telegram
Telegram Bot API Wrapper for Scala
Stars: ✭ 310 (-88.64%)
Mutual labels:  telegram-bot, webhook, telegram
Example Bot
[WIP] An A-Z example of a PHP Telegram Bot.
Stars: ✭ 211 (-92.27%)
Mutual labels:  telegram-bot, webhook, telegram
Telegraff
Kotlin DSL для разработки Telegram ботов
Stars: ✭ 122 (-95.53%)
Mutual labels:  telegram-bot, spring-boot, telegram
webhook-aiogram-heroku
A sample telegram bot made with aiogram, that fetches updates using the web-hook connection. Can be easily deployed to Heroku.
Stars: ✭ 36 (-98.68%)
Mutual labels:  telegram, telegram-bot, webhook
Telegram Bot
Ruby gem for building Telegram Bot with optional Rails integration
Stars: ✭ 433 (-84.13%)
Mutual labels:  telegram-bot, webhook, telegram
Telegram Spring Boot Starter
Telegram Bot API Spring Boot Starter
Stars: ✭ 79 (-97.1%)
Mutual labels:  telegram-bot, spring-boot, telegram
Botserver
http://telegram.org Bot API Webhooks Framework, for Rubyists
Stars: ✭ 125 (-95.42%)
Mutual labels:  telegram-bot, webhook, telegram
Hubot Telegram
Hubot adapter for Telegram
Stars: ✭ 152 (-94.43%)
Mutual labels:  telegram-bot, telegram
Fame
A blog power by spring-boot and vue
Stars: ✭ 162 (-94.06%)
Mutual labels:  spring-boot, maven
Telegram Rat
Windows Remote Administration Tool via Telegram. Written in Python
Stars: ✭ 201 (-92.63%)
Mutual labels:  telegram-bot, telegram
Java Telegram Bot Tutorial
Java Telegram Bot Tutorial. Feel free to submit issue if you found a mistake.
Stars: ✭ 165 (-93.95%)
Mutual labels:  telegram-bot, telegram
Transmission Telegram
Control your Transmission through a Telegram bot
Stars: ✭ 144 (-94.72%)
Mutual labels:  telegram-bot, telegram
Vk To Telegram Transfer Bot
Бот, пересылающий сообщения из чатов ВК в Telegram и обратно
Stars: ✭ 143 (-94.76%)
Mutual labels:  telegram-bot, telegram
Stormkitty
🔑 Open source stealer written on C#, all logs will be sent to Telegram bot.
Stars: ✭ 198 (-92.74%)
Mutual labels:  telegram-bot, telegram
Teledart
A Dart library interfacing with the latest Telegram Bot API.
Stars: ✭ 142 (-94.79%)
Mutual labels:  telegram-bot, telegram
Telegram Bot Sdk
🤖 Telegram Bot API PHP SDK. Lets you build Telegram Bots easily! Supports Laravel out of the box.
Stars: ✭ 2,212 (-18.91%)
Mutual labels:  telegram-bot, telegram
Javadevjournal
Source code for the tutorials published on the Javadevjournal site.
Stars: ✭ 141 (-94.83%)
Mutual labels:  spring-boot, maven
My Blog
🌴A simple & beautiful blogging system implemented with spring-boot & thymeleaf & mybatis My Blog 是由 SpringBoot + Mybatis + Thymeleaf 等技术实现的 Java 博客系统,页面美观、功能齐全、部署简单及完善的代码,一定会给使用者无与伦比的体验
Stars: ✭ 2,400 (-12.02%)
Mutual labels:  spring-boot, maven
Sentry Telegram
Plugin for Sentry which allows sending notification via Telegram messenger.
Stars: ✭ 168 (-93.84%)
Mutual labels:  telegram-bot, telegram
Myuploader Backend
单文件上传,多文件上传,大文件上传,断点续传,文件秒传,图片上传
Stars: ✭ 177 (-93.51%)
Mutual labels:  spring-boot, maven

Telegram Bot Java Library

Telegram

Build Status Build Status Jitpack Maven Central MIT License

A simple to use library to create Telegram Bots in Java

Contributions

Feel free to fork this project, work on it and then make a pull request against DEV branch. Most of the times I will accept them if they add something valuable to the code.

Please, DO NOT PUSH ANY TOKEN OR API KEY, I will never accept a pull request with that content.

Webhooks vs GetUpdates

Both ways are supported, but I recommend long polling method.

Usage

Just import add the library to your project with one of these options:

  1. Using Maven Central Repository:
    <dependency>
        <groupId>org.telegram</groupId>
        <artifactId>telegrambots</artifactId>
        <version>5.5.0</version>
    </dependency>
  1. Using Gradle:
    implementation 'org.telegram:telegrambots:5.5.0'
  1. Using Jitpack from here
  2. Download the jar(including all dependencies) from here

In order to use Long Polling mode, just create your own bot extending org.telegram.telegrambots.bots.TelegramLongPollingBot.

If you like to use Webhook, extend org.telegram.telegrambots.bots.TelegramWebhookBot

Once done, you just need to create a org.telegram.telegrambots.meta.TelegramBotsApiand register your bots:

    // Example taken from https://github.com/rubenlagus/TelegramBotsExample
    public class Main {
        public static void main(String[] args) {
            try {
                TelegramBotsApi telegramBotsApi = new TelegramBotsApi(DefaultBotSession.class);
                telegramBotsApi.registerBot(new ChannelHandlers());
                telegramBotsApi.registerBot(new DirectionsHandlers());
                telegramBotsApi.registerBot(new RaeHandlers());
                telegramBotsApi.registerBot(new WeatherHandlers());
                telegramBotsApi.registerBot(new TransifexHandlers());
                telegramBotsApi.registerBot(new FilesHandlers());
            } catch (TelegramApiException e) {
                e.printStackTrace();
            }
        }
    }

For detailed explanation, visite our How To (thanks Clevero)

Example bots

Open them and send them /help command to get some information about their capabilities:

https://telegram.me/weatherbot (Use custom keyboards)

https://telegram.me/directionsbot (Basic messages)

https://telegram.me/filesbot (Send files by file_id)

https://telegram.me/TGlanguagesbot (Send files uploding them)

https://telegram.me/RaeBot (Inline support)

https://telegram.me/SnowcrashBot (Webhook support)

You can see code for those bots at TelegramBotsExample project.

Telegram Bot API

This library use Telegram bot API, you can find more information following the link.

Questions or Suggestions

Feel free to create issues here as you need or join the chat

Powered by Intellij

License

MIT License

Copyright (c) 2016 Ruben Bermudez

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].