Eleirbag89 / TelegramBotPHP

A very simple PHP Telegram Bot API for sending messages.
http://eleirbag89.github.io/TelegramBotPHP
MIT License
800 stars 340 forks source link

SendAudio issue #235

Closed alexisml-12 closed 3 years ago

alexisml-12 commented 3 years ago

Hello, I have a question about the function SendAudio.

How can I re-send an audio that I send to the bot?

$file = $update["message"]["voice"]["file_id"]; $content = array('chat_id' => $chatId, 'audio' => $file); $GLOBALS[telegram]->sendAudio($content);

I have this code and I used the file id of the voice message that I receive but the message don't send.

Any help I will aprecciate