我正在编写一个发送图像的电报机器人(使用Python)。我会多次发送每个图像,并且文档建议发送已发送到Telegram服务器中的文件的file_id。
但是我找不到任何有关在服务器中存储文件并获取file_id的文档。我可以尝试发送一个图像(给我自己?到机器人?)并获取它的file_id,但似乎太骇人了。
答案 0 :(得分:0)
好,我明白了。您确实必须发送一次图像,但是很容易获得file_id
:
msg = bot.send_photo(chat_id=chat_id, photo=open("filename", "rb"))
file_id = msg.photo[0].file_id
...
bot.send_photo(photo=file_id)
答案 1 :(得分:0)
当然!您可以从磁盘或URL发送照片。
在其他情况下,如果您从客户端向机器人发送照片,您将在file_id
中收到file_path
和update.message.photo
的不同照片尺寸。
然后您可以通过以下链接获取真实文件:https://api.telegram.org/file/bot:TOKEN:/photos/file_3.jpg
您还可以使用file_id
获得照片阵列:https://api.telegram.org/bot:TOKEN:/getFile?file_id=AAAAAA
带有照片的接收数据示例:
{'update_id': 773777337,
'message': {'message_id': 737,
........
'date': 7373377337,
'photo': [{'file_id': 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA',
'file_size': 962,
'file_path': 'photos/file_3.jpg',
'width': 90,
'height': 48},
{'file_id': 'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB',
'file_size': 17399,
'width': 320,
'height': 172},
{'file_id': 'CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC',
'file_size': 88245,
'width': 800,
'height': 431},
{'file_id': 'DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD',
'file_size': 168202,
'width': 1174,
'height': 633}],
'caption': 'comment_to_my_uploaded_photo'}}
最后,我的简单漫游器从URL发送随机图像的示例:
#!/usr/bin/python3
from telegram.ext import Updater, Filters
from telegram.ext import CommandHandler, CallbackQueryHandler, MessageHandler
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
import requests
def start(bot, update):
update.message.reply_text('Hello! I can show an awesome images for you!',
reply_markup=main_keyboard())
def meow(bot, update):
query = update.callback_query
photo = requests.get('http://aws.random.cat/meow').json()
bot.send_photo(caption="Meow! :)",
photo=photo['file'],
chat_id=query.message.chat_id,
message_id=query.message.message_id,
reply_markup=action_keyboard())
def wooff(bot, update):
query = update.callback_query
photo = requests.get('https://dog.ceo/api/breed/husky/images/random').json()
bot.send_photo(caption="Bwoof! :)",
photo=photo['message'],
chat_id=query.message.chat_id,
message_id=query.message.message_id,
reply_markup=action_keyboard())
def like(bot, update):
query = update.callback_query
bot.send_message(text='{}Likewise!'.format(u'\U0001F60A'),
chat_id=query.message.chat_id,
reply_markup=main_keyboard())
def great(bot, update):
query = update.callback_query
bot.send_message(text='{}Great!'.format(u'\U0001F60B'),
chat_id=query.message.chat_id,
reply_markup=main_keyboard())
def main_keyboard():
keyboard = [[InlineKeyboardButton("Get Meow", callback_data='meow`'),
InlineKeyboardButton("Get Wooff", callback_data='wooff')]]
return InlineKeyboardMarkup(keyboard)
def action_keyboard():
keyboard = [[InlineKeyboardButton("Like!", callback_data='like'),
InlineKeyboardButton("Great!", callback_data='great')]]
return InlineKeyboardMarkup(keyboard)
updater = Updater('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
updater.dispatcher.add_handler(CommandHandler('start', start))
updater.dispatcher.add_handler(CallbackQueryHandler(meow, pattern='meow'))
updater.dispatcher.add_handler(CallbackQueryHandler(wooff, pattern='wooff'))
updater.dispatcher.add_handler(CallbackQueryHandler(like, pattern='like'))
updater.dispatcher.add_handler(CallbackQueryHandler(great, pattern='great'))
updater.dispatcher.add_handler(MessageHandler(Filters.text|Filters.photo, start))
updater.start_polling()
享受!