Ending Connect support
Bitbucket Cloud is gradually ending support for Connect apps.
New Bitbucket apps built with Connect can no longer be registered or installed on workspaces as of Februrary 2, 2026.
Forge is now the Atlassian Cloud's primary platform for extensions. Get started with Forge
Let workspace admins discover and install the Forge version of your Connect app in Bitbucket.
Add the Forge installation link to your Connect app descriptor under the forgeAppLink key,
then update installations based on whether your app is Shared or Classic.
In addition, you can register a Forge app ID in your Connect app descriptor under the forgeAppId key.
This allows your Forge app installation to retrieve the clientKey of its equivalent Connect app in the same workspace
using the Addon API.
Share your Forge app to get its installation link.
Add a forgeAppLink key to the root of your Connect app descriptor JSON, using the Forge installation link as the value.
For example:
1 2{ "key": "my-connect-app-key", "forgeAppLink": "https://developer.atlassian.com/console/install/my-app-id?signature=1234567890&product=bitbucket", ... }
Before updating the installations, ensure that you're serving the latest Connect app descriptor with the forgeAppLink changes.
The steps to update installations differ based on whether your app is Shared or Classic.
After updating the installations, workspace admins will see a new Get the Forge app link in their Manage installed apps page. This provides a direct link to install the Forge version of your app.

You only need to do this if you want to access the Addon API from your Forge app installation, in order to retrieve the details of the equivalent Connect app installation.
Copy the full Atlassian resource identifier (ari) in the app.id field from your Forge app manifest file.
Add a forgeAppId key to the root of your Connect app descriptor JSON, using the ARI from above as the value.
For example:
1 2{ "key": "my-connect-app-key", "forgeAppId": "ari:cloud:ecosystem::app/00000000-0000-0000-0000-000000000000", ... }
Follow the instructions above to update your app installations.
Rate this page: