WorkOS Docs Homepage
Integrations
DashboardSign In

Bubble Plugin

Add WorkOS features to your Bubble application.

The Bubble plugin for WorkOS allows you to easily integrate WorkOS API endpoints in your application's workflows. This plugin includes actions for SSO, Directory Sync, Admin Portal, and webhook validation.

In the Plugins tab of your app editor in Bubble, click Add Plugins, then search for WorkOS. Install the plugins for both WorkOS SSO and WorkOS API and then click Done.

A screenshot showing how to install the WorkOS SSO plugin in Bubble.
A screenshot showing how to install the WorkOS API plugin in Bubble.

The next step is to enter your secret keys/parameters on the Plugins settings page as seen below. The API key can be found in your WorkOS dashboard under API Keys.

In the WorkOS SSO plugin the API Key value can be entered directly.

A screenshot showing where to enter environment variables in Bubble for the WorkOS SSO plugin.

In the WorkOS API plugin the API Key value needs to be preceded by Bearer.

A screenshot showing where to enter environment variables in Bubble for the WorkOS API plugin.

Now you’re set up to use the plugin directly in your workflows.

Whether you are implementing a Single Sign-On authorization flow for your application using a no-code platform or building your app from the ground up, the steps that you need to take on a high level are the same. You can find more information in our SSO Quickstart Guide.

To configure SSO, you will need:

  • An active SSO connection, which can be configured manually or by using the Admin Portal.
  • A connection ID or organization ID associated with the user logging in. WorkOS does not handle user management on your application’s behalf, so it is necessary to keep track of the association between your users and their WorkOS connection or organization IDs in your database.
  • Redirect URI, which is the URL to redirect the user to when they are authorized. This is provided by Bubble in the Plugins tab.

Navigate to the Workflow page in your application and add a new event. Select the action that will trigger the workflow to start. In this case, the workflow is triggered when the submit button is clicked.

Under the Account menu option, select Signup/login with a social network, then select WorkOS SSO from the OAuth provider dropdown menu. Enter either the connection ID, organization ID, or provider.

Select whether you will use connection, organization, or provider (OAuth connections only), and delete the other defaults. The value should be entered in the organization=<organization_id> format.

A screenshot showing how to enter the parameter values in a Bubble workflow.

When a user launches this workflow, they will be prompted to log in through the associated WorkOS SSO connection.

Upon a successful login, if the user does not exist in the application database, a new user will be created and logged in as the current user. If the user already exists, that user will be logged in as the current user.

To start using Directory Sync, you will need to configure a new directory connection between your customer’s directory provider and WorkOS. This can be completed manually or by using the Admin Portal.

Once a directory connection is activated in WorkOS, you can configure webhooks to send events to your Bubble application using the WorkOS plugin through a backend workflow.

To enable backend workflows, navigate to the Settings page of your Bubble app under the API tab, and select Enable Workflow API and backend workflows. You are now able to configure backend workflows in the Workflow section.

A screenshot showing how enable backend workflows in Bubble.

To create a new workflow that subscribes to WorkOS webhooks, navigate to the Workflows section of your app in Bubble and select backend workflows from the page selection dropdown.

A screenshot showing how to navigate to and create a new backend workflow in Bubble.

Create a new API Workflow. In the detected data option ensure that include headers is selected before clicking Detect data.

A screenshot showing how to configure a backend workflow to detect data in Bubble.

A pop-up window will show a test URL to validate the webhook body.

A screenshot showing when a backend workflow is ready to detect data in Bubble.

Navigate to the Webhooks tab in your WorkOS dashboard and enter this test URL as your webhook endpoint.

A screenshot showing how to configure a webhook endpoint in the WorkOS dashboard.

Then, click the Send Test Event button to send a test event.

A screenshot showing where to send a test webhook event in the WorkOS dashboard.

Bubble will recognize the event and validate the endpoint. Click save to complete the subscription to WorkOS webhook events for this workflow.

A screenshot showing a successfully detected webhook event in Bubble.

After the new workflow is set up to listen for new events, it is recommended that you use the webhook validation action to verify that the webhooks being received are from WorkOS.

This action verifies the request is valid by using the webhook body, signature, and secret that you provide from your WorkOS dashboard. To properly define the webhook parameter, you should use the raw body text of the request data. Similarly, the webhook_signature should be defined using the workos-signature in the request data's headers.

A screenshot showing how to select the webhook validation action in Bubble.

After the event is validated, you can use the data from the body to log the webhook and make changes to users.

The plugin also includes endpoints, documented under the directory sync section of the API Reference, that can be used to reconcile users.

Periodically calling the List Directory Users endpoint and verifying that the returned date matches what you have stored in your user table helps ensure your application has up-to-date information about your users, so you can use it with confidence.

The Admin Portal provides an out-of-the-box UI for organization admins to configure SSO and Directory Sync connections.

The WorkOS API plugin provides an API call that launches the Admin Portal if you would like to display it on the settings page of your application. You can also copy and paste these links directly from the WorkOS dashboard in the connection settings.

Upon completing the setup flow with the Admin Portal, the organization admin will be able to test the new connection and validate that it has been configured correctly.

A screenshot showing how to select the admin portal action in Bubble.