如何通过php向公共电报频道发送消息?

use*_*269 8 php api

是否可以通过API以管理员身份向公共电报频道发送消息?我的意思是可以通过使用例如php将视频发送到公共电报频道吗?

Sae*_*esi 27

您可以创建电报机器人并将其作为管理员添加到您的频道.然后在电报机器人中使用@yourchannel作为chat_id,以便向您的频道发送消息.作为PHP中的一个例子:

<?php
$botToken = "yourbottoken";
$chat_id = "@yourchannel";
$message = "your message";
$bot_url    = "https://api.telegram.org/bot$botToken/";
$url = $bot_url."sendMessage?chat_id=".$chat_id."&text=".urlencode($message);
file_get_contents($url);
?>
Run Code Online (Sandbox Code Playgroud)