Little wrapper for rucaptcha API
go get github.com/koteezy/ruCaptcha
re := ruCaptcha.New("APIKEY")
captcha, err := re.Default("url or base64")
re := ruCaptcha.New("APIKEY")
captcha, err := re.ReCaptcha("Page url", "Google Site Key")
If, after the checks, it turns out that the captcha has been solved incorrectly - you can complain about the wrong captcha. The last captcha ID is sent to the server.
re := ruCaptcha.New("APIKEY")
captcha, err := re.Default("Page url")
if captcha !== 3952 {
error := re.Report()
// if error ...
}