Configuring Bitbucket Social Connection in Production
This guide outlines the steps to configure Bitbucket as a social login provider in AuthAction for a production environment.
Step 1: Create a Bitbucket OAuth Application
- Go to the Bitbucket Developer Portal.
- Click Add Consumer.
- Fill in the required details:
- Name: Your application name.
- Callback URL: Set the redirect URI to:
https://<tenant-name>.<region>.authaction.com/oauth2/login/callback
- Permissions: Choose the necessary permissions based on your requirements (e.g.,
account:read
).
- Click Save.
Step 2: Retrieve Client ID and Client Secret
- After saving, Bitbucket will provide you with a Key and Secret.
- Copy the Key (Client ID) and Secret (Client Secret) for use in the next steps.
Step 3: Configure Bitbucket Connection in AuthAction
- Log in to the AuthAction dashboard.
- Navigate to Connections → Social Connections.
- Click Add Connection and select Bitbucket.
- Enter the Client ID and Client Secret obtained from Bitbucket.
- Click Save.
Step 4: Enable Bitbucket Connection for Applications
- In the AuthAction dashboard, navigate to Applications.
- Select the application for which you want to enable Bitbucket login.
- Go to the Connections tab and enable the Bitbucket connection.
Step 5: Test the Integration
- Open your application's login page.
- Click on Sign in with Bitbucket.
- Authenticate using a Bitbucket account.
- Verify that the user is successfully redirected back to your application.
Your application is now configured to allow users to log in using Bitbucket in production.