PHP中利用Telegram的接口实现免费的消息通知功能
利用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。
tgid为需要接收消息的tg帐号ID,可以搜我的机器人@libinbinBot,然后发送/myid获取您的id 。
这里使用的telegram接口格式是:
https://api.telegram.org/bot[bot_api_key]/sendMessage?chat_id=[tgid]&text=[text]
接口简单,调用也非常easy,而且还是免费的,没有任何限制,
下图是我的tg界面,定制了商品降价提醒和项目ISSSUES库的提醒:
总结
相关推荐
guanguanmeng 2019-06-27
frymgump 2018-03-15
wheregogo 2018-02-19
NeverAgain 2017-05-23
zcc 2016-05-11
leitingdulante 2018-09-19
创投方法论 2018-06-30
互联网与你我的世界 2018-05-15
华兴观点 2018-04-20
文献自助餐 2018-04-17
言大官人 2018-04-12
急救室 2018-02-12
文献自助餐 2018-02-02
东叶寺交易所 2018-01-17
读书有疑 2017-12-13