【发布时间】:2022-01-23 00:46:34
【问题描述】:
我正在尝试使用 pytelegram-bot-api 在电报中进行视频或语音通话!
我在包裹内找不到拨打电话或视频通话的选项!
我如何使用 python 和任何电报 API 来做到这一点?
我正在查看其中的属性,但找不到我需要的。
这是我想要的样本:
import telebot
bot = telebot.TeleBot('API-key')
bot.send_message('Telegram id')
# I want something like this :
bot.make_voice_call('Telegram id')
【问题讨论】:
标签: python telegram py-telegram-bot-api