代码拉取完成,页面将自动刷新
package gowe
//IWxConfig 微信的基础配置
type IWxConfig interface {
//Id 数据库记录的Id
GetId() string
//AppId 微信号的appId
GetAppId() string
//AccessToken 获取到AccessToken
GetAccessToken() string
//Secret 微信号的secret
GetSecret() string
}
//IWxMpConfig 公众号的配置
type IWxMpConfig interface {
IWxConfig
//Token 获取token
GetToken() string
//AesKey 获取aesKey
GetAesKey() string
//开启oauth2.0认证,是否能够获取openId,0是关闭,1是开启
GetOauth2() bool
}
//IWxMaConfig 微信小程序配置
type IWxMaConfig interface {
IWxConfig
}
//IWxPayConfig 公众号的配置
type IWxPayConfig interface {
IWxConfig
//证数文件路径
GetCertificateFile() string
//支付的mchId
GetMchId() string
GetSubAppId() string // 微信分配的子商户公众账号ID
GetSubMchId() string // 微信支付分配的子商户号,开发者模式下必填
//获取 API 密钥
GetAPIKey() string
//支付通知回调的地址
GetNotifyUrl() string
//摘要加密类型
GetSignType() string
GetServiceType() int // 服务模式
IsProd() bool // 是否是生产环境
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。