Google reCAPTCHA

Security service that protects your websites from fraud and abuse.

Integrate the Google reCAPTCHA API with the Baserow API

Setup the Google reCAPTCHA API trigger to run a workflow which integrates with the Baserow API. Pipedream's integration platform allows you to integrate Google reCAPTCHA and Baserow remarkably fast. Free for developers.

Validate reCAPTCHA Response with the Google reCAPTCHA API

Validate a Google reCAPTCHA request (v2 or v3). See docs here

 
Try it
Create Row with the Baserow API

Create a row See docs here

 
Try it
Delete Row with the Baserow API

Delete a row See docs here

 
Try it
Get Row with the Baserow API

Get a single row See docs here

 
Try it
List Rows with the Baserow API

List a table's rows See docs here

 
Try it

Overview of Google reCAPTCHA

Google reCAPTCHA API helps you detect abusive traffic on your website without any user friction. It does this by presenting CAPTCHA challenges to users they need to solve before submitting forms, ensuring these actions are not generated by bots. The API returns a score, helping you decide what action to take for your website: for instance, you might require further verification for low-scoring users. With Pipedream's ability to integrate with various APIs, you can create custom workflows that trigger upon the result of a reCAPTCHA verification, streamlining both security and user experience.

Connect Google reCAPTCHA

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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,
    })
  },
})

Overview of Baserow

The Baserow API allows you to interact programmatically with Baserow, an open-source no-code database tool. With its API, you can automate database operations such as creating, reading, updating, and deleting records. Moreover, it's possible to manage databases, tables, fields, and rows, or integrate with external services to enrich or move data in real-time. Leveraging Pipedream’s capabilities, you can trigger workflows from a variety of events and connect Baserow to numerous apps for seamless data processes.

Connect Baserow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    baserow: {
      type: "app",
      app: "baserow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.baserow.$auth.base_api_url}/database/rows/table/[TABLE_ID]/`,
      headers: {
        "Authorization": `Token ${this.baserow.$auth.token}`,
      },
    })
  },
})