代码拉取完成,页面将自动刷新
同步操作将从 bozz/微信Go SDK 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。