Hi, I did this step; Before working with Telegram’s API, you

need to get your own API ID and hash:

Login to your Telegram account with the phone number of the developer account to use.
Click under API Development tools.
A Create new application window will appear. Fill in your application details. There is no need to enter any URL, and only the first two fields (App title and Short name) can currently be changed later.
Click on Create application at the end. Remember that your API hash is secret and Telegram won’t let you revoke it. Don’t post it anywhere!

Where should I do this step:?

Signing In as a Bot Account
You can also use Telethon for your bots (normal bot accounts, not users). You will still need an API ID and hash, but the process is very similar:

from telethon.sync import TelegramClient

api_id = 12345

api_hash = '0123456789abcdef0123456789abcdef'
bot_token = '12345:0123456789abcdef0123456789abcdef'

# We have to manually call "start" if we want an explicit bot token
bot = TelegramClient('bot', api_id, api_hash).start(bot_token=bot_token)

# But then we can use the client instance as usual
with bot:
...
To get a bot account, you need to talk with @BotFather.

Website= https://docs.telethon.dev/en/latest/basic/signing-in.html

3 ответов

15 просмотров

🧐🤔

LOOL NICE TOKEN @admin

Dr. Fazla-Fayaz Автор вопроса

if you can go to this website https://docs.telethon.dev/en/latest/basic/signing-in.html you can find

Похожие вопросы

Карта сайта