7 Star 53 Fork 22

北京小程科技有限公司 / 支付宝

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
client.go 471 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-13 13:17 . 更新测试连接的位置。
package alipay
type Client struct {
config Config // 配置信息
publicKey string // 支付宝公钥
privateKey string // 应用私钥
isProd bool // 是否是生产环境
}
// 初始化支付宝客户端
func NewClient(isProd bool, publicKey string, privateKey string, config Config) (client *Client) {
client = new(Client)
client.config = config
client.publicKey = publicKey
client.privateKey = privateKey
client.isProd = isProd
return client
}
Go
1
https://gitee.com/xiaochengtech/alipay.git
git@gitee.com:xiaochengtech/alipay.git
xiaochengtech
alipay
支付宝
master

搜索帮助