n8n-docs/docs/nodes/credentials/GetResponse
Tanay Pant 62da712d6d 🔨 Minor fixes
2020-11-23 14:48:26 +01:00
..
README.md 🔨 Minor fixes 2020-11-23 14:48:26 +01:00
using-api.gif 🔨 Update gifs for GetResponse node 2020-11-19 20:07:08 +05:30
using-oauth.gif 🔨 Update gifs for GetResponse node 2020-11-19 20:07:08 +05:30

permalink description
/credentials/getResponse Learn to configure credentials for the GetResponse node in n8n

GetResponse

You can use these credentials to authenticate the following nodes with GetResponse.

Prerequisites

Create a GetResponse account.

Using OAuth

::: tip ⚠️ Callback URL with GetResponse Note: The Redirect URL should be a URL in your domain. For example, https://mytemplatemaker.example.com/gr_callback. GetResponse doesn't accept the localhost callback URL. Refer to the FAQs to learn to configure the credentials for the local environment. :::

  1. Access your GetResponse dashboard.
  2. Click on Menu and select 'Integrations and API'.
  3. Click on the Custom apps tab.
  4. Click on the Register your app button.
  5. Enter all the necessary information.
  6. Copy your OAuth Callback URL from the 'Create New Credentials' screen in n8n and paste it in the Redirect URL field.
  7. Click on the Add button.
  8. Use the provided Client ID and Client secret key with your GetResponse OAuth2 API credentials in n8n.
  9. Click on the circle button in the OAuth section to connect a GetResponse account to n8n.
  10. Click on the Save button to save your credentials in n8n.

Getting GetResponse OAuth credentials

Using API Key

  1. Access your GetResponse dashboard.
  2. Click on Menu and select 'Integrations and API'.
  3. Click on the API tab.
  4. Click on the Generate API key button.
  5. Enter a name for your key.
  6. Click on the Generate button.
  7. Copy the API key that is displayed and use it with your GetResponse node credentials in n8n.

Getting GetResponse API credentials

FAQs

How to configure the OAuth credentials for the local environment?

GetResponse doesn't accept the localhost callback URL. However, you can follow the steps mentioned below to configure the OAuth credentials for the local environment:

  1. We will use ngrok to expose the local server running on port 5678 to the internet. In your terminal, run the following command:
ngrok http 5678
  1. Run the following command in a new terminal. Replace <YOUR-NGROK-URL> with the URL that you get from the previous step.
export WEBHOOK_TUNNEL_URL=<YOUR-NGROK-URL>
  1. Start your n8n instance.
  2. Follow the instructions mentioned in the Using OAuth section to configure your credentials.

Further Reference