Set up a Base URL (with Glitch)

Learn how to set up a Base URL with Glitch, a web-based code editor.

In the Developer Portal, extensions have a Base URL field. This indicates that the extension must provide the URL of a server that can receive and respond to HTTP requests from Canva. You can use any programming language, framework, or architecture to handle these requests.

This tutorial explains how to set up a Base URL with:

  • Express.js - A minimal web framework for Node.js.
  • Glitch - A free, web-based editor for developing (and automatically deploying) Node.js apps.
  1. Navigate to glitch.com.

  2. Log in or sign up to Glitch.

  3. Click New Project.

  4. Select glitch-hello-node.

This opens Glitch's code editor.

  1. Open the package.json file.
  2. Click Add package.
  3. Search for "express".
  4. Select the first result.

This installs Express.js.

Replace the contents of the server.js file with the following code:

const express = require("express");
const app = express();
app.use(express.json());
app.use(express.static("public"));
// Routes go here
app.listen(process.env.PORT || 3000);
javascript

This code initializes an Express.js server without any endpoints. The required endpoints depend the extensions added to the endpoint and how the extensions are configured.

For Canva to send requests to a Base URL, it needs to be exposed via a publicly available URL. This is something that Glitch provides without any further setup.

To get the public URL of a Glitch server:

  1. Click Share.
  2. Copy the URL from the Live site field.

This URL is the value that should be entered into an extension's Base URL field.

To verify that the server is running as expected—and to debug any errors that may occur—it's useful to view the logs.

Click Logs to view the logs of a Glitch server.

To learn more about Glitch, see the Glitch Help Center.