├── .DS_Store ├── .gitignore ├── README.md ├── cache ├── cookie └── webToken ├── config.php ├── include ├── LeaWeiXinClient.php └── WeiXin.php └── test.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/README.md -------------------------------------------------------------------------------- /cache/cookie: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/webToken: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/config.php -------------------------------------------------------------------------------- /include/LeaWeiXinClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/include/LeaWeiXinClient.php -------------------------------------------------------------------------------- /include/WeiXin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/include/WeiXin.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lealife/WeiXin-Private-API/HEAD/test.php --------------------------------------------------------------------------------