tgbotapi/README.md

121 lines
4.6 KiB
Markdown
Raw Normal View History

2022-12-31 10:22:57 +00:00
# TelegramBotAPI [![Maven Central](https://maven-badges.herokuapp.com/maven-central/dev.inmo/tgbotapi/badge.svg)](https://maven-badges.herokuapp.com/maven-central/dev.inmo/tgbotapi) [![Supported version](https://img.shields.io/badge/Telegram%20Bot%20API-6.4-blue)](https://core.telegram.org/bots/api-changelog#december-30-2022)
2018-12-26 08:07:24 +00:00
2022-08-04 19:48:44 +00:00
| Docs | [![KDocs](https://img.shields.io/static/v1?label=Dokka&message=KDocs&color=blue&logo=kotlin)](https://tgbotapi.inmo.dev/index.html) [![Mini tutorial](https://img.shields.io/static/v1?label=Bookstack&message=Tutorial&color=blue&logo=bookstack)](https://bookstack.inmo.dev/books/telegrambotapi/chapter/introduction-tutorial) |
|:---:|:---:|
| Useful repos | [![Create bot](https://img.shields.io/static/v1?label=Github&message=Template&color=blue&logo=github)](https://github.com/InsanusMokrassar/TelegramBotAPI-bot_template/generate) [![Examples](https://img.shields.io/static/v1?label=Github&message=Examples&color=blue&logo=github)](https://github.com/InsanusMokrassar/TelegramBotAPI-examples/) |
| Misc | [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin) [![Small survey](https://img.shields.io/static/v1?label=Google&message=Survey&color=blue&logo=google-sheets)](https://docs.google.com/forms/d/e/1FAIpQLSctdJHT_aEniyYT0-IUAEfo1hsIlezX2owlkEAYX4KPl2V2_A/viewform?usp=sf_link) |
<!--- [![Telegram Channel](./resources/tg_channel_qr.jpg)](https://t.me/InMoTelegramBotAPI) --->
<p align="center">
<a href="https://t.me/InMoTelegramBotAPI">
<img src="./resources/tg_channel_qr.jpg">
</a>
</p>
2021-08-22 04:58:32 +00:00
2021-02-11 06:06:34 +00:00
Hello! This is a set of libraries for working with Telegram Bot API.
2020-11-16 15:59:25 +00:00
2021-02-11 06:06:34 +00:00
## Examples
2020-04-17 09:43:43 +00:00
2021-02-12 19:38:31 +00:00
There are several things you need to do to launch examples below:
* Add `mavenCentral()` to your project repositories
* [Maven variant](https://github.com/InsanusMokrassar/TelegramBotAPI/wiki/Including-in-your-project#pomxml)
* Add dependency `implementation "dev.inmo:tgbotapi:$tgbotapi_version"`
2021-02-12 19:42:35 +00:00
* Replace `tgbotapi_version` with exact version (see last one in the table above) or put variable with this name in project
2021-02-12 19:38:31 +00:00
* Alternative variant for maven [here](https://github.com/InsanusMokrassar/TelegramBotAPI/wiki/Including-in-your-project#telegrambotapi)
2021-02-13 04:09:33 +00:00
More including instructions [available here](https://github.com/InsanusMokrassar/TelegramBotAPI/wiki/Including-in-your-project).
Other configuration examples:
* [For multiplatform](https://github.com/InsanusMokrassar/TelegramBotAPI-examples/tree/master/ResenderBot)
* [For JVM](https://github.com/InsanusMokrassar/TelegramBotAPI-examples/blob/master/GetMeBot/build.gradle)
2021-02-12 19:38:31 +00:00
2021-02-11 06:06:34 +00:00
### Most common example
2020-04-17 09:43:43 +00:00
2021-02-11 06:06:34 +00:00
```kotlin
suspend fun main() {
val bot = telegramBot(TOKEN)
2020-04-17 09:43:43 +00:00
2022-03-13 20:50:38 +00:00
bot.buildBehaviourWithLongPolling {
2021-02-11 06:06:34 +00:00
println(getMe())
onCommand("start") {
reply(it, "Hi:)")
2020-04-17 09:43:43 +00:00
}
2021-02-11 06:06:34 +00:00
}.join()
2020-04-17 09:43:43 +00:00
}
```
2021-02-11 06:06:34 +00:00
In this example you will see information about this bot at the moment of starting and answer with `Hi:)` every time it
gets message `/start`
2020-05-14 08:07:23 +00:00
2021-02-11 06:06:34 +00:00
### Handling only last messages
2020-04-08 09:28:03 +00:00
2021-02-11 06:06:34 +00:00
```kotlin
suspend fun main() {
val bot = telegramBot(TOKEN)
2020-05-14 07:44:18 +00:00
2021-02-11 06:06:34 +00:00
val flowsUpdatesFilter = FlowsUpdatesFilter()
bot.buildBehaviour(flowUpdatesFilter = flowsUpdatesFilter) {
println(getMe())
onCommand("start") {
reply(it, "Hi:)")
}
2020-05-14 07:44:18 +00:00
2021-02-11 07:37:24 +00:00
retrieveAccumulatedUpdates(this).join()
2021-02-11 07:35:06 +00:00
}
2021-02-11 06:06:34 +00:00
}
2020-05-14 07:44:18 +00:00
```
2021-02-11 06:06:34 +00:00
The main difference with the previous example is that bot will get only last updates (accumulated before bot launch
and maybe some updates it got after launch)
2020-05-14 07:44:18 +00:00
2021-02-11 06:06:34 +00:00
### Build a little bit more complex behaviour
2020-05-14 07:44:18 +00:00
2021-02-11 06:06:34 +00:00
```kotlin
suspend fun main() {
val bot = telegramBot(TOKEN)
2020-05-14 07:44:18 +00:00
2022-03-13 20:50:38 +00:00
bot.buildBehaviourWithLongPolling {
2021-02-11 06:06:34 +00:00
println(getMe())
2020-05-14 07:44:18 +00:00
2021-02-11 06:06:34 +00:00
val nameReplyMarkup = ReplyKeyboardMarkup(
matrix {
row {
+SimpleKeyboardButton("nope")
}
}
)
onCommand("start") {
val photo = waitPhoto(
SendTextMessage(it.chat.id, "Send me your photo please")
).first()
val name = waitText(
SendTextMessage(
it.chat.id,
"Send me your name or choose \"nope\"",
2021-02-11 07:38:55 +00:00
replyMarkup = nameReplyMarkup
2021-02-11 06:06:34 +00:00
)
).first().text.takeIf { it != "nope" }
sendPhoto(
it.chat,
photo.mediaCollection,
entities = buildEntities {
if (name != null) regular(name) // may be collapsed up to name ?.let(::regular)
}
)
}
}.join()
2020-05-14 07:44:18 +00:00
}
```
2021-02-11 06:06:34 +00:00
### More examples
You may find examples in [this project](https://github.com/InsanusMokrassar/TelegramBotAPI-examples). Besides, you are
2022-09-14 04:58:03 +00:00
always welcome in our [bookstack](https://bookstack.inmo.dev/books/telegrambotapi) and
2021-02-11 06:06:34 +00:00
[chat](https://t.me/InMoTelegramBotAPIChat).