一个简单易用的微信 sdk
# WeChat SDK for Go 使用Golang开发的微信SDK,简单、易用。 ## 快速开始 以下是一个处理消息接收以及回复的例子: ```go //配置微信参数 config := &wechat.Config{ AppID: "xxxx", AppSecret: "xxxx", Token: "xxxx", EncodingAESKey: "xxxx", Cache: memCache } wc := wechat.NewWechat(config) // 传入request和responseWriter server := wc.GetServer(re...阅读全文