Type-safe library for work with Telegram Bot API
Go to file
InsanusMokrassar a788ea76f1 start work with 0.9.0 2019-01-24 08:20:29 +08:00
gradle/wrapper init 2018-12-26 16:21:52 +08:00
src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI 0.8.5 2019-01-23 12:15:57 +08:00
.gitignore init 2018-12-26 16:21:52 +08:00
CHANGELOG start work with 0.9.0 2019-01-24 08:20:29 +08:00
LICENSE init 2018-12-26 16:21:52 +08:00
README.md add badges 2018-12-28 13:26:15 +08:00
build.gradle start work with 0.9.0 2019-01-24 08:20:29 +08:00
gradle.properties add publishing 2018-12-27 11:40:53 +08:00
gradlew init 2018-12-26 16:21:52 +08:00
gradlew.bat init 2018-12-26 16:21:52 +08:00
maven.publish.gradle improve pom creating for maven publication 2018-12-29 18:45:51 +08:00
publish.gradle add opportunity to use properties of project in user and key of bintray publication 2018-12-28 10:40:24 +08:00
settings.gradle init 2018-12-26 16:21:52 +08:00

README.md

TelegramBotAPI

Download Build Status

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)