geetest.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package model
  2. const (
  3. // MobileUserAgentFlag is
  4. MobileUserAgentFlag = "Mobile"
  5. // PlatH5 is
  6. PlatH5 = "h5"
  7. // PlatPC is
  8. PlatPC = "pc"
  9. )
  10. // ProcessRes 请求获取极验验证响应参数
  11. type ProcessRes struct {
  12. Success int64 `json:"success"`
  13. CaptchaID string `json:"gt"`
  14. Challenge string `json:"challenge"`
  15. NewCaptcha int `json:"new_captcha"`
  16. }
  17. //ValidateRes 验证返回值
  18. type ValidateRes struct {
  19. Seccode string `json:"seccode"`
  20. }
  21. // GeeCaptchaRequest 获取极验验证请求参数
  22. type GeeCaptchaRequest struct {
  23. MID int64 `json:"mid" form:"mid"`
  24. IP string `json:"ip" form:"ip"`
  25. // h5 web native
  26. ClientType string `json:"client_type" form:"client_type" default:"web"`
  27. }
  28. // GeeCheckRequest 校验极验验证码请求参数
  29. type GeeCheckRequest struct {
  30. MID int64
  31. Challenge string `json:"challenge" form:"challenge" validate:"required"`
  32. Validate string `json:"validate" form:"validate" validate:"required"`
  33. Seccode string `json:"seccode" form:"seccode" validate:"required"`
  34. ClientType string `json:"client_type" form:"client_type" default:"web"`
  35. }
  36. // GeeCheckResponse 校验极验验证码响应参数
  37. type GeeCheckResponse struct {
  38. NewVoucher string `json:"new_voucher"`
  39. }