This repository contains several examples of simple bots which are using TelegramBotAPI
Go to file
2024-07-12 14:55:52 +06:00
.github/workflows update gradle parameters 2024-07-07 19:35:21 +06:00
BoostsInfoBot improve boosts info bot 2024-07-11 21:14:53 +06:00
BusinessConnectionsBot code cleanup 2024-07-10 19:25:00 +03:00
ChatAvatarSetter code cleanup 2024-07-10 19:25:00 +03:00
CustomBot reverted CustomBot body 2024-07-10 19:33:40 +03:00
DeepLinksBot code cleanup 2024-07-10 19:25:00 +03:00
FilesLoaderBot code cleanup 2024-07-10 19:25:00 +03:00
ForwardInfoSenderBot check and a little update 2023-02-27 22:38:05 +06:00
FSMBot code cleanup 2024-07-10 19:25:00 +03:00
GetMeBot code cleanup 2024-07-10 19:25:00 +03:00
gradle/wrapper Update gradle-wrapper.properties 2024-03-02 00:08:22 +06:00
HelloBot code cleanup 2024-07-10 19:25:00 +03:00
InlineQueriesBot code cleanup 2024-07-10 19:25:00 +03:00
KeyboardsBot code cleanup 2024-07-10 19:25:00 +03:00
LinkPreviewsBot code cleanup 2024-07-10 19:25:00 +03:00
LiveLocationsBot code cleanup 2024-07-10 19:25:00 +03:00
PollsBot code cleanup 2024-07-10 19:25:00 +03:00
RandomFileSenderBot code cleanup 2024-07-10 19:25:00 +03:00
ReactionsInfoBot code cleanup 2024-07-10 19:25:00 +03:00
ResenderBot code cleanup 2024-07-10 19:25:00 +03:00
RightsChangerBot reverted explicit class cast removal 2024-07-11 16:48:54 +03:00
SlotMachineDetectorBot migration onto 2.1.1 2022-06-26 13:03:52 +06:00
StarTransactionsBot Added description for StarTransactionsBot 2024-07-10 19:51:07 +03:00
StickerInfoBot code cleanup 2024-07-10 19:25:00 +03:00
StickerSetHandler code cleanup 2024-07-10 19:25:00 +03:00
TopicsHandling code cleanup 2024-07-10 19:25:00 +03:00
UserChatShared code cleanup 2024-07-10 19:25:00 +03:00
WebApp code cleanup 2024-07-10 19:25:00 +03:00
.gitignore add local folders and files into gitignore 2023-06-30 22:53:12 +06:00
build.gradle build fixes 2024-01-08 13:21:41 +06:00
gradle.properties start update up to 15.1.0 2024-07-09 17:00:26 +06:00
gradlew complete forwarder bot exmple 2020-02-25 13:27:37 +06:00
gradlew.bat complete forwarder bot exmple 2020-02-25 13:27:37 +06:00
LICENSE Initial commit 2020-02-25 12:51:49 +06:00
native_template.gradle fixes 2023-10-25 15:33:05 +06:00
README.md update dependencies and other attributes 2023-04-04 01:02:18 +06:00
renovate.json Add renovate.json 2020-08-12 20:20:42 +00:00
settings.gradle start 15.0.0 2024-06-24 18:13:19 +06:00

TelegramBotAPI-examples

This repository contains several examples of simple bots which are using TelegramBotAPI

How to use this repository

TO RUN NATIVE TARGETS ON LINUX YOU SHOULD INSTALL CURL LIBRARY. FOR EXAMPLE: sudo apt install libcurl4-gnutls-dev

This repository contains several important things:

  • Example subprojects
  • Commits
  • Structure

Example subproject

Each example subproject contains information about how to run this example and what is it doing. Usually, it is some simple thing like sending "hello" message to the user which wrote to the bot.

Commits

Commits can contains some things like migration onto new version (especially it is actual for major version changes), updates according to the new features in versions and different other things which usually more important in context of history or changes between library version

Structure

Structure of this repository fully representative (it is the reason why this repo contains multiplatform subprojects) and you can use it as some template (but I am strongly recommend you to use my TelegramBot template or Multiplatform Project template)