python 微信企业号

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 微信企业号相关的知识,希望对你有一定的参考价值。

 

 

 

 

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 微信企业号的主要内容,如果未能解决你的问题,请参考以下文章

PYTHON发送微信企业号脚本

python实现微信企业号的文本消息推送

微信企业号:python 利用itchatmp开启回调模式/判断信息--回复指定内容

另外一个给微信企业号发文字信息的python脚本

微信企业号开发部分代码

调用微信API发送微信消息python脚本