wechatpy.enterprise.client 源代码

# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

from wechatpy.client.base import BaseWeChatClient
from wechatpy.enterprise.client import api


[文档]class WeChatClient(BaseWeChatClient): API_BASE_URL = 'https://qyapi.weixin.qq.com/cgi-bin/' agent = api.WeChatAgent() appchat = api.WeChatAppChat() batch = api.WeChatBatch() calendar = api.WeChatCalendar() chat = api.WeChatChat() department = api.WeChatDepartment() external_contact = api.WeChatExternalContact() external_contact_group_chat = api.WeChatExternalContactGroupChat() jsapi = api.WeChatJSAPI() material = api.WeChatMaterial() media = api.WeChatMedia() menu = api.WeChatMenu() message = api.WeChatMessage() misc = api.WeChatMisc() oauth = api.WeChatOAuth() schedule = api.WeChatSchedule() service = api.WeChatService() shakearound = api.WeChatShakeAround() tag = api.WeChatTag() user = api.WeChatUser() OA = api.WeChatOA() def __init__(self, corp_id, secret, access_token=None, session=None, timeout=None, auto_retry=True): self.corp_id = corp_id self.secret = secret super(WeChatClient, self).__init__( corp_id, access_token, session, timeout, auto_retry ) @property def access_token_key(self): return '{0}_{1}_access_token'.format(self.corp_id, self.secret[:10])
[文档] def fetch_access_token(self): """ Fetch access token""" return self._fetch_access_token( url='https://qyapi.weixin.qq.com/cgi-bin/gettoken', params={ 'corpid': self.corp_id, 'corpsecret': self.secret } )