response.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package we_http
  2. import (
  3. "fmt"
  4. )
  5. // CommonError 微信返回错误信息
  6. type CommonError struct {
  7. ErrCode int `json:"errcode"` // 错误码
  8. ErrMSG string `json:"errmsg"` // 错误描述
  9. }
  10. // CommonResult 微信返回错误信息
  11. type CommonResult struct {
  12. ResultCode int `json:"resultcode"` // 错误码
  13. ResultMsg string `json:"resultmsg"` // 错误描述
  14. }
  15. // GetResponseError 获取微信服务器错返回误信息
  16. func (err CommonResult) GetResponseError() error {
  17. if err.ResultCode != 0 {
  18. return fmt.Errorf("wechat server error: code[%d] msg[%s]", err.ResultCode, err.ResultMsg)
  19. }
  20. return nil
  21. }
  22. // LoginResponse 返回给用户的数据
  23. type LoginResponse struct {
  24. OpenID string `json:"openid"`
  25. SessionKey string `json:"session_key"`
  26. // 用户在开放平台的唯一标识符
  27. // 只在满足一定条件的情况下返回
  28. UnionID string `json:"unionid"`
  29. }
  30. // Response 请求微信返回基础数据
  31. type BaseResponse struct {
  32. Errcode int `json:"errcode"`
  33. Errmsg string `json:"errmsg"`
  34. }