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}`,
enterprise: `${BOOLEAN}`,
recaptchaNet: `${BOOLEAN}`,
});
const handleReCaptchaVerify = useCallback(async () => {
const token = await executeRecaptcha(`${YOUR_ACTION}`);
}, []);
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>;
};