码迷,mamicode.com
首页 > 微信 > 详细

python 微信企业号

时间:2017-09-11 01:02:25      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:data   blank   app   simple   ext   user   def   发送消息   war   

 

 

 

 

python 微信企业号

 

准备,如果没有微信企业号,可以先申请体验号
记下CorpID和Secret(获取Token用)
技术分享

发送消息
首先可以在微信的开发者中心,查看接口文档

下面就是python代码:
1、根据CorpID和Secret得到token<喎?http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcD4NCjxwcmUgY2xhc3M9"brush:java;"> def get_token_in_time(corp_id, secret): res = urllib2.urlopen(‘https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=%s&corpsecret=%s‘ % (corp_id, secret)) res_dict = simplejson.loads(res.read()) token = res_dict.get(‘access_token‘, False) return token


2、send

def send_txt_msg(token, content, to_user="@all", to_party="", to_tag="", application_id=0, safe=0):
    try:
        data = {
            "touser": to_user,
            "toparty": to_party,
            "totag": to_tag,
            "msgtype": "text",
            "agentid": application_id,
            "text": {"content": content},
            "safe": safe
        }

        data = simplejson.dumps(data, ensure_ascii=False)
        print data, type(data)
        req = urllib2.Request(‘https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s‘ % (token,))
        resp = urllib2.urlopen(req, data)
        msg = u‘返回值:‘ + resp.read()
    except Exception, ex:
        msg = u‘异常:‘ + str(ex)
    finally:
        print msg

python 微信企业号

标签:data   blank   app   simple   ext   user   def   发送消息   war   

原文地址:http://www.cnblogs.com/adolfmc/p/7502818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!