python weixin
支持微信小程序云开发
A Python client for the Weixin REST APIs
component | compatibility |
---|---|
Python | 2.*, 3.* |
pip install python-weixin
* requests
* simplejson
* six
* xmltodict
* pycryptodome
微信小程序登录文档
Python 实现小程序登录注册
from weixin import WXAPPAPI
from weixin.lib.wxcrypt import WXBizDataCrypt
api = WXAPPAPI(appid=APP_ID,
app_secret=APP_SECRET)
session_info = api.exchange_code_for_session_key(code=code)
# 获取session_info 后
session_key = session_info.get('session_key')
crypt = WXBizDataCrypt(WXAPP_APPID, session_key)
# encrypted_data 包括敏感数据在内的完整用户信息的加密数据
# iv 加密算法的初始向量
# 这两个参数需要js获取
user_info = crypt.decrypt(encrypted_data, iv)
Weixin API 使用 OAuth2 认证方式 详情见: https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&lang=zh_CN
具体使用方法参考 sample app
获取到access token 后,可以使用token 获取 用户信息等:
from weixin.client import WeixinAPI
scope = ("snsapi_login", )
api = WeixinAPI(appid=APP_ID,
app_secret=APP_SECRET,
redirect_uri=REDIRECT_URI)
authorize_url = api.get_authorize_url(scope=scope)
access_token = api.exchange_code_for_access_token(code=code)
api = WeixinAPI(access_token=access_token)
user = api.user(openid="openid")
from weixin.client import WeixinMpAPI
scope = ("snsapi_base", )
api = WeixinMpAPI(appid=APP_ID,
app_secret=APP_SECRET,
redirect_uri=REDIRECT_URI)
authorize_url = api.get_authorize_url(scope=scope)
access_token = api.exchange_code_for_access_token(code=code)
api = WeixinMpAPI(access_token=access_token)
user = api.user(openid="openid")
from weixin.pay import WeixinPay
wxpay = WeixinPay(appid='appid',
mch_id='mchid',
notify_url='url',
partner_key='key')
create_pay_info= {}
# 统一下单
wxpay.unifiedorder(**create_pay_info)
# 查询订单
wxapp.order_query(out_trade_no='out_trade_no')
# 企业付款
wxepay = WeixinEnterprisePay(appid='appid',
mch_id='mchid',
mch_key='mch_key',
mch_cert='mch_cert',
partner_key='key')
wxepay.transfers(partner_trade_no,
openid,
amount,
desc=u'结算')
# 企业付款查询
wxepay_query = WeixinEnterprisePayQuery(appid='appid',
mch_id='mchid',
mch_key='mch_key',
mch_cert='mch_cert',
partner_key='key')
wxepay_query.gettransferinfo(partner_trade_no)
参数 | 是否必须 | 说明 |
---|---|---|
button | 是 | 一级菜单数组,个数应为1~3个 |
sub_button | 否 | 二级菜单数组,个数应为1~5个 |
type | 是 | 菜单的响应动作类型 |
name | 是 | 菜单标题,不超过16个字节,子菜单不超过40个字节 |
key | click等点击类型必须 | 菜单KEY值,用于消息接口推送,不超过128字节 |
url | view类型必须 | 网页链接,用户点击菜单可打开链接,不超过1024字节 |
media_id media_id类型和view_limited类型必须 调用新增永久素材接口返回的合法media_id |
被动回复是在用户发出请求后在respone 中包含的内容
消息体见官方参考文档: 被动回复用户消息
API 列表
消息体见官方参考文档: 客服消息
API 列表
消息体见官方参考文档: 模板消息