真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

這篇文章將為大家詳細(xì)講解有關(guān)Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

成都創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供鶴山企業(yè)網(wǎng)站建設(shè),專(zhuān)注與成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、H5技術(shù)、小程序制作等業(yè)務(wù)。10年已為鶴山眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。

個(gè)人注冊(cè)企業(yè)微信號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)

requests的使用

  • 首先需要安裝requests庫(kù):pip install requests;

  • 然后通過(guò)import requests導(dǎo)入使用;

  • requests.get()方法可以獲取某個(gè)網(wǎng)頁(yè),requests.post()可以發(fā)送POST請(qǐng)求;

  • 更多可以查看: http://docs.python-requests.org/zh_CN/latest/user/quickstart.html

企業(yè)微信的參數(shù)

  • Corpid:表示企業(yè)ID,可以在企業(yè)微信->我的企業(yè)->企業(yè)ID;

  • Secret:應(yīng)用的Secret,在應(yīng)用與小程序->創(chuàng)建的應(yīng)用程序->Secret;

  • PartyID:通訊錄部門(mén)ID,通訊錄->部門(mén)->部門(mén)ID;

  • Agentid:應(yīng)用ID,在應(yīng)用與小程序->創(chuàng)建的應(yīng)用程序->AgentId;

JSON 響應(yīng)內(nèi)容

  • Requests 中也有一個(gè)內(nèi)置的 JSON 解碼器,用來(lái)處理 JSON 數(shù)據(jù),如r.json(),如果 JSON 解碼失敗,r.json()就會(huì)拋出一個(gè)異常;

  • 需要注意的是,成功調(diào)用 r.json() 并不意味著響應(yīng)的成功,有的服務(wù)器會(huì)在失敗的響應(yīng)中包 含一個(gè) JSON 對(duì)象(比如 HTTP 500 的錯(cuò)誤細(xì)節(jié)),這種 JSON 會(huì)被解碼返回。要檢查請(qǐng) 求是否成功,請(qǐng)使用 r.raise_for_status() 或者檢查 r.status_code 是否和你的期望相同;

發(fā)送測(cè)試數(shù)據(jù)到企業(yè)微信

import requests
import sys
import json
def GetToken(Corpid,Secret):
    Url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
    Data = {
        "corpid":Corpid,
        "corpsecret":Secret
    }
    r = requests.get(url=Url,params=Data)
    Token = r.json()['access_token']
    return Token
def SendMessage(Token,Agentid,Subject,Content,):
    Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
    Data = {
        "toparty": PartyID,
        "msgtype": "text",
        "agentid": Agentid,
        "text": {
            "content": Subject + '\n' + Content
        },
        "safe": "0"
    }
    ret = requests.post(url=Url,data=json.dumps(Data))
    return ret.text
if __name__ == '__main__':
    Subject = sys.argv[1]
    Content = sys.argv[2]
    # CorpID是企業(yè)ID
    Corpid = "ww5cfabaf35ce8cd7b"
    # 應(yīng)用的Secret
    Secret = "uiwvmNj8f1IVy3QYrZ62WePGFKA_BsIPmHigq3TRydM"
    # 通訊錄部門(mén)ID
    PartyID = "1"
    # 應(yīng)用ID
    Agentid = "1000002"
    Token = GetToken(Corpid, Secret)
    status = SendMessage(Token, Agentid, Subject, Content)
    print(status)
  • 將企業(yè)微信封裝成接口,提供給外部調(diào)用

import requests
import json
class Wechat_Info:
    def __init__(self):
        self.partyID = '1'
        self.corpID = '企業(yè)ID'
        self.secret = '應(yīng)用的secret'
        self.agentID = '1000002'
        self.token = None
    def __get_token(self, corpid, secret):
        Url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
        Data = {
            "corpid": corpid,
            "corpsecret": secret
        }
        r = requests.get(url=Url, params=Data)
        token = r.json()['access_token']
        return token
    def send_message(self, message):
        url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={}".format(
            self.__get_token(self.corpID, self.secret))
        data = {
            "toparty": self.partyID,
            "msgtype": "text",
            "agentid": self.agentID,
            "text": {
                "content": message
            },
            "safe": "0"
        }
        result = requests.post(url=url, data=json.dumps(data))
        return result.text
if __name__ == '__main__':
    wechat_info = Wechat_Info()
    result = wechat_info.send_message('微信測(cè)試')
    print(result)

關(guān)于Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


當(dāng)前文章:Python數(shù)據(jù)怎么推送到微信企業(yè)號(hào)
當(dāng)前鏈接:http://weahome.cn/article/jhhhoi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部