I'm new using python and telegram-bot
I'm trying to found a way to send messages using python-telegram-bot when I received a message without uses:
requests.post(
'https://api.telegram.org/bot<token>/sendMessage?chat_id=<id>&text=Hello World!')
Flow:
Message arrived on channel A then send a new message to channel B (Message receveid on Channel A).
I only found reply_text. Is there other way to do it ?
Thanks !