无法将图片发送到电报

Not able to send pictures to telegram

我有一个简单的电报代码来发送文本和图像。

import telegram

bot = telegram.Bot('********:*********')

bot.sendMessage(chat_id=chat_id, text='hello')
bot.sendPhoto(chat_id=chat_id, photo = 'C:\Users\user\Pictures\Wallpapers\alley-89197_1920.jpg')

有一段时间我至少能够发送文本,但现在我收到以下错误:

Unauthorized: Forbidden: bot can't send messages to bots

你能告诉我为什么会出现这个错误吗?

请阅读官方FAQ:https://core.telegram.org/bots/faq#why-doesn-39t-my-bot-see-messages-from-other-bots

TL;DR:Telegram 机器人无法与其他 Telegram 机器人交谈。