使用Python Telegram API下载图像

时间:2017-03-06 16:03:43

标签: python telegram

我按照他们关于下载图片的简短教程,但我遇到了异常:

  

telegram.photosize.PhotoSize对象at ...不是JSON可序列化的

捕捉图像的功能如下:

def photo(bot, update):
   file_id = update.message.photo[-1]
   newFile = bot.getFile(file_id)
   newFile.download('test.jpg')
   bot.sendMessage(chat_id=update.message.chat_id, text="download succesfull")

photo_handler = MessageHandler(Filters.photo, photo)
dispatcher.add_handler(photo_handler)

获取文件时发生异常。 我已经尝试了各种文件,但是我的下载并不成功。

此时我不知道我做错了什么,并且无法在网上找到任何解决方案。

0 个答案:

没有答案