不止短信,教你用 Python 发送告警通知到微信

2022/1/5 22:33:41

本文主要是介绍不止短信,教你用 Python 发送告警通知到微信,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

常见的告警方式有:邮件,电话,短信,微信。

短信和电话,通常是收费的(若你有不收费的,可以评论分享一下),而邮件又不是那么及时,因此最后我选择微信通知。

这里说的微信,是企业微信,而我之前用注册过个体户的执照,因此可以很轻松就可以注册自己的企业微信。

#  1. 新建应用

登陆网页版企业微信 (https://work.weixin.qq.com/),点击应用管理->应用->创建应用

上传应用的 logo,输入应用名称,再选择可见范围,成功创建一个告警应用

#  2. 获取秘密

使用 Python 发送告警请求,其实就只使用到两个接口

  • 获取 Token :https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}

  • 发送请求 :https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={token}

可以看到,最重要的是 corpid 和 secret:

  • corpid:唯一标识你的企业

  • secret:应用级的密钥,有了它程序才知道你要发送该企业的哪个应用

corpid 可以通过我的企业->企业信息获取

而 secret 获取相对麻烦一点,点击前面创建应用,点击 查看 secret

然后再点击发送就会发送到你的企业微信上

最后将 corpid 和 secret 填入下面的常量中。

<span style="color:#444444"><span style="background-color:#f6f6f6"><span style="color:#333333"><strong>import</strong></span> json
import datetime
import requests

CORP_ID = <span style="color:#880000">""</span>
SECRET = <span style="color:#880000">""</span>

<span style="color:#333333"><strong>class</strong></span> <span style="color:#880000"><strong>WeChatPub</strong></span>:
    s = requests.session()

    <span style="color:#333333"><strong>def</strong></span> <span style="color:#880000"><strong>__init__</strong></span>(self):
        self.token = self.get_token()

    <span style="color:#333333"><strong>def</strong></span> <span style="color:#880000"><strong>get_token</strong></span>(self):
        url = f<span style="color:#880000">"https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=</span><span style="color:#880000">{CORP_ID}</span><span style="color:#880000">&corpsecret=</span><span style="color:#880000">{SECRET}</span><span style="color:#880000">"</span>
        rep = self.s.get(url)
        <span style="color:#333333"><strong>if</strong></span> rep.status_code != <span style="color:#880000">200</span>:
            print(<span style="color:#880000">"request failed."</span>)
            <span style="color:#333333"><strong>return</strong></span>
        <span style="color:#333333"><strong>return</strong></span> json.loads(rep.content)[<span style="color:#880000">'access_token'</span>]


    <span style="color:#333333"><strong>def</strong></span> <span style="color:#880000"><strong>send_msg</strong></span>(self, content):
        url = <span style="color:#880000">"https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token="</span> + self.token
        header = {
            <span style="color:#880000">"Content-Type"</span>: <span style="color:#880000">"application/json"</span>
        }
        form_data = {
            <span style="color:#880000">"touser"</span>: <span style="color:#880000">"@all"</span>,
            <span style="color:#880000">"toparty"</span>: <span style="color:#880000">" PartyID1 | PartyID2 "</span>,
            <span style="color:#880000">"totag"</span>: <span style="color:#880000">" TagID1 | TagID2 "</span>,
            <span style="color:#880000">"msgtype"</span>: <span style="color:#880000">"textcard"</span>,
            <span style="color:#880000">"agentid"</span>: <span style="color:#880000">1000002</span>,
            <span style="color:#880000">"textcard"</span>: {
                <span style="color:#880000">"title"</span>: <span style="color:#880000">"服务异常告警"</span>,
                <span style="color:#880000">"description"</span>: content,
                <span style="color:#880000">"url"</span>: <span style="color:#880000">"URL"</span>,
                <span style="color:#880000">"btntxt"</span>: <span style="color:#880000">"更多"</span>
            },
            <span style="color:#880000">"safe"</span>: <span style="color:#880000">0</span>
        }
        rep = self.s.post(url, data=json.dumps(form_data).encode(<span style="color:#880000">'utf-8'</span>), headers=header)
        <span style="color:#333333"><strong>if</strong></span> rep.status_code != <span style="color:#880000">200</span>:
            print(<span style="color:#880000">"request failed."</span>)
            <span style="color:#333333"><strong>return</strong></span>
        <span style="color:#333333"><strong>return</strong></span> json.loads(rep.content)
</span></span>

然后就可以通过 send_msg 函数发送消息了。

<span style="color:#444444"><span style="background-color:#f6f6f6">wechat = WeChatPub()
now = datetime.datetime.now()
timenow = now.strftime('%Y年%m月%d日 %H:%M:%S')
wechat.send_msg(f"<<span style="color:#333333"><strong>div</strong></span> class=<span style="color:#880000">\</span>"gray\"><span style="color:#bc6060">{timenow}</span></<span style="color:#333333"><strong>div</strong></span>> <<span style="color:#333333"><strong>div</strong></span> class=<span style="color:#880000">\</span>"normal\">阿里云 cookie 已失效</<span style="color:#333333"><strong>div</strong></span>><<span style="color:#333333"><strong>div</strong></span> class=<span style="color:#880000">\</span>"highlight\">请尽快更换新的 cookie</<span style="color:#333333"><strong>div</strong></span>>")
</span></span>

只要你的企业微信没有关闭通知的权限,那你的手机立马就会弹出这个告警信息。

简单几步就对接了企业微信,实现了手机的实时告警功能,推荐有企业微信的同学使用。

当然一定有更多,更好用的实现方法,我只是我选择了其中一种。



这篇关于不止短信,教你用 Python 发送告警通知到微信的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程