各位看官,我是orange小菜,初來扎道,不足之處還請指教,sharing make happy !!!python
1.我先把個人代碼甩出來,供你們參考一下,挺醜的,別介意哦!json
#!/usr/bin/python import requests import sys import json userID=sys.argv[1] subject=sys.argv[2] content=sys.argv[3] corpid='CorpID' #此處爲權限管理中每一個組的ID,其實說就一個ID,所有相同的 corpsecret="CortSecret"#此處爲權限管理中的密碼,其實嚴格來講是來區分其餘組的ID class WeiXin(object): #初始化變量 def __init__(self,corpid,corpsecret): self.corpid=corpid self.corpsecret=corpsecret #獲取token的值 def get_token(self): url='https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid='+\ self.corpid+'&corpsecret='+self.corpsecret get_data=requests.request("GET",url) get_token=get_data.json() token=get_token.get('access_token') return token #發送data,也就是推送到用戶 def send_data(self,user,subject,content): access_token=self.get_token() url='https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token='+\ access_token send_data={ "touser": user, #這是指的是通訊錄中不一樣組的用戶,當發送的用戶在組中沒法找到, 默認會向全部用戶發送 "toparty": 3, #這裏指的是通訊錄中的組ID, "msgtype": "text", "agentid": 3, #這裏指的是應用,也就是消息管理,那些人能夠收到本組信息那些不能夠 "text": { "content": '{0}{1}{2}'.format(subject,content,user) }, "safe": 0 } data=json.dumps(send_data,ensure_ascii=False) ret=requests.post(url,data=data) print ret.json() if '__main__'==__name__: User=WeiXin(corpid,corpsecret) User.send_data(userID,subject,content)
2.曾經走過的坑api
(a) 權限問題,和兩個地方有關係,第一與應用中心的某個應用的可見範圍有關係;第二和設置裏面功能設置中的權限管理有關。 (b)微信的使用問題,第一要建個通訊錄,找到正確的組ID,第二,應用中心agentid的建立並使用,第三,設置中分組要建立;
坑,解決掉就是路,解決不了仍是坑。微信