Type-safe library for work with Telegram Bot API
Go to file
InsanusMokrassar 89eda29965 init 2018-12-26 16:21:52 +08:00
gradle/wrapper init 2018-12-26 16:21:52 +08:00
src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI init 2018-12-26 16:21:52 +08:00
.gitignore init 2018-12-26 16:21:52 +08:00
CHANGELOG init 2018-12-26 16:21:52 +08:00
LICENSE init 2018-12-26 16:21:52 +08:00
README.md init 2018-12-26 16:21:52 +08:00
build.gradle init 2018-12-26 16:21:52 +08:00
gradle.properties init 2018-12-26 16:21:52 +08:00
gradlew init 2018-12-26 16:21:52 +08:00
gradlew.bat init 2018-12-26 16:21:52 +08:00
settings.gradle init 2018-12-26 16:21:52 +08:00

README.md

TelegramBotAPI

What is it?

It is one more project which wish to be useful and full Telegram Bots API bridge for Kotlin. Most part of some specific solves or unuseful moments are describing by official Telegram Bot API.

How to work with library?

By default in any documentation will be meaning that you have variable in scope with names

Name of variable Description Where to get? (Examples)
executor RequestsExecutor Ktor RequestExecutor realisation

Requests Examples

Get Me

executor.execute(GetMe())

As a result you will receive User object. This object used as is now (as in API documentation), but it is possible that this class will be renamed to RawUser and you will be able to get real realisation of this object like Bot (in cases when isBot == true) or User (otherwise)