Install the API Explorer
The API Explorer is a Looker Marketplace extension used to register OAuth apps.
- Log in to your Looker instance with admin access. You need the
develop,manage_models, anddeploypermissions to install from the Marketplace. - Navigate to the Looker Marketplace and search for API Explorer.
- Install the extension. Once installed, it appears under Applications in the left sidebar.
Add your origin to the embedded domain allowlist
Looker requires your application’s origin to be allowlisted before OAuth code exchange can succeed.
- Navigate to Admin > Embed.
- Under Embedded Domain Allowlist, add
https://api.nango.dev.
Register the OAuth client application
- Open the API Explorer from the Applications section of the left sidebar.
- Using the version drop-down at the top, select 4.0 - current.
-
Search for
register_oauth_client_appin the Search field, or navigate to the Auth method category and find it there. - Select the method and click Run It to open the request panel.
- In the Request tab, fill in the following parameters:
| Parameter | Value |
|---|---|
client_guid | A unique identifier for your app (e.g., my-nango-app) |
redirect_uri | https://api.nango.dev/oauth/callback |
display_name | The name shown to users on the consent screen |
description | What your app does with the user’s Looker account |
- Check the data change confirmation checkbox (required for POST requests).
- Click Run to register the application. The Response tab will confirm the registration.
Next
Follow the Quickstart to connect your first account.