pyTelegramBotAPI ラッパーを使用して、URL からの要求に応じて写真を送信する電報ボットを作成しました。そこで、ダミーの写真の URL を入れて、ボットが画像を送信できるかどうかをテストしてみましたが、次のエラーで失敗しました。
telebot.apihelper.ApiException: sendPhoto failed. Returned result: <Response [400]>
何がエラーなのかわかりませんが、Telegram Bot API を使用して URL から写真を正しく送信するにはどうすればよいですか? これが私のコードです
import telebot
import time
import urllib
from io import BytesIO
from PIL import Image
TOKEN = '<token here>'
url='http://scontent-b.cdninstagram.com/hphotos-xfa1/t51.2885-15/e15/10919672_584633251672188_179950734_n.jpg'
def listener(*messages):
for m in messages:
chatid = m.chat.id
if m.content_type == 'text':
text = m.text
name = m.fromUser.first_name
msgid = m.message_id
if(text.startswith('/photo')):
img = BytesIO(urllib.request.urlopen(url).read())
tb.send_chat_action(chatid, 'upload_photo')
tb.send_photo(chatid, img, reply_to_message_id=msgid)
tb = telebot.TeleBot(TOKEN)
tb.get_update() # cache exist message
tb.set_update_listener(listener) #register listener
tb.polling()
while True:
time.sleep(1)
私が何かを逃したかどうかはわかりません。