您可以创建电报机器人并将其作为管理员添加到您的频道.
然后在电报机器人中使用@yourchannel作为chat_id,以便向您的频道发送消息.
作为PHP中的一个例子:
原文链接:https://www.f2er.com/php/136535.html然后在电报机器人中使用@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); ?>