├── .github ├── FUNDING.yml └── workflows │ ├── ci.yaml │ └── golangci-lint.yml ├── .gitignore ├── LICENSE ├── README.md ├── apis ├── account │ └── account.go ├── auth │ ├── auth.go │ ├── auth_test.go │ └── example_auth_test.go └── oauth │ └── oauth.go ├── client.go ├── cmd ├── apiconfig.go ├── build.go └── data │ └── .gitignore ├── doc ├── apilist.md └── img │ ├── sdk.gliffy │ └── sdk.jpg ├── go.mod ├── go.sum ├── server.go ├── test └── test.go ├── type └── type_platform │ └── type_platform.go └── wxopen.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | book/ 4 | *tmp.go 5 | TODO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/README.md -------------------------------------------------------------------------------- /apis/account/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/apis/account/account.go -------------------------------------------------------------------------------- /apis/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/apis/auth/auth.go -------------------------------------------------------------------------------- /apis/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/apis/auth/auth_test.go -------------------------------------------------------------------------------- /apis/auth/example_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/apis/auth/example_auth_test.go -------------------------------------------------------------------------------- /apis/oauth/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/apis/oauth/oauth.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/client.go -------------------------------------------------------------------------------- /cmd/apiconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/cmd/apiconfig.go -------------------------------------------------------------------------------- /cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/cmd/build.go -------------------------------------------------------------------------------- /cmd/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /doc/apilist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/doc/apilist.md -------------------------------------------------------------------------------- /doc/img/sdk.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/doc/img/sdk.gliffy -------------------------------------------------------------------------------- /doc/img/sdk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/doc/img/sdk.jpg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/go.sum -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/server.go -------------------------------------------------------------------------------- /test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/test/test.go -------------------------------------------------------------------------------- /type/type_platform/type_platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/type/type_platform/type_platform.go -------------------------------------------------------------------------------- /wxopen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastwego/wxopen/HEAD/wxopen.go --------------------------------------------------------------------------------