Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 main

import (
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)
}
```