91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python3開發微信企業號發送圖文的示例源碼

發布時間:2021-01-25 10:03:58 來源:億速云 閱讀:148 作者:小新 欄目:移動開發

小編給大家分享一下python3開發微信企業號發送圖文的示例源碼,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

 
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests
import json
import urllib.request
 
ID="xxxxxxxxxxxx"  
Secret="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 
UserID = "hequan2011"##成員ID列表(消息接收者,多個接收者用'|'分隔,最多支持1000個)。特殊情況:指定為@all,則向關注該企業應用的全部成員發送
PartyID=17  ##部門ID列表,多個接收者用‘|’分隔,最多支持100個。當touser為@all時忽略本參數
AppID = 0  ##應用ID,默認是 企業小助手  企業應用的id,整型。可在應用的設置頁面查看
 
 
 
def get_token():  ##獲取TOKEN
    gurl = "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={}&corpsecret={}".format(ID, Secret)
    r=requests.get(gurl)
    dict_result= (r.json())
    return dict_result['access_token']
def get_media_ID(path):  ##上傳到臨時素材  圖片ID
    Gtoken = get_token()
    img_url = "https://qyapi.weixin.qq.com/cgi-bin/media/upload?access_token={}&type=image".format(Gtoken)
    files = {'image': open(path, 'rb')}
    r = requests.post(img_url, files=files)
    re = json.loads(r.text)
    return re['media_id']
##
 
 
  
def  send_text(text):  ##發送文字
    post_data = {}
    msg_content = {}
    msg_content['content'] = text  ## 消息內容,最長不超過2048個字節
    post_data['touser'] = UserID
    post_data['toparty'] = PartyID
    post_data['msgtype'] = 'text'
    post_data['agentid'] = AppID
    post_data['text'] = msg_content
    post_data['safe'] = '0'  #表示是否是保密消息,0表示否,1表示是,默認0
    Gtoken = get_token()
    purl1="https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={}".format(Gtoken)
    json_post_data = json.dumps(post_data,False,False)
    request_post = urllib.request.urlopen(purl,json_post_data.encode(encoding='UTF8'))
    return request_post
     
     
     
def  send_tu(path):  ##發送圖片
    img_id = get_media_ID(path)
    post_data1 = {}
    msg_content1 = {}
    msg_content1['media_id'] = img_id
    post_data1['touser'] = UserID
    post_data1['toparty'] = PartyID
    post_data1['msgtype'] = 'image'
    post_data1['agentid'] = AppID
    post_data1['image'] = msg_content1
    post_data1['safe'] = '0'
    Gtoken = get_token()
    purl2="https://cache.yisu.com/upload/information/20201208/260/11154")  ##圖片目錄
send_text("123-何全")  ##文字內容

以上是“python3開發微信企業號發送圖文的示例源碼”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三江| 贵州省| 普定县| 勃利县| 禹州市| 南乐县| 龙江县| 名山县| 乌兰浩特市| 正定县| 平武县| 吴忠市| 株洲市| 宁蒗| 保定市| 大姚县| 营口市| 民县| 商水县| 布拖县| 尼木县| 房山区| 锡林郭勒盟| 武宁县| 西乌珠穆沁旗| 株洲县| 南城县| 进贤县| 富裕县| 固阳县| 崇文区| 合川市| 潜江市| 曲阜市| 政和县| 长白| 十堰市| 滦平县| 喜德县| 博客| 弥勒县|