Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guidao/gopay
golang语言实现的支付模块,支持支付宝app,支付宝网页版,微信app,微信公众号支付
https://github.com/guidao/gopay
alipay payment wechat
Last synced: 5 days ago
JSON representation
golang语言实现的支付模块,支持支付宝app,支付宝网页版,微信app,微信公众号支付
- Host: GitHub
- URL: https://github.com/guidao/gopay
- Owner: guidao
- Created: 2016-08-15T09:46:15.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-18T12:17:52.000Z (almost 8 years ago)
- Last Synced: 2024-08-02T18:39:22.257Z (3 months ago)
- Topics: alipay, payment, wechat
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 156
- Watchers: 18
- Forks: 50
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* golang语言实现的支付库
最近在搞支付这块,但是网上的代码基本没有能用的,要么不全,要么有硬伤,所以最后还是自己接了。抽出写的一部分代码,封装下分享出来,希望能给大家一点借鉴意义。
* 支持的支付方式
目前支持微信app,支付宝网页版,支付宝app。要是谁有新的支付方式也可以合并。
* 使用方法
#+BEGIN_SRC go
package mainimport (
"fmt"
"github.com/guidao/gopay"
"github.com/guidao/gopay/client"
"github.com/guidao/gopay/common"
"github.com/guidao/gopay/constant"
"net/http"
)//支付宝举例
func main() {
//设置支付宝账号信息
initClient()
//设置回调函数
initHandle()//支付
charge := new(common.Charge)
charge.PayMethod = constant.WECHAT //支付方式
charge.MoneyFee = 1 // 支付钱单位分
charge.Describe = "test pay" //支付描述
charge.TradeNum = "1111111111" //交易号
charge.CallbackURL = "http://127.0.0.1/callback/aliappcallback" //回调地址必须跟下面一样fdata, err := gopay.Pay(charge)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(fdata)
}func initClient() {
client.InitAliAppClient(&client.AliAppClient{
PartnerID: "xxx",
SellerID: "xxxx",
AppID: "xxx",
PrivateKey: nil,
PublicKey: nil,
})
}func initHandle() {
http.HandleFunc("callback/aliappcallback", func(w http.ResponseWriter, r *http.Request) {
//返回支付结果
aliResult, err := gopay.AliAppCallback(w, r)
if err != nil {
fmt.Println(err)
//log.xxx
return
}
//接下来处理自己的逻辑
fmt.Println(aliResult)
})
}
#+END_SRC