Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chenhg5/go-wechat-client
go-wechat go client
https://github.com/chenhg5/go-wechat-client
Last synced: about 1 month ago
JSON representation
go-wechat go client
- Host: GitHub
- URL: https://github.com/chenhg5/go-wechat-client
- Owner: chenhg5
- Created: 2018-07-02T03:09:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-02T06:54:49.000Z (over 6 years ago)
- Last Synced: 2024-10-02T09:07:00.312Z (about 2 months ago)
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-wechat-client
go-wechat go client
## install
```shell
go get github.com/chenhg5/go-wechat-client
```## usage
```go
package mainimport (
wsdk "github.com/chenhg5/go-wechat-client"
"fmt"
)func main() {
data, err := wsdk.SetAddr("http://localhost:4001/call").SetAcid("2").WxappOauth("123")fmt.Println(data)
fmt.Println(err)
}
```