> ## Documentation Index
> Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

---
id: 6a01d77f-80bd-4477-85ee-9add64ee4c38
---

# Working with OAuth

> OAuth is a secure means of authentication for your app. It uses authorization tokens rather than a password to connect your app to a user account. 

export const BlogPostCTA = ({title, href}) => {
  return <div className="card-condensed-cta">
      <Card title={title} href={href} horizontal={true} cta="Read more on the HubSpot Developer Blog" icon="bullhorn" />
    </div>;
};

OAuth is a secure means of authentication that uses authorization tokens rather than a password to connect your app to a user account. Initiating OAuth access is the first step towards allowing users to install your app in their HubSpot accounts.

<Warning>
  **Please note:**

  * Any app designed for installation by multiple HubSpot accounts or listing on the HubSpot Marketplace must use OAuth.
  * Users installing apps in their HubSpot account must either be a [Super Admin](https://knowledge.hubspot.com/user-management/hubspot-user-permissions-guide#super-admin) or have [HubSpot Marketplace Access](https://knowledge.hubspot.com/user-management/hubspot-user-permissions-guide#settings) permissions.
</Warning>

## Recommended resources

The [OAuth Quickstart Guide](/apps/developer-platform/build-apps/authentication/oauth/oauth-quickstart-guide) will get you up and running with a working example app.

You can also check out the blog post linked below for a full walkthrough of how OAuth works and guidance on setting up a backend service for storing OAuth tokens:

<BlogPostCTA title="Blog Post: Production-Ready OAuth Token Management" href="https://developers.hubspot.com/blog/oauth-token-management-hubspot-integrations#understanding-oauth" />

## Set up OAuth authentication

To set up OAuth authentication for your app:

1. [Create a new app](/apps/developer-platform/build-apps/create-an-app). After creating the app, you'll be able to find the app's client ID and client secret on the *Auth* page of your [app settings](/apps/developer-platform/build-apps/manage-apps-in-hubspot#manage-authentication-for-your-app).

* Use the client ID along with the [query parameters](#query-parameters) and [scopes](#scopes) outlined below in steps 2 and 3, to build your authorization URL.
* Your app's client secret will be used in step 4 below, after the user is redirected back to your app and you're ready to generate the initial access and refresh tokens.

2. Send users installing your app to the authorization URL, where they'll be presented with a screen that allows them to select their account and grant access to your integration. You can set the authorization URL to be for a specific HubSpot account by adding the account ID between `/oauth/` and `/authorize`, as shown below.
3. After granting access, they'll be redirected back to your application via a `redirect_uri`, which will have a `code` query parameter appended to it.

* **Example authorization URLs**
  * **Any account:** `https://app.hubspot.com/oauth/authorize?client_id=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&scope=contacts%20automation&redirect_uri=https://www.example.com/`
  * **Specific account (ID 123456):** `https://app.hubspot.com/oauth/123456/authorize?client_id=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&scope=contacts%20automation&redirect_uri=https://www.example.com/`
* **Example redirect URL:** `https://example.com/?code=xxxx`
* **Example error:** `https://www.example.com/?error=error_code&error_description=Human%20readable%20description%20of%20the%20error`

4. You'll then make an API request to `/oauth/v3/token` with a request body that includes the `code`, the `redirect_uri`, your app's `client_id` and `client_secret`, and a `grant_type` of `authorization_code` to get an [access\_token and refresh\_token](/api-reference/legacy/authentication/manage-oauth-tokens#generate-initial-access-and-refresh-tokens) from HubSpot.
5. Use the `access_token` to authenticate any API calls made for that HubSpot account.
6. Once the `access_token` expires, use the `refresh_token` to generate a new `access_token`. Learn more about how to [refresh an access token](/api-reference/legacy/authentication/manage-oauth-tokens#refresh-an-access-token).

<Warning>
  **Please note:**

  * Your app will not appear as a *Connected App* in a user's account unless you generate the refresh token and initial access token.
  * Access tokens reflect the scopes requested from the app and <u>do not</u> reflect the permissions or limitations of what a user can do in their HubSpot account. For example, if a user has permissions to view only owned contacts but authorizes a request for the `crm.objects.contacts.read` scope, the resulting access token can view all contacts in the account and not only those owned by the authorizing user.
</Warning>

## Query parameters

The following query parameters are required when building an authorization URL for your app:

| **Parameter**  | **Description**                                                           | **How to use**                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| -------------- | ------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `client_id`    | An ID that serves as a unique identifier for your app.                    | Get this from your app's Auth settings page (as described above).                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| `redirect_uri` | The URL visitors will be redirected to after granting access to your app. | You'll also designate this on your app's Auth settings page. **Note:** For security reasons, this URL <u>must</u> use `https` in production. (When testing using `localhost`, `http` can be used.) You also <u>must</u> use a domain, as IP addresses are not supported.                                                                                                                                                                                                                                                                        |
| `scope`        | A space-separated set of permissions that your app needs access to.       | Any scopes that you've checked off in your app's *Auth* settings will be treated as required, and you'll need to include them in this parameter or the authorization page will display an error. Additionally, users will get an error if they try to install your app in an account that doesn't have access to an included scope. Consult the [scopes reference documentation](/apps/developer-platform/build-apps/authentication/scopes#list-of-available-scopes) for more details about which endpoints can be accessed by specific scopes. |

The following parameters are optional:

| **Parameter**    | **How to use**                                                                                                                                                 | **Description**                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `optional_scope` | A space-separated set of optional permissions for your app.                                                                                                    | Optional scopes will be automatically dropped from the authorization request if the user selects a HubSpot account that doesn't have access to that tool (e.g., authorizing a ***Content Hub** Enterprise* scope in a HubSpot free account). If you're using optional scopes, you will need to check the access token or refresh token to see which ones were granted. Check out the [reference documentation on scopes](/apps/developer-platform/build-apps/authentication/scopes) for more details. |
| `state`          | If this parameter is included in the authorization URL, the value will be included in a state query parameter when the user is directed to the `redirect_uri`. | A string value that can be used to maintain the user's state when they're redirected back to your app.                                                                                                                                                                                                                                                                                                                                                                                                |

## Configure scopes

OAuth requires you to set scopes, or permissions, for your app. Each scope provides access to a set of HubSpot API endpoints and allows users to grant your app access to specific tools in their HubSpot account.

You can review your app's current scopes in the development settings in your HubSpot account:

1. In your HubSpot account, navigate to **Development**.
2. In the left sidebar menu, click **Projects**.
3. Click the **name** of the project configured with OAuth authentication.
4. Under *Project Components*, click the `UID` of your app.
5. Click the *Auth* tab, then review your app's required, conditionally required, and optional scopes in the *Scopes* section.

<Frame>
  <img src="https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer-projects/review-oauth-scopes-in-app-settings.png" alt="Review configured scopes on Auth tab of app settings" />
</Frame>

To update your app's scopes, edit the corresponding scopes within the `auth` property of your app's `app-hsmeta.json` [file](/apps/developer-platform/build-apps/app-configuration#scopes) locally, then run the `hs project upload` [command](/developer-tooling/local-development/hubspot-cli/project-commands#upload-to-hubspot) to upload the changes to your account.

```json highlight={12-14} theme={null}
{
  "uid": "oauth-sample-app",
  "type": "app",
  "config": {
    "description": "An example OAuth app.",
    "name": "my first app",
    "logo": "/app/app-logo.png",
    "distribution": "marketplace",
    "auth": {
      "type": "oauth",
      "redirectUrls": ["http://localhost:3000/oauth-callback"],
      "requiredScopes": ["crm.objects.contacts.read", "crm.objects.contacts.write"],
      "optionalScopes": [],
      "conditionallyRequiredScopes": []
    },
    "permittedUrls": {
      "fetch": ["https://api.hubapi.com"],
      "iframe": [],
      "img": []
    },
    "support": {
      "supportEmail": "support@example.com",
      "documentationUrl": "https://example.com/docs",
      "supportUrl": "https://example.com/support",
      "supportPhone": "+18005555555"
    }
  }
}
```

A full list of scopes is available [here](/apps/developer-platform/build-apps/authentication/scopes).

## Monitor OAuth installation logs

After you've set up the OAuth authentication flow for your app, you can review installation attempts, successes, and failures in your development settings:

* In your HubSpot account, navigate to **Development**.
* In the left sidebar menu, navigate to **Monitoring** > **Logs**.
* Click the **dropdown menu** at the top of the page and select the **name** of your OAuth app.
* Click the **OAuth** tab.
* Review all installation events for your app. The following event types are logged:
  * **AUTHORIZATION\_REQUEST:** logged when a user tries to load the app's authorization URL in their account. This event will be logged as an error if the app is misconfigured or the user doesn't have sufficient permissions to install the app.
  * **AUTHORIZATION\_GRANT:** logged when a user clicks the *Connect app* button to start the installation process. This will result in HubSpot generating a `code` query parameter.
  * **AUTHORIZATION\_CODE\_EXPIRY:** an error that occurs when the auth code expired before the token was exchanged.
  * **TOKEN\_EXCHANGE:** your OAuth service successfully exchanged the `code` to get an access token and refresh token. At this point, the app is installed in the user's account.

<Frame>
  <img src="https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/oauth-installation-events-logging.png" alt="Review OAuth installation events in your development settings" />
</Frame>

* To view more details about a specific event, click the **ellipses** icon under the *Actions* column, then select an option:
  * **Open details:** open a side panel with more information, including the *Account ID*, *Log ID*, *Trace ID*, and the full error messages
  * **Open tracing:** navigate to an error details page, which also provides the sequence of related OAuth events triggered by the same account.
* You can use the top dropdown menus to search for specific events by *Account ID* or *Log ID*, or filter events by date range.
* To export OAuth event data, click **Export** in the top right. In the dialog box, confirm the date range, then click **Export**.

## Related articles

<CardGroup>
  <Card title="OAuth Quickstart guide" href="/apps/developer-platform/build-apps/authentication/oauth/oauth-quickstart-guide" horizontal />

  <Card title="OAuth v3 API guide" href="/api-reference/legacy/authentication/manage-oauth-tokens" icon="document-text" horizontal />
</CardGroup>
