skip to Main Content

I am trying to make a video or voice call in telegram using pytelegram-bot-api !

i couldn’t find a choice to make a call or video call inside the package !

how can i do it using python and any telegram Api ?

i am looking at the attributes inside it but i can’t found what i need .

this a sample of what i want :

import telebot

bot = telebot.TeleBot('API-key')

bot.send_message('Telegram id')

# I want something like this :

bot.make_voice_call('Telegram id')

2

Answers


  1. As I know, a bot can’t call a telegram user.

    Login or Signup to reply.
  2. At present bots can’t start video/voice calls, but there are some libraries such as tgcalls and pytgcalls were you can programmatically achieve it through a user.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search