如何将电报机器人 post 消息发送到我的频道而不是它自己的频道

How to have telegram bot post messages to my channel and not its own channel

我有一个电报机器人,它使用此代码向某个机器人发布消息。

import telegram
from telegram import ParseMode
def send_msg(text):
    token = '1*****:AAF*************esns'
    chat_id = "34*****4"
    bot = telegram.Bot(token=token)
    
    bot.sendMessage(chat_id=chat_id, text=text, parse_mode=ParseMode.MARKDOWN_V2)

我想知道电报机器人是否可以将消息发送到我的频道,我已将其设置为管理员,而不是它自己的名为 somebot 的频道。

由于您的 Bot 已经是您希望它进入 post 的频道的管理员,您只需将 Bot.send_message()chat_id 更改为频道之一bot 用于发送 posts in.

您可以使用 Bgram Telegram client or IDBot.

等方式获取此 ID

希望对您有所帮助 ;)