mirror of
https://github.com/silenceper/wechat.git
synced 2026-03-01 00:35:26 +08:00
adf142dac2
* [feature] Format the code and improve Mini Program authorization to obtain openid(miniprogram/auth/auth.go Code2Session) * [feature] CheckEncryptedData (https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/user-info/auth.checkEncryptedData.html) * upgrade json error * upgrade json error * [feature] Wallet Transfer returns the pointer object * feat:Adaptation of new go-redis components * improve code * feat:upgrade golangci-lint-action version * fix * test ci * fix * test ci * fix * test * improve code * feat:GetPhoneNumber return ptr * fix: ptr Elem() error * improve code * improve code * improve code * improve code * upgrade go version v1.15 * improve .golangci.yml * feat:modify redis version v8.11.5 Co-authored-by: houseme <houseme@outlook.com>
85 lines
2.2 KiB
Markdown
85 lines
2.2 KiB
Markdown
# WeChat SDK for Go
|
|
|
|

|
|
[](https://goreportcard.com/report/github.com/silenceper/wechat)
|
|
[](https://pkg.go.dev/github.com/silenceper/wechat/v2?tab=doc)
|
|

|
|
|
|
使用Golang开发的微信SDK,简单、易用。
|
|
> 注意:当前版本为v2版本,v1版本已废弃
|
|
|
|
## 文档 && 例子
|
|
|
|
[API列表](https://github.com/silenceper/wechat/tree/v2/doc/api)
|
|
|
|
[Wechat SDK 2.0 文档](https://silenceper.com/wechat)
|
|
|
|
[Wechat SDK 2.0 例子](https://github.com/gowechat/example)
|
|
|
|
## 快速开始
|
|
|
|
```
|
|
import "github.com/silenceper/wechat/v2"
|
|
```
|
|
|
|
以下是一个微信公众号处理消息接收以及回复的例子:
|
|
|
|
```go
|
|
// 使用memcache保存access_token,也可选择redis或自定义cache
|
|
wc := wechat.NewWechat()
|
|
memory := cache.NewMemory()
|
|
cfg := &offConfig.Config{
|
|
AppID: "xxx",
|
|
AppSecret: "xxx",
|
|
Token: "xxx",
|
|
// EncodingAESKey: "xxxx",
|
|
Cache: memory,
|
|
}
|
|
officialAccount := wc.GetOfficialAccount(cfg)
|
|
|
|
// 传入request和responseWriter
|
|
server := officialAccount.GetServer(req, rw)
|
|
// 设置接收消息的处理方法
|
|
server.SetMessageHandler(func(msg *message.MixMessage) *message.Reply {
|
|
|
|
// 回复消息:演示回复用户发送的消息
|
|
text := message.NewText(msg.Content)
|
|
return &message.Reply{MsgType: message.MsgTypeText, MsgData: text}
|
|
})
|
|
|
|
// 处理消息接收以及回复
|
|
err := server.Serve()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
// 发送回复的消息
|
|
server.Send()
|
|
|
|
```
|
|
|
|
## 目录说明
|
|
|
|
- officialaccount: 微信公众号API
|
|
- miniprogram: 小程序API
|
|
- minigame:小游戏API
|
|
- pay:微信支付API
|
|
- openplatform:开放平台API
|
|
- work:企业微信
|
|
- aispeech:智能对话
|
|
- doc: api文档
|
|
|
|
## 贡献
|
|
|
|
- 在[API列表](https://github.com/silenceper/wechat/tree/v2/doc/api)中查看哪些API未实现
|
|
- 提交issue,描述需要贡献的内容
|
|
- 完成更改后,提交PR
|
|
|
|
## 公众号
|
|
|
|

|
|
|
|
## License
|
|
|
|
Apache License, Version 2.0
|