With Bubble, you can build all sorts of web applications without having to write any code.
Here are some examples of what you can build with Bubble:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bubble: {
type: "app",
app: "bubble",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.bubble.$auth.root_url}`,
headers: {
Authorization: `Bearer ${this.bubble.$auth.api_key}`,
},
})
},
})
Bubble uses API keys for authentication. When you connect your Bubble account, Pipedream securely stores the keys so you can easily authenticate to Bubble APIs in both code and no-code steps.
Activate the Bubble API for your app (within your app, visit Settings -> API). Bubble exposes both a Workflow and a Data API — read about both to understand which one you should enable.
Each API has a unique Root URL. If you activate both the Workflow and the Data API for your application, you'll need to connect each as separate apps in Pipedream, labeling them appropriately in the Nickname field below. You'll also be asked to generate an API key. Enter both of those values in the form below.
The API Bubble exposes for your app is specific to your app. For example, the paths you make HTTP requests against are tied to the names of your Bubble workflows. Because of this, the starter code Pipedream produces for Bubble will not immediately work. You'll need to modify the code to work with your app's endpoints. Bubble generates a Swagger specification specific to your app that should list each of its available endpoints, which should help you develop against it.