package response type Captcha struct { Id string `json:"id"` Captcha string `json:"captcha"` } type LocationResult struct { Status int `json:"status"` Message string `json:"message"` Result Location `json:"result"` } type Location struct { Ip string `json:"ip"` AdInfo AdInfo `json:"ad_info"` } type AdInfo struct { Nation string `json:"nation"` Province string `json:"province"` City string `json:"city"` District string `json:"district"` Adcode string `json:"adode"` }