ppeerit/wechat

Library for wechat platform

dev-master 2016-10-17 00:15 UTC

This package is not auto-updated.

Last update: 2024-10-26 19:38:02 UTC


README

微信企业号开发SDK for thinkphp 5.0
支持多公众号管理
自动管理access_token
暂不支持其他框架 因为使用了tp5的缓存机制
后期再进行修改

安装

使用命令

composer require ppeerit/wechat

使用

###加载命名空间

use Ppeerit\Wechat\WechatQy;

###实例化企业号对象

// 设置调用的缓存文件名称,默认wechatqy
WechatQy::setConfig('wechat2');
// 实例化授权类
$oauth = & WechatQy::instance('Oauth');

待完善