当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 98

flanche/微信Go SDK
暂停

forked from bozz/微信Go SDK
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
client.go 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
leexs 提交于 2019-08-25 16:59 . 微信找零接口的对接
package wechat
type Client struct {
config Config // 配置信息
serviceType int // 服务模式
apiKey string // API Key
certFilepath string // 证书目录
certData []byte // 证书内容
isProd bool // 是否是生产环境
isMch bool // 是否是特殊的商户接口(微信找零)
}
// 是否是服务商模式
func (c *Client) isFacilitator() bool {
switch c.serviceType {
case ServiceTypeFacilitatorDomestic, ServiceTypeFacilitatorAbroad, ServiceTypeBankServiceProvidor:
return true
default:
return false
}
}
// 拼接完整的URL
func (c *Client) url(relativePath string) string {
if c.isProd {
return baseUrl + relativePath
} else {
return baseUrlSandbox + relativePath
}
}
// 初始化微信客户端
func NewClient(isProd bool, isMch bool, serviceType int, apiKey string, certFilepath string, config Config) (client *Client) {
client = new(Client)
client.config = config
client.serviceType = serviceType
client.apiKey = apiKey
client.certFilepath = certFilepath
client.isProd = isProd
client.isMch = isMch
return client
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flanche/wechat.git
git@gitee.com:flanche/wechat.git
flanche
wechat
微信Go SDK
master

搜索帮助