这篇文章主要介绍“Python如何利用Telegram机器人搭建消息提醒”,在日常操作中,相信很多人在Python如何利用Telegram机器人搭建消息提醒问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Python如何利用Telegram机器人搭建消息提醒”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
申请机器人
搞一个机器人也很简单。
直接向【机器人爸爸】申请一个机器人,搜 "BotFather" ,然后给他发送一条消息 /newbot
这时候他会提示你给机器人设置一个用户名,必须以 _bot
结尾
如果遇到重复的名字会提示你换个名字。申请成功后,他会给你下发一个token。
这个token就是你后面调用api的凭证,所以要保管好,因为任何人只要拿到这个token就可以利用你的机器人操作api,如果token泄漏了可以更新token。
验证token
可以用下面的接口来验证该token是否可用
https://api.telegram.org/bot{token}/getMe
注意,token前面有个固定的 bot
单词,如果你不写会提示404错误的。
正常会返回成功消息
{
"ok": true,
"result": {
"id": 12345678,
"is_bot": true,
"first_name": "xxxx",
"username": "xxxxxx",
"can_join_groups": true,
"can_read_all_group_messages": false,
"supports_inline_queries": false
}
}
发消息
发消息前我们先创建一个频道专门用来接收消息
给频道设置唯一频道帐号
把机器人拉到频道里面,机器人才可以在里面发消息
调用发送消息接口
https://api.telegram.org/bot{token}/sendMessage?text=hello&chat_id=@频道id
text 是你要发送的消息
chat_id 是频道ID。
返回数据:
{
"ok": true,
"result": {
"message_id": 4,
"sender_chat": {
"id": -110201250852,
"title": "日志消息",
"username": "频道id",
"type": "channel"
},
"chat": {
"id": -110201250852,
"title": "日志消息",
"username": "频道id",
"type": "channel"
},
"date": 1654791886,
"text": "hello"
}
}
接口验证没问题你就可以用相应的库集成进你的系统啦
我们以flask为例,以下为核心代码
# view.py
@api.route("/error")
def exception_test():
s = 1/0
return success()
# app.py
@app.errorhandler(Exception)
def server_error(e):
app.logger.error(f"内部错误{str(e)}", exc_info=True)
if app.config.get("ENV") in ("production", 'development', 'local'):
tb = traceback.format_exc()
telegram.send_message(f"错误信息:{str(e)} \n堆栈信息:{tb}", chat_id=app.config.get("TELEGRAM_CHAT_ID"))
return error(code=500, http_code=500, msg="内部错误")
# telgram.py
class Telegram:
def __init__(self, app=None):
self.app = app
self._session = requests.session()
self.token = None
if app is not None:
self.init_app(app)
def init_app(self, app):
self.app = app
self.token = app.config.get("TELEGRAM_BOT_TOKEN")
def send_message(self, text, chat_id):
response = self._session.get(
f"https://api.telegram.org/bot{self.token}/sendMessage?text={text}&chat_id=@{chat_id}")
启动程序,访问 localhost:5000/error, 这时候telgram就会收到消息提醒
到此,关于“Python如何利用Telegram机器人搭建消息提醒”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注天达云网站,小编会继续努力为大家带来更多实用的文章!