CAPTCHAFORUM
Administrator
Little wrapper for 2captcha API
https://githubmemory.com/repo/LeoCBS/2captcha
Go get
Upload image base64
Polling result
https://githubmemory.com/repo/LeoCBS/2captcha
Go get
go get github.com/LeoCBS/2captcha
Upload image base64
twocaptcha, _ := captcha.New("yourKey")
captchaID, err := twocaptcha.UploadBase64Image("dHdvY2FwdGNoYQ==")
Polling result
Code:
iniAveragePollingTime := 1
pollingTime := 1
solution, err := twocaptcha.PollingCaptchaResponse(captchaID, iniAveragePollingTime, pollingTime)
if err != nil {
t.Errorf("unable to get captcha response: %s", err)
}