Skip to main content

How to Enable Google Auth for your users | White Label

In this tutorial we show you how to allow your users to login with their Google account

Updated over a week ago

Step-by-step tutorial:

1. Create or use a Google Cloud Project

Go to Google Cloud Console and select or create a project.

2. Enable OAuth 2.0 Credentials

  • Navigate to APIs & Services > Credentials

  • Click Create Credentials > OAuth client ID

  • Choose the application type: Web app

  • Add Authorized redirect URI: https://yourdistributor.com/auth/google/callback

3. Copy your Client ID and Client Secret

These will be used in Step 6.

4. Define OAuth Scopes

  • openid

  • email

  • profile

5. Enable Required APIs

Go to APIs & Services > Library and enable: People API

6. Integrate with Backstage

In the Settings section of your Backstage, go to Google Login and paste:

  • Client ID (from step 3)

  • Client Secret (from step 3)

  • Redirect URL: https://yourdistributor.com/auth/google/callback

Did this answer your question?