码迷,mamicode.com
首页 > 微信 > 详细

shell和Python调用企业微信服务号进行报警

时间:2015-11-05 16:39:33      阅读:1154      评论:0      收藏:0      [点我收藏+]

标签:shell   python   报警   微信   

#!/bin/bash
corpid="wxd6b3"
corpsecret="aJTaPaGjW"
access_token=`curl -s  "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$corpid&corpsecret=$corpsecret" |jq ‘.access_token‘ | awk -F‘"‘ ‘{print $2}‘`

curl -l -H "Content-type: application/json" -X POST -d ‘{"touser":"@all","msgtype":"text","toparty":"14","agentid":"14","text":{"content":"测试"} , "safe":"0"}‘     "




Python脚本如下:


# coding:utf-8
import sys
import urllib2
import time
import json
import requests
reload(sys)
sys.setdefaultencoding(‘utf-8‘)
#title = sys.argv[2]   # 位置参数获取title 适用于zabbix
#content = sys.argv[3] # 位置参数获取content 适用于zabbix
title = "title 测试"   # 位置参数获取title 适用于zabbix
content = "content 测试"  # 位置参数获取content 适用于zabbix
class Token(object):
    # 获取token
    def __init__(self, corpid, corpsecret):
        self.baseurl = ‘https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={0}&corpsecret={1}‘.format(
            corpid, corpsecret)
        self.expire_time = sys.maxint
    def get_token(self):
        if self.expire_time > time.time():
            request = urllib2.Request(self.baseurl)
            response = urllib2.urlopen(request)
            ret = response.read().strip()
            ret = json.loads(ret)
            if ‘errcode‘ in ret.keys():
                print >> ret[‘errmsg‘], sys.stderr
                sys.exit(1)
            self.expire_time = time.time() + ret[‘expires_in‘]
            self.access_token = ret[‘access_token‘]
        return self.access_token
def send_msg(title, content):
    # 发送消息
    corpid = ""  # 填写自己应用的
    corpsecret = "" # 填写自己应用的
    qs_token = Token(corpid=corpid, corpsecret=corpsecret).get_token()
    url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={0}".format(
        qs_token)
    payload = {
        "touser": "@all",
        "msgtype": "text",
        "agentid": "14",
        "text": {
                   "content": "标题:{0}\n 内容:{1}".format(title, content)
        },
        "safe": "0"
    }
    ret = requests.post(url, data=json.dumps(payload, ensure_ascii=False))
    print ret.json()
if __name__ == ‘__main__‘:
    # print title, content
    send_msg(title, content)

微信服务号操作参考:

http://www.anbooks.cn/topic/4145905736700.html


shell和Python调用企业微信服务号进行报警

标签:shell   python   报警   微信   

原文地址:http://kkkkkk.blog.51cto.com/468162/1710011

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!