### WeChat SDK for Go
使用Golang开发的微信SDK,简单、易用。
### 快速开始
以下是一个处理消息接收以及回复的例子:
<pre class="brush:cpp; toolbar: true; auto-links: false;">//配置微信参数
config := &wechat.Config{
AppID: "xxxx",
AppSecret: "xxxx",
...阅读全文
2016-09-17 16:00:14
silenceper
wxpay 是一个使用Go语言编写的微信支付商户平台SDK。
## 举个栗子
以查询企业付款API为栗:
<pre class="brush:cpp ;toolbar: true; auto-links: false;">package main
import (
"log"
"github.com/go-with/wxpay"
)
const (
appId = "" // 微信公众平台应用ID
mc...阅读全文
2016-10-03 03:00:08
go-with