Python如何?微信企業號簡訊推送功能的樣本

來源:互聯網
上載者:User
這篇文章主要介紹了Python編程實現企業號簡訊推送功能,結合執行個體形式分析了Python企業號簡訊推送介面的調用相關操作技巧,需要的朋友可以參考下

本文執行個體講述了Python企業號簡訊推送功能。分享給大家供大家參考,具體如下:

企業號的建立、企業號應用的建立、組、tag、part就不贅述了,一搜一大堆,但是網上拿的那些個指令碼好多都不好使,所以自己修了一個

坦率的講,這個指令碼是用來作為zabbix的通知媒介指令碼的,本人是個菜鳥,如果哪裡不對,大神們不要笑話,python也處於學習階段,如果有哪些地方不合理,很希望可以不吝賜教,廢話不多說,指令碼奉上:


#!/usr/bin/python# _*_coding:utf-8 _*_import urllib2import jsonimport sysreload(sys)sys.setdefaultencoding('utf-8')def gettoken(corpid, corpsecret):  gettoken_url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + corpsecret  try:    token_file = urllib2.urlopen(gettoken_url)  except urllib2.HTTPError as e:    print e.code    print e.read().decode("utf8")    sys.exit()  token_data = token_file.read().decode('utf-8')  token_json = json.loads(token_data)  token_json.keys()  token = token_json['access_token']  return tokendef senddata(access_token, user, party, agent, subject, content):  send_url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + access_token  send_values = "{\"touser\":\"" + user + "\",\"toparty\":\"" + party + "\",\"totag\":\"\",\"msgtype\":\"text\",\"agentid\":\"" + agent + "\",\"text\":{\"content\":\"" + subject + "\n" + content + "\"},\"safe\":\"0\"}"  send_request = urllib2.Request(send_url, send_values)  response = json.loads(urllib2.urlopen(send_request).read())  print str(response)if __name__ == '__main__':  user = str(sys.argv[1]) # 參數1:發送給使用者的帳號,必須關注企業號,並對企業號有發訊息許可權  party = str(sys.argv[2]) # 參數2:發送給組的id號,必須對企業號有許可權  agent = str(sys.argv[3]) # 參數3:企業號中的應用id  subject = str(sys.argv[4]) # 參數4:標題【訊息內容的一部分】  content = str(sys.argv[5]) # 參數5:文本具體內容  corpid = 'CorpID' # CorpID是企業號的標識  corpsecret = 'corpsecretSecret' # corpsecretSecret是管理組憑證密鑰  try:    accesstoken = gettoken(corpid, corpsecret)    senddata(accesstoken, user, party, agent, subject, content)  except Exception, e:    print str(e) + "Error Please Check \"corpid\" or \"corpsecret\" Config"
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.