The Google reCAPTCHA API allows you to build various types of CAPTCHA forms, including:
Here are some examples of what you can build using the Google reCAPTCHA API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_recaptcha: {
type: "app",
app: "google_recaptcha",
}
},
async run({steps, $}) {
const data = {
"secret": `${this.google_recaptcha.$auth.secret}`,
"response": ``,
"remoteip": ``,
}
return await axios($, {
method: "post",
url: `https://www.google.com/recaptcha/api/siteverify`,
data,
})
},
})
Validate a Google reCAPTCHA request (v2 or v3). See docs here
Google reCAPTCHA uses API keys for authentication. When you connect your Google reCAPTCHA account, Pipedream securely stores the keys so you can easily authenticate to Google reCAPTCHA APIs in both code and no-code steps.