package md const WxOfficialAccountRequestBaseUrl = "https://api.weixin.qq.com/" type CreateTokenResp struct { AccessToken string `json:"access_token"` ExpiresIn int64 `json:"expires_in"` } type CreateQrcodeResp struct { Ticket string `json:"ticket"` ExpireSeconds int64 `json:"expire_seconds"` Url string `json:"url"` }