TelegramBots/README.md

123 lines
4.9 KiB
Markdown
Raw Permalink Normal View History

2016-01-14 01:14:53 +01:00
# Telegram Bot Java Library
2020-10-28 23:42:49 +01:00
[![Telegram](/TelegramBots.svg)](https://telegram.me/JavaBotsApi)
2016-10-04 01:49:56 +02:00
[![Build Status](https://travis-ci.org/rubenlagus/TelegramBots.svg?branch=master)](https://travis-ci.org/rubenlagus/TelegramBots)
2016-06-10 12:17:31 +02:00
[![Jitpack](https://jitpack.io/v/rubenlagus/TelegramBots.svg)](https://jitpack.io/#rubenlagus/TelegramBots)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.telegram/telegrambots/badge.svg)](http://mvnrepository.com/artifact/org.telegram/telegrambots)
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rubenlagus/TelegramBots/blob/master/LICENSE)
2016-11-17 02:54:43 +01:00
2016-01-20 22:18:22 +01:00
A simple to use library to create Telegram Bots in Java
2016-01-14 01:14:53 +01:00
## Contributions
2016-05-22 15:03:32 +02:00
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.
2016-01-14 01:14:53 +01:00
Please, **DO NOT PUSH ANY TOKEN OR API KEY**, I will never accept a pull request with that content.
## Webhooks vs GetUpdates
2016-05-31 01:09:24 +02:00
Both ways are supported, but I recommend long polling method.
2016-01-20 22:18:22 +01:00
## Usage
Just import add the library to your project with one of these options:
1. Using Maven Central Repository:
```xml
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots</artifactId>
2020-11-08 17:19:38 +01:00
<version>5.0.1</version>
</dependency>
```
2017-05-12 01:52:47 +02:00
```gradle
2020-11-08 17:19:38 +01:00
compile "org.telegram:telegrambots:5.0.1"
2017-05-12 01:52:47 +02:00
```
2020-11-08 17:19:38 +01:00
2. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/5.0.1)
3. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/5.0.1)
2016-01-20 22:18:22 +01:00
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`
2018-07-08 01:41:21 +02:00
Once done, you just need to create a `org.telegram.telegrambots.meta.TelegramBotsApi`and register your bots:
2016-01-20 22:18:22 +01:00
```java
// Example taken from https://github.com/rubenlagus/TelegramBotsExample
public class Main {
public static void main(String[] args) {
try {
TelegramBotsApi telegramBotsApi = new TelegramBotsApi(DefaultBotSession.class);
2016-01-20 22:18:22 +01:00
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();
}
}
}
```
2016-01-14 01:14:53 +01:00
2016-11-17 20:37:41 +01:00
For detailed explanation, visite our [How To](https://github.com/rubenlagus/TelegramBots/wiki/Getting-Started) (thanks Clevero)
2016-08-07 14:34:27 +02:00
2016-01-14 01:14:53 +01:00
## Example bots
Open them and send them */help* command to get some information about their capabilities:
2016-05-31 01:09:24 +02:00
https://telegram.me/weatherbot (**Use custom keyboards**)
2016-01-14 01:14:53 +01:00
2016-05-31 01:09:24 +02:00
https://telegram.me/directionsbot (**Basic messages**)
2016-01-14 01:14:53 +01:00
2016-05-31 01:09:24 +02:00
https://telegram.me/filesbot (**Send files by file_id**)
2016-01-14 01:14:53 +01:00
2016-05-31 01:09:24 +02:00
https://telegram.me/TGlanguagesbot (**Send files uploding them**)
2016-01-14 01:14:53 +01:00
2016-05-31 01:09:24 +02:00
https://telegram.me/RaeBot (**Inline support**)
2016-04-02 19:32:24 +02:00
2016-05-31 22:09:41 +02:00
https://telegram.me/SnowcrashBot (**Webhook support**)
2016-01-20 22:18:22 +01:00
You can see code for those bots at [TelegramBotsExample](https://github.com/rubenlagus/TelegramBotsExample) project.
2016-01-14 01:14:53 +01:00
## Telegram Bot API
This library use [Telegram bot API](https://core.telegram.org/bots), you can find more information following the link.
## Questions or Suggestions
2016-05-05 21:50:55 +02:00
Feel free to create issues [here](https://github.com/rubenlagus/TelegramBots/issues) as you need or join the [chat](https://telegram.me/JavaBotsApi)
2016-01-14 01:14:53 +01:00
2018-06-21 16:41:16 +02:00
## Powered by Intellij
<p align="center">
2020-02-23 18:41:05 +01:00
<a href="https://www.jetbrains.com/?from=TelegramBots"><img src="jetbrains.png" width="75"></a>
2018-06-21 16:41:16 +02:00
</p>
2016-01-14 01:14:53 +01:00
## 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
2016-11-21 10:33:06 +01:00
SOFTWARE.