Telegram API Bot API

Can you help me figure out the differences for the Telegram API vs Bot API, please, I tried the telegram website, but just got confused?

Thanks Ramin

+5
source share
1 answer

Telegram API

This API allows you to create your own customized Telegram clients. It is 100% open for all developers who want to create Telegram applications on our platform. Feel free to study the open source code of existing Telegram applications for examples of how everything works here. Do not forget to register your application in our system.

Bot API

This API allows you to connect bots to our system. Telegram bonuses are special accounts that do not require the installation of an additional phone number. These accounts serve as an interface for code running somewhere on your server.

You can create Telegram client applications with your own user interface and environment using the Telegram API (for communication with the Telegram server). e.g. Plus , Telegram Web , Mobogram.

But the Telegram Bot API is not associated with the user interface and does not surround it with possible services on the Telegram platform. Then users communicate with your Bot and receive any services through their original Telegram applications (or their Telegram clients). Game bot , English Learning a bot .

+3
source

Source: https://habr.com/ru/post/1257928/


All Articles