时间:2021-07-01 10:21:17 帮助过:31人阅读
利用Telegram的接口,可以实现很方便的消息提醒,不用打开APP,不用科学联网,Telegram的通知就像短信提醒一样。
重点是,免费,无使用数量限制,不用担心短信内容审 查,你想发什么就发什么。
下面是利用php实现的发通知的代码:
<?php $bot_api_key = 'CHANGE HERE'; function send_get($urlstring){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $urlstring); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); $result = curl_exec($ch); curl_close($ch); return $result; } $text = @$_GET["text"]; $tgid = @$_GET["tgid"]; if($text){ $url = "https://api.telegram.org/bot$bot_api_key/sendMessage?chat_id=$tgid&text=$text"; echo send_get($url); }else{ echo "Please Input"; } ?>
传入两个参数,text和tgid。
相关推荐:
php接口实现拖拽排序步骤详解
php接口编程详解
php接口的token详解
以上就是免费的消息通知功能,用PHP中Telegram的接口怎么写?的详细内容,更多请关注Gxl网其它相关文章!