Telegram BOT API has functions to send audio files and documents ,But can it play from an online sound streaming URL?
Can the Telegram bot API play sound from an online audio streaming URL?
4.6k views Asked by Codeformer At
4
There are 4 answers
2
On
Yes. I use:
define('API_URL', 'https://api.telegram.org/bot'.BOT_TOKEN.'/');
$sendto =API_URL."sendmessage?chat_id=".$chatID."&text=".urlencode($url_track);
file_get_contents($sendto);
For example in row 74 in https://github.com/Ellusu/Jamendo_SearchBot/blob/master/index.php
No, you can't with Telegram Bot APIs. You must download the file and upload it on Telegram servers.