Skip to content

Google: Service Account#

Using service accounts is more complex than OAuth2. Before you begin:

Prerequisites#

Set up Service Account#

There are four steps to connecting your n8n credential to a Google Service Account:

  1. Create a Google Cloud Console project.
  2. Enable APIs.
  3. Set up Google Cloud Service Account.
  4. Finish your n8n credential.

Create a Google Cloud Console project#

First, create a Google Cloud Console project. If you already have a project, jump to the next section:

  1. Log in to your Google Cloud Console using your Google credentials.
  2. In the top menu, select the project dropdown in the top navigation and select New project or go directly to the New Project page.
  3. Enter a Project name and select the Location for your project.
  4. Select Create.
  5. Check the top navigation and make sure the project dropdown has your project selected. If not, select the project you just created.

    The project dropdown in the Google Cloud top navigation
    Check the project dropdown in the Google Cloud top navigation

Enable APIs#

With your project created, enable the APIs you'll need access to:

  1. Access your Google Cloud Console - Library. Make sure you're in the correct project.
    The project dropdown in the Google Cloud top navigation
    Check the project dropdown in the Google Cloud top navigation
  2. Go to APIs & Services > Library.
  3. Search for and select the API(s) you want to enable. For example, for the Gmail node, search for and enable the Gmail API.
  4. Some integrations require other APIs or require you to request access:

    Google Drive API required

    The following integrations require the Google Drive API, as well as their own API:

    • Google Docs
    • Google Sheets
    • Google Slides
  5. Select ENABLE.

Set up Google Cloud Service Account#

  1. Access your Google Cloud Console - Library. Make sure you're in the correct project.

    The project dropdown in the Google Cloud top navigation
    Check the project dropdown in the Google Cloud top navigation

  2. Select the hamburger menu > APIs & Services > Credentials. Google takes you to your Credentials page.

  3. Select + CREATE CREDENTIALS > Service account.
  4. Enter a name in Service account name and an ID in Service account ID. Refer to Creating a service account for more information.
  5. Select CREATE AND CONTINUE.
  6. Based on your use-case, you may want to Select a role and Grant users access to this service account using the corresponding sections.
  7. Select DONE.
  8. Select your newly created service account under the Service Accounts section. Open the KEYS tab.
  9. Select ADD KEY > Create new key.
  10. In the modal that appears, select JSON, then select CREATE. Google saves the file to your computer.

Finish your n8n credential#

With the Google project and credentials fully configured, finish the n8n credential:

  1. Open the downloaded JSON file.
  2. Copy the client_email and enter it in your n8n credential as the Service Account Email.
  3. Copy the private_key. Don't include the surrounding " marks. Enter this as the Private Key in your n8n credential.

    Older versions of n8n

    If you're running an n8n version older than 0.156.0, replace all instances of \n in the JSON file with new lines.

  4. Optional: Choose if you want to Impersonate a User(turned on).

    1. Enter the Email of the user you want to impersonate.
  5. If you plan to use this credential with the HTTP Request node, turn on Set up for use in HTTP Request node.
    1. With this setting turned on, you'll need to add Scope(s) for the node. n8n prepopulates some scopes. Refer to OAuth 2.0 Scopes for Google APIs for more information.
  6. Save your credentials.

Video#

The following video demonstrates the steps described above.

Troubleshooting#

Service Account can't access Google Drive files#

A Service Account can't access Google Drive files and folders that weren't shared with its associated user email.

  1. Access your Google Cloud Console and copy your Service Account email.
  2. Access your Google Drive and go to the designated file or folder.
  3. Right-click on the file or folder and select Share.
  4. Paste your Service Account email into Add People and groups.
  5. Select Editor for read-write access or Viewer for read-only access.