Answer the question
In order to leave comments, you need to log in
Solved How to make a telegram bot write to a channel?
upd: 11/09/2020 SOlVED
Wrote a python bot to send messages to a group. Works great.
And now there is a task for him to send messages to the channel.
When I write a script (after which I write the /start command in private messages with the bot)
import telebot
token = '...'
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['start'])
def default_test(message):
answer = 'Привет!'
bot.send_message('@hello_danishere', answer)
bot.polling(none_stop=True, interval=0)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question