geetest.go 251 B

123456789101112
  1. package geetest
  2. type ProcessRes struct {
  3. Success int8 `json:"success"`
  4. CaptchaID string `json:"gt"`
  5. Challenge string `json:"challenge"`
  6. NewCaptcha int `json:"new_captcha"`
  7. }
  8. type ValidateRes struct {
  9. Seccode string `json:"seccode"`
  10. }