파이썬 기업 위챗 자동 전송 실현

1588 단어

코드

import requests
import json

class WechatAlert():
    def __init__(self,corpid,corpsecret):
        self.url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken'
        self.corpid = corpid
        self.corpsecret = corpsecret

    def get_token(self):
        #  token ,    id secret(      ,    )
        url = self.url
        values = {'corpid': self.corpid,
                  'corpsecret': self.corpsecret,
                  }
        req = requests.get(url, params=values)
        data = json.loads(req.text)
        return data["access_token"]

    def send_msg(self,values):
        #      ,         ,       ,"touser" : "ZhangYuan","agentid":"1000002",
        url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=" + self.get_token()
        values = {"touser" : "ZhangYuan",
          "toparty":"",
          "totag":"",
          "msgtype":"text",
          "agentid":"1000002",
          "text":{
            "content": values   #       
          },
          "safe":"0"
          }
        a = requests.post(url, json=values)
alert = WechatAlert('id,'secret')
if __name__ == '__main__':
    alert.send_msg("    "))

기업 ID는 기업 위챗 – > 내 기업 – > 기업 정보에 로그인하여 시크릿을 볼 수 있습니다. 시크릿은 앱과 애플릿을 클릭한 다음에 어떤 앱을 통해 전송할지 선택할 수도 있고, 자체적으로 만들 수도 있습니다. 앱을 선택한 후api를 누르면 시크릿 send 를 볼 수 있습니다.msg 방법이 전송하는 매개 변수는 전송하는 내용입니다

좋은 웹페이지 즐겨찾기