Answer the question
In order to leave comments, you need to log in
How to post in telegram?
Good afternoon!
I want to make a bot for posting to the Telegram channel.
The simplest code to check and does not work...(((
import telebot
token = 'zzzzzzzzzzzz:xxxxxxxxxxxxxxxx'
CHANNEL_NAME = '@yyyyyyyyyyyyyyyy'
bot = telebot.TeleBot(token)
bot.send_message(CHANNEL_NAME, "Hello")
print(bot.send_message(CHANNEL_NAME, "Hello"))
{'ok': False, 'error': 'Got unexpected response. (404) - {"ok":false,"error_code":404,"description":"Not Found"}'}
bot = telebot.TeleBot(token)
bot.config['api_key'] = token
Answer the question
In order to leave comments, you need to log in
You need the channel id, not the title. Add a bot to a channel, write a message and request updates using the API. message.chat.type
should be equal to "channel"
. The id can be obtained using the message.chat.id
.
pip install pyTelegramBotAPI - this will install the library you need
instead of pip install telebot
, according to the second option, some kind of leftist is installed, in which there is a described problem
in the first one, the object of the TeleBot class does not even have a public config property, and the token immediately upon initialization is registered where it needs to be , you
never know who else will benefit :)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question