You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wechatoffice/get.go

20 lines
391 B

package wechatoffice
func (c *Client) GetAppId() string {
return c.config.AppId
}
func (c *Client) GetAppSecret() string {
return c.config.AppSecret
}
func (c *Client) getAccessToken() string {
c.config.AccessToken = c.GetAccessToken()
return c.config.AccessToken
}
func (c *Client) getJsapiTicket() string {
c.config.JsapiTicket = c.GetJsapiTicket()
return c.config.JsapiTicket
}