数据采集
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.
 
 
 
 
 
 

15 lines
349 B

  1. package md
  2. const WxOfficialAccountRequestBaseUrl = "https://api.weixin.qq.com/"
  3. type CreateTokenResp struct {
  4. AccessToken string `json:"access_token"`
  5. ExpiresIn int64 `json:"expires_in"`
  6. }
  7. type CreateQrcodeResp struct {
  8. Ticket string `json:"ticket"`
  9. ExpireSeconds int64 `json:"expire_seconds"`
  10. Url string `json:"url"`
  11. }