我正在尝试编写一个电报机器人,它将 VK 组的墙帖发送到电报频道。我使用 pyTelegramBotAPI。
post = u'{!s}'.format(item['text'])
bot.send_message(CHANNEL_NAME, post)
PHOTO_URL = str(item['attachments']['photo']['photo_604'])
img_file = urllib2.urlopen(PHOTO_URL)
im = StringIO(img_file.read())
bot.send_photo(CHANNEL_NAME, im)
是否可以在一条消息中发送文本和照片?也许你可以告诉我另一个电报机器人库或其他魔法。