是否可以从 Internet 发送图像,而不是以前下载的图像?
(PyTelegramBotAPI)
像这样的东西,但带有指向图像的链接。
@bot.message_handler(commands=['test'])
def welcome(message):
photo = open('test.png', 'rb')
bot.send_photo(message.chat.id, photo)
提前致谢。
是否可以从 Internet 发送图像,而不是以前下载的图像?
(PyTelegramBotAPI)
像这样的东西,但带有指向图像的链接。
@bot.message_handler(commands=['test'])
def welcome(message):
photo = open('test.png', 'rb')
bot.send_photo(message.chat.id, photo)
提前致谢。
可能的。
您只需要传递 url 而不是文件路径: