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

react-google-recaptcha-hook

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-google-recaptcha-hook

React Hook for Google reCAPTCHA v3

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.5K
decreased by-19.01%
Maintainers
1
Weekly downloads
 
Created
Source

React Hook for Google reCAPTCHA V3

https://www.google.com/recaptcha/intro/v3.html

Install

npm install react-google-recaptcha-hook

Usage

import { useGoogleReCaptcha } from "react-google-recaptcha-hook";

const YourComponent = () => {
  const { executeGoogleReCaptcha } = useGoogleReCaptcha(`${YOUR_SITE_KEY}`, {
    language: `${LANGUAGE_CODE}`, // optional, https://developers.google.com/recaptcha/docs/language
    enterprise: `${BOOLEAN}`, // optional, true if you want use enterprise edition
    recaptchaNet: `${BOOLEAN}`, // optional, true if you want use recaptcha.net instead of google.com
  });

  const handleReCaptchaVerify = useCallback(async () => {
    const token = await executeRecaptcha(`${YOUR_ACTION}`);

    // Do whatever you want with the token
  }, []);

  return <button onClick={handleReCaptchaVerify}>Submit</button>;
};

Example

import { useGoogleReCaptcha } from "react-google-recaptcha-hook";

const YourComponent = () => {
  const { executeGoogleReCaptcha } = useGoogleReCaptcha("ABCDEFG123456");

  const postComment = useCallback(async () => {
    const token = await executeRecaptcha("postComment");
    fetch("/api/echo", {
      method: "POST",
      body: JSON.stringify({
        comment: "hello",
        token,
      }),
    });
  }, []);

  return <button onClick={postComment}>POST</button>;
};

Keywords

FAQs

Package last updated on 04 Jun 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