Telegram: bot: отправка видео

SendVideo.php
require_once __DIR__ . '/config.php';

$videoPath = __DIR__ . '/ffm.mp4';

$arrayQuery = array(
'chat_id' => $chat_id,
'caption' => 'подпись для видео',
'video' => new CURLFile($videoPath, 'video/mp4', 'ffm.mp4'),
'supports_streaming' => true,
'protect_content' => 1
);
$ch = curl_init('https://api.telegram.org/bot'. $token .'/sendVideo');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $arrayQuery);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$res = curl_exec($ch);
curl_close($ch);

echo $res;

config.php
$token = 'telegram_token';
$chat_id = xxx;

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *