Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/friendlyCaptcha/friendly-captcha-go-sdk

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/friendlyCaptcha/friendly-captcha-go-sdk

  • v0.1.3
  • Source
  • Go
  • Socket score

Version published
Created
Source

friendly-captcha-go-sdk

A Go client for the Friendly Captcha verification API.

Installation

go get github.com/friendlycaptcha/friendly-captcha-go-sdk

Usage

import "github.com/friendlycaptcha/friendly-captcha-go-sdk"

frcClient := friendlycaptcha.NewClient(apikey, sitekey)
// In your middleware or request handler
solution := r.FormValue(friendlycaptcha.SolutionFormFieldName)
shouldAccept, err := frcClient.CheckCaptchaSolution(r.Context(), solution)

if err != nil {
    if errors.Is(err, friendlycaptcha.ErrVerificationFailedDueToClientError) {
        log.Printf("!!!!!\n\nFriendlyCaptcha is misconfigured! Check your Friendly Captcha API key and sitekey: %v\n", err)
        // Send yourself an alert - the captcha won't be able to do its job to prevent spam.
    } else if (errors.Is(err, friendlycaptcha.ErrVerificationRequest)) {
        log.Printf("Could not talk to the Friendly Captcha API: %v\n", err)
        // Perhaps the Friendly Captcha API is down?
    }
}

if !shouldAccept { // The captcha was invalid
    // Show the user a message that the anti-robot verification failed and that they should try again
    return
}

// The captcha check was succesful, handle the request :)

Beware that the CheckCaptchaSolution function returns two values:

  • Whether you should accept the request (bool)
  • An error (or nil)

Even if the error is non-nil, the first boolean value may still be true and you should accept the request!

Advanced, optional strictness setting

As a best practice we accept the captcha solution if we are unable to verify it: if we misconfigure our apikey or Friendly Captcha's API goes down we would rather accept all requests than lock all users out.

If you want to change this behavior you can set client.Strict to true, then the accept value will only be true if we were actually able to verify the captcha solution and it was valid.

Example

Run the example

cd examples/form
FRC_SITEKEY=<my sitekey> FRC_APIKEY=<my api key> go run main.go

Then open your browser and head to http://localhost:8844

Note: you can create a sitekey and API key in the Friendly Captcha dashboard.

Example Screenshot

Example screenshot

License

MIT

FAQs

Package last updated on 07 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc