Skip to main content
Connect your AI agent to a user’s Figma account to export assets, apply changes to design files programmatically, and comment on prototypes to automate design feedback loops.

Connect Figma to Auth0

1

Figma setup

  1. Visit the Figma Developer account page and sign up.
  2. Create a new app in the Figma Developer Dashboard.
  3. Provide a name for your app and select a team or organization to associate it with.
  4. Copy and securely store the Client ID and Client Secret that Figma provides.
  5. Configure OAuth redirect URL:
    • Redirect URL: https://YOUR_AUTH0_DOMAIN/login/callback
    You can find the Auth0 domain in the Auth0 Dashboard.You can find this under Applications > [Your Application] > Settings > Basic Information > Domain.If you are using the custom domains feature, your Auth0 domain is the custom domain. You can find this under Branding > Custom Domains.
  6. Select the necessary scopes that your application needs to access (current_user:read, file_content:read, file_comments:write, etc.).
  7. Publish it.
To learn more about setting up Figma, read the Login with Figma documentation.
2

Auth0 setup

Token Vault configuration example

To configure the Token Vault for your Figma connection, you can use the following code snippet in your application:

Next steps