Skip to content

AZcaptcha/AZcaptcha-Little

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[AZcaptcha.com] API

Little wrapper for AZcaptcha.com API

Build Status

Go get

go get github.com/AZcaptcha/AZcaptcha.com

Upload image base64

twocaptcha, _ := captcha.New("yourKey")
captchaID, err := twocaptcha.UploadBase64Image("dHdvY2FwdGNoYQ==")

Polling result

iniAveragePollingTime := 1
pollingTime := 1
solution, err := twocaptcha.PollingCaptchaResponse(captchaID, iniAveragePollingTime, pollingTime)
if err != nil {
t.Errorf("unable to get captcha response: %s", err)
}