1
SendVideo
Daniele Callari edited this page 2020-04-03 18:43:11 +02:00
SendVideo($destination, $url)
<?php
#
# include class
#
require('Telegram.class.php');
#
# instance
#
$bot = new TelegramBot('mytoken');
#
# send a video: url or local path
#
$bot->SendVideo('362870431', 'vid.mp4');
?>