DEV Community

Cover image for Setting up reCAPTCHA in your React Application
Kayode
Kayode

Posted on • Originally published at blog.zt4ff.dev

Setting up reCAPTCHA in your React Application

reCAPTCHA is a tool that can protect your applications from fraudulent actions by generating adaptive challenges to keep bots or automated programs with malicious intent from interacting with your applications. It does this in a way that ensures legitimate users (humans) can interact with your browser while blocking bots or automated programs.

A simple description of the usefulness of reCAPTCHA can be described in a scenario where you created an online store that allows users to submit reviews to different vendors. Without a process to filter real users from bots/automated programs, users can create multiple bots with the malicious intent of spamming a vendor with negative or untrue reviews.

Setting up a React Application

Using the create-react-app package, generate a new react application on your machine by running the command:

npx create-react-app sample_app
Enter fullscreen mode Exit fullscreen mode

Next, create a mock sign-in page with a form by updating the App component:

import React from "react"
import "./App.css"

function App() {
  return (
    <form>
      <input id='username' name='username' placeholder="Username" />
      <input type="password" id='password' name='password' placeholder="Password" />
      <button>Login</button>
    </form>
  )
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Then rewrite the ./App.css file to make the application a little bit pleasing to the eyes:

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

form {
  width: 300px;
  display: flex;
  flex-direction: column;
}

input, button {
  text-align: center;
  height: 50px;
  margin: 15px 0;
  border: 1px solid #000
}

button {
  background: #ff00ff;
  color: #fff;
  cursor: pointer;
}

button:disabled {
  background: #a5a5a5;
  cursor: not-allowed;
}
Enter fullscreen mode Exit fullscreen mode

Then start the application server by running the command via your command line:

npm start
Enter fullscreen mode Exit fullscreen mode

You should have a running application at http://localhost:3000/ as such:

sample_app

Generating reCAPTCHA Secret Keys

There are three current versions of Google’s reCAPTCHA:

  • reCAPTCHA v2
  • reCAPTCHA v3
  • reCAPTCHA Enterprises

For the purpose of this article, we are making use of the reCAPTCHA v2 which has the famous “I’m not a robot” checkbox.

First, you need to get a Client Key from the Google reCAPTCHA admin console by clicking here, which leads to this page below:

google_recapcha_config

Enter the label to be able to identify the different projects or sites on Google reCAPTCHA. Select reCAPTCHA v2 under the reCAPTCHA type option then the ”I’m not a robot” Checkbox option.

The Domains option allows you to configure the number of domains (including subdomains) that has access to the registration. Since our react application is in development, you will add “localhost” in the Domain option.

Accept the reCAPTCHA terms of service then click the submit button to generate some keys that will be used later in this article.

recaptcha_keys_gen

To use the site key as an embedded environment variable in your react application, create a .env file in the root directory of your application. Copy the code below into the .env file and replace the site key with the one you generated from the Admin Console.

REACT_APP_RECAPTCHA_SITE_KEY=your_site_key
Enter fullscreen mode Exit fullscreen mode

Integrating reCAPTCHA with React

To integrate reCAPTCHA into your React application, we are making use of the react-google-recaptcha packages which provide a React component for reCAPTCHA v2.

First, install the package into your program by running this command via your command line:

npm install --save react-google-recaptcha
Enter fullscreen mode Exit fullscreen mode

The react-google-recaptcha package provides a ReCAPTCHA component to be used, for instance, as such:

import ReCAPTCHA from "react-google-recaptcha";

function onChange(value) {
    // what happens when 
  console.log("captcha value:", value);
}

ReactDOM.render(
  <ReCAPTCHA
    sitekey="The client site key from the Google reCAPTCHA admin console"
    onChange={onChange}
  />,
  document.body
)
Enter fullscreen mode Exit fullscreen mode

The sitekey and onChange props are only necessary for the basic functionality of the ReCAPTCHA component but there are some optional props that can configure the appearance or the operations of the component. Some of the props :

  • sitekey: the client key from Google reCAPTCHA Admin Console
  • onChange: the function that is called when a user completes the captcha successfully
  • theme: (light or dark) sets the theme of the reCAPTCHA widget
  • type: (image or audio) defines the type of initial captcha
  • tabindex: the tabindex of the element
  • onExpired: the function that is called when a captcha has expired
  • size: (compact, normal, or invisible) allows you to define the size of the reCAPTCHA widget or do an invisible captcha.

Next, you will make use of the package in your program by updating the App component as such:

import React from "react";
import "./App.css";
import  ReCAPTCHA  from "react-google-recaptcha";

function App() {
  const [isCaptchaSuccessful, setIsCaptchaSuccess] = React.useState(false)

  function onChange(value) {
    setIsCaptchaSuccess(true)
    console.log("captcha value: ", value);
  }

  return (
    <>
      <form>
        <input id="username" name="username" placeholder="Username" />
        <input
          type="password"
          id="password"
          name="password"
          placeholder="Password"
        />
        <ReCAPTCHA
          sitekey={process.env.REACT_APP_RECAPTCHA_SITE_KEY}
          onChange={onChange}
          />
          <button disabled={!isCaptchaSuccessful}>Login</button>
      </form>
    </>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

The isCaptchaSuccessful state is used to ensure the submit button is disabled until the captcha challenge is successfully completed.

As it is not recommended to validate only from the client side, you not only rely on the reCAPTCHA implementation on the client side. You can send the token derived from the onChange props and verify it from the server side using Google’s reCAPTCHA server-side API. You can find more about this here.

create-react-app cannot bundle environment variables from the .env file at runtime so you need to rebuild the react app by ending the previous server you started and starting a new one with the command:

npm start
Enter fullscreen mode Exit fullscreen mode

Then the reCAPTCHA widget with a disabled submit button would be visible on your application as such:

non_confirmed_captcha

Passing the challenge would make the button accessible as such:

successful_captcha

Conclusion

At the end of this article, we discussed what reCAPTCHA is and how it can prevent your application from malicious bots or automated programs. You also demonstrated how to integrate reCAPTCHA into a React application.

I hope you find the article helpful to help you prevent your React applications from bots or malicious automated programs.

I am currently building a newsletter to share informative articles and news, my progress in creating startups with little experience and how you can learn from my experience.

Please subscribe via this link.

Latest comments (0)