A Go client for the Friendly Captcha service. This client allows for easy integration and verification of captcha responses with the Friendly Captcha API.
This library is for Friendly Captcha V2 only. If you are looking for V1, look here
go get github.com/friendlycaptcha/friendly-captcha-goBelow are some basic examples of how to use the client.
For a more detailed example, take a look at the example directory.
import friendlycaptcha "github.com/friendlycaptcha/friendly-captcha-go"
...
opts := []friendlycaptcha.ClientOption{
friendlycaptcha.WithAPIKey("YOUR_API_KEY"),
friendlycaptcha.WithSitekey("YOUR_SITEKEY"),
}
frcClient, err := friendlycaptcha.NewClient(opts...)
if err != nil {
// handle possible configuration error
}After calling VerifyCaptchaResponse with the captcha response there are two functions on the result object that you should check:
WasAbleToVerify()indicates whether we were able to verify the captcha response. This will befalsein case there was an issue with the network/our service or if there was a mistake in the configuration.ShouldAccept()indicates whether the captcha response was correct. If the client is running in non-strict mode (default) andWasAbleToVerify()returnedfalse, this will betrue.
Below are some examples of this behaviour.
result := frcClient.VerifyCaptchaResponse(context.TODO(), "CORRECT_CAPTCHA_RESPONSE_HERE")
fmt.Println(result.WasAbleToVerify()) // true
fmt.Println(result.ShouldAccept()) // trueresult := frcClient.VerifyCaptchaResponse(context.TODO(), "INCORRECT_CAPTCHA_RESPONSE_HERE")
fmt.Println(result.WasAbleToVerify()) // true
fmt.Println(result.ShouldAccept()) // falseVerifying an incorrect captcha response with issues (network issues or bad configuration) when veryfing in non-strict mode (default):
result := frcClient.VerifyCaptchaResponse(context.TODO(), "INCORRECT_CAPTCHA_RESPONSE_HERE")
fmt.Println(result.WasAbleToVerify()) // false
fmt.Println(result.ShouldAccept()) // trueVerifying an incorrect captcha response with issues (network/service issues or bad configuration) when veryfing in strict mode:
frcClient, _ := friendlycaptcha.NewClient(
...
friendlycaptcha.WithStrictMode(true),
)
result := frcClient.VerifyCaptchaResponse(context.TODO(), "INCORRECT_CAPTCHA_RESPONSE_HERE")
fmt.Println(result.WasAbleToVerify()) // false
fmt.Println(result.ShouldAccept()) // falseThe client offers several configuration options:
- WithAPIKey: Your Friendly Captcha API key.
- WithSitekey: Your Friendly Captcha sitekey.
- WithStrictMode: (Optional) In case the client was not able to verify the captcha response at all (for example if there is a network failure or a mistake in configuration), by default the
VerifyCaptchaResponsereturnsTrueregardless. By passingWithStrictMode(true), it will returnfalseinstead: every response needs to be strictly verified. - WithAPIEndpoint: (Optional) The endpoint for the site verification API. Shorthands
euorglobalare also accepted. Default isglobal.
First run the SDK Test server, then run go test.
docker run -p 1090:1090 friendlycaptcha/sdk-testserver:latest
go test -v -tags=sdkintegration ./...Open source under MIT.