Authorization
This guide describes the authorization flows for internal and public Notion integrations.
What is authorization?
Authorization is the process of granting an integration access to a userβs Notion data. That process varies depending on whether or not the integration is public or internal.
Link Preview integrations β a subcategory of public integrations β use two-way OAuth, which differs from the authorization flow described in this guide.
See the Build a Link Preview integration guide to learn more about Link Preview authorization.
What is an internal integration?
An internal integration allows Notion workspace members to interact with the workspace through the Notion REST API. Each internal integration is tied to a single, specific workspace and only members within the workspace can use the integration. After an internal integration is added to a workspace, members must manually give the integration access to the specific pages or databases that they want it to use.
What is a public integration?
Public integrations can be used by any Notion user in any workspace. They allow members to interact with their workspace using Notionβs REST API once the integration has been properly authorized.
Public integrations follow the OAuth 2.0 protocol. This allows workspace members to give access to Notion pages directly through the auth flow, without having to open each Notion workspace page directly and manually give permission to the integration. (More on this below.)
Public integrations can technically be used without permitting workspace pages access as long as the auth flow is completed and an access token is created β a process which will be described in detail below. For example, if a public integration only needs to interact with the Notion User endpoints, it does not need to be given access to workspace pages.
For more details on the differences between public and internal integrations, refer to the getting started page.
Read on to learn how to set up the auth flows for internal and public integrations.
Internal integration auth flow set-up
To use an internal integration, start by creating your integration in the integrationβs settings page.
The internal integration will be associated with the workspace of your choice. You are required to be a workspace owner to create an integration.
Once the integration is created, you can update its settings as needed under theΒ Configuration
Β tab and retrieve the integration token in this tab.
The integration token will be used to authenticate REST API requests. The integration sends the same token in every API request.
Integration permissions
Before an integration can interact with your Notion workspace page(s), the page must be manually shared with the integration. To share a page with an integration, visit the page in your Notion workspace, click the β’β’β’ menu at the top right of a page, scroll down to Add connections
, and use the search bar to find and select the integration from the dropdown list.
Once the integration is shared, you can start making API requests. If the page is not shared, any API requests made will respond with an error.
Keep your token secret
Your integration token is a secret. To keep your integration secure, never store the token in your source code or commit it in version control. Instead, read the token from an environment variable. Use a secret manager or deployment system to set the token in the environment.
Making API requests with an internal integration
Any time your integration is interacting with your workspace, you will need to include the integration token in the Authorization
header with every API request. However, if you are using Notionβs SDK for JavaScript to interact with the REST API, the token is set once when a client is initialized.
GET /v1/pages/b55c9c91-384d-452b-81db-d1ef79372b75 HTTP/1.1
Authorization: Bearer {INTEGRATION_TOKEN}
const { Client } = require("@notionhq/client")
// Initializing a client
const notion = new Client({
auth: process.env.NOTION_TOKEN,
})
const getUsers = async () => {
const listUsersResponse = await notion.users.list({})
}
If you are not using the Notion SDK for JavaScript, you will also need to set the
Notion-Version
andContent-type
headers in all of in your requests, like so:headers: { Authorization: `Bearer ${process.env.NOTION_TOKEN}`, "Notion-Version": "2022-06-28", "Content-Type": "application/json", },
If you receive an error response from the API, check if the integration has been properly added to the page. If this does not solve the problem, refer to our Status codes page for more information.
Public integration auth flow set-up
When an integration is made public, any Notion user in any workspace can use it.
In a Notion for Enterprise workspace, a workspace admin needs to approve a public integration before it can be added to the workspace.
Since a public integration is not tied to a single workspace with a single integration token, public integrations instead follow the OAuth 2.0 protocol to authorize an integration to interact with a workspace.
How to make a public integration
Select New Integration
in your integration dashboard and select Public
in the integration Type during the creation flow. You may also edit an existing internal integration to convert to Public
.
You will need to fill out the form with additional information, including your company name, website, and redirect URI(s).
The redirect URI is the URI your users will be redirected to after authorizing the public integration. To learn more, read OAuthβs description of redirect URIs.
Public integration authorization overview
Once your integration has been made public, you can update your integration code to use the public auth flow.
As an overview, the authorization flow includes the following steps. Each step will be described in more detail below.
- Navigate the user to the integrationβs authorization URL. This URL is provided in the integrationβs settings page.
- After the user selects which workspace pages to share, Notion redirects the user to the integrationβs redirect URI and includes a
code
query parameter. The redirect URI is the one you specified in your integrationβs settings page. - You will make a
POST
request to create an access token , which will exchange the temporarycode
for an access token. - The Notion API responds with an access token and some additional information.
- You will store the access token for future API requests. View the API reference docs to learn about available endpoints.
Step 1: Navigate the user to the integrationβs authorization URL
After your integration has been successfully made public in your integrationβs settings page, you will be able to access the integrationβs secrets in the Configuration tab. Similarly to the internal integrations, these values should be protected and should never be included in source code or version control.
As an example, your .env
file using these secrets could look like this:
#.env
OAUTH_CLIENT_ID=<your-client-id>
OAUTH_CLIENT_SECRET=<your-client-secret>
NOTION_AUTH_URL=<your-auth-url>
To start the authorization flow for a public integration, you need to direct the prospective user to the authorization URL. To do this, it is common to include a hyperlink in the integration app that will be interacting with the Notion REST API. For example, if you have an app that will allow users to create new Notion pages for their workspace(s), you will first need them to first visit the authorization URL by clicking on the link.
The following example shows an authorization URL made available through a hyperlink:
<a href="https://api.notion.com/v1/oauth/authorize?owner=user&client_id=463558a3-725e-4f37-b6d3-0889894f68de&redirect_uri=https%3A%2F%2Fexample.com%2Fauth%2Fnotion%2Fcallback&response_type=code">Add to Notion</a>
The URL begins with https://api.notion.com/v1/oauth/authorize
and has the following parameters:
Parameter | Description | Required |
---|---|---|
client_id | An identifier for your integration, found in the integration settings. | β |
redirect_uri | The URL where the user should return after granting access. | β |
response_type | Always use code . | β |
owner | Always use user . | β |
state | If the user was in the middle of an interaction or operation, then this parameter can be used to restore state after the user returns. It can also be used to prevent CSRF attacks. |
Once the authorization URL is visited, the user will be shown a prompt that varies depending on whether or not the integration comes with a Notion template option.
Prompt for a standard integration with no template option (Default)
In the standard integration permissions flow, a prompt describes the integration capabilities, presented to the user as what the integration would like to be able to do in the workspace. A user can either select pages to grant the integration access to, or cancel the request.
If the user presses Cancel, they will be redirected to the redirect URI with and error
query param added.
www.example.com/my-redirect-uri?error=access_denied&state=
You can use this error
query parameter to conditionally update your appβs state as needed.
If the user opts to Select pages
, then a page picker interface opens. A user can search for and select pages and databases to share with the integration from the page picker.
The page picker only displays pages or databases to which a user has full access, because a user needs full access to a resource in order to be able to share it with an integration.
Users can select which pages to give the integration access to, including both private and public pages available to them. Parent pages can be selected to quickly provide access to child pages, as giving access to a parent page will provide access to all available child pages. Users can return to this view at a later time to update access settings if circumstances change.
If the user clicks Allow access
, they are then redirected to the redirect_uri
with a temporary authorization code
. If the user denies access, they are redirected to the redirect_uri
with an error
query parameter.
If the user clicks Allow access
and the rest of the auth flow is not completed, the integration will not have access to the pages that were selected.
Prompt for an integration with a Notion template option
Public integrations offer the option of providing a public Notion page to use as a template during the auth flow.
To add a template to your workspace, complete the following steps:
- Choose a public page in your workspace that you want users to be able to duplicate.
- Navigate to your integrationβs settings and go to the Basic Information tab.
- Scroll to the bottom of your distribution settings and add the URL of the Notion page you selected to the Notion URL for optional template input.
Once this URL is added, your auth flow prompt appearance will be updated.
Going back to your prompt view, if the integration offers a Notion template option, the first step in the permissions flow will describe the integration capabilities. This is presented to the user as what the integration would be able to do in the workspace, and it prompts the user to click Next
.
In the next step, a user can either choose to duplicate the template that you provided or to select existing pages to share with the integration.
If the user chooses to duplicate the template, then the following happens automatically:
- The integration is added to the userβs workspace.
- The template is duplicated as a new page in the workspace.
- The new page is shared with the integration.
If the user chooses to select pages to share with the integration, then they continue to the page picker interface thatβs part of theΒ prompt for a standard integration.
After a user installs a public integration, only that user is able to interact or share pages and databases with the integration. Unlike internal integrations, if multiple members in a workspace want to use a public integration, each prospective user needs to individually follow the auth flow for the integration.
User authorization failures
User authorization failures can happen. If a user chooses to Cancel
the request, then a failure is triggered. Build your integration to handle these cases gracefully, as needed.
In some cases, Notion redirects the user to the redirect_uri
that you set up when you created the public integration, along with anΒ error
Β query parameter. Notion uses the commonΒ error codes in the OAuth specification. Use the error
code to create a helpful prompt for the user when theyβre redirected here.
Step 2: Notion redirects the user to the integrationβs redirect URI and includes a code
parameter
code
parameterWhen you first created the public integration, you specified a redirect URI. If the user follows the prompt to Allow access
for the integration, then Notion generates a temporary code
and sends a request to the redirect URI with the following information in the query string:
Parameter | Description | Required |
---|---|---|
code | A temporary authorization code. | β |
state | The value provided by the integration when the user wasΒ prompted for access. |
To complete the next set, you will need to retrieve the code
query parameter provided in the redirect. How you retrieve this value will vary depending on your appβs tech stack.
In a React component, for example, the query parameters are made available through the useRouter()
hook:
export default function AuthRedirectPage() {
const router = useRouter();
const { code } = router.query;
...
}
Step 3: Send the code
in a POST
request to the Notion API
code
in a POST
request to the Notion APIThe integration needs to exchange the temporary code
for an access_token
.
To set up this step, retrieve the code
from the redirect URI.
Next, you will need to send the code
as part of a POST
request to Notionβs token endpoint: https://api.notion.com/v1/oauth/token.
This endpoint is described in more detail in the API reference docs for creating a token.
The request is authorized using HTTP Basic Authentication. The credential is a colon-delimited combination of the integrationβs CLIENT_ID
and CLIENT_SECRET
, like so:
CLIENT_ID:CLIENT_SECRET
You can find both of these values in the integrationβs settings.
Note that in HTTP Basic Authentication, credentials are base64
encoded before being added to the Authorization
header.
The body of the request contains the following JSON-encoded fields:
Field | Type | Description | Required |
---|---|---|---|
"grant_type" | string | Always useΒ "authorization_code" . | β |
"code" | string | The temporary authorization code received in the incoming request to the "redirect_uri" . | β |
"redirect_uri" | string | TheΒ "redirect_uri" Β that was provided in the Authorization step. | β
/β* * If the redirect URI was supplied as a query param in the Authorization URL, this field is required. If there are more than one redirect URIs included in your integration settings, this field is required. Otherwise, it is not allowed. Learn more in the Create a token page. |
The following is an example request to exchange the authorization code for an access token:
POST /v1/oauth/token HTTP/1.1
Authorization: Basic "$CLIENT_ID:$CLIENT_SECRET"
Content-Type: application/json
{"grant_type":"authorization_code","code":"e202e8c9-0990-40af-855f-ff8f872b1ec6", "redirect_uri":"https://example.com/auth/notion/callback"}
The Node-equivalent of this example would look something like this:
...
const clientId = process.env.OAUTH_CLIENT_ID;
const clientSecret = process.env.OAUTH_CLIENT_SECRET;
const redirectUri = process.env.OAUTH_REDIRECT_URI;
// encode in base 64
const encoded = Buffer.from(`${clientId}:${clientSecret}`).toString("base64");
const response = await fetch("https://api.notion.com/v1/oauth/token", {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: `Basic ${encoded}`,
},
body: JSON.stringify({
grant_type: "authorization_code",
code: "your-temporary-code",
redirect_uri: redirectUri,
}),
});
...
Step 4: Notion responds with an access_token
and additional information
access_token
and additional informationNotion responds to the request with an access_token
and additional information. The access_token
will be used to authenticate subsequent Notion REST API requests.
The response contains the following JSON-encoded fields:
Field | Type | Description | Not null |
---|---|---|---|
"access_token" | string | An access token used to authorize requests to the Notion API. | β |
"bot_id" | string | An identifier for this authorization. | β |
"duplicated_template_id" | string | The ID of the new page created in the userβs workspace. The new page is a duplicate of the template that the developer provided with the integration. If the developer didnβt provide a template for the integration, then the value is null . | |
"owner" | object | An object containing information about who can view and share this integration.Β { "workspace": true } Β is returned for installations of workspace-level tokens. For user level tokens, aΒ user objectΒ is returned. | β |
"workspace_icon" | string | A URL to an image that can be used to display this authorization in the UI. | |
"workspace_id" | string | The ID of the workspace where this authorization took place. | β |
"workspace_name" | string | A human-readable name that can be used to display this authorization in the UI. |
Token request failures
If something goes wrong when the integration attempts to exchange the code
for an access_token
, then the response contains a JSON-encoded body with an "error"
field. Notion uses the common error codes from the OAuth specification.
Step 5: The integration stores the access_token
for future requests
access_token
for future requestsYou need to set up a way for your integration to store all of the access_token
's that it receives, so that the integration can then choose a bearer token from storage based on the user itβs acting on behalf of for each request to the Notion API.
Tips for storing and using token access
- Setting up a database is a typical solution for storing
access_token
's. If youβre using a database, then build relations between anaccess_token
and the corresponding Notion resources that your integration accesses with that token. For example, if you store a Notion database or page ID, relate those records with the correctaccess_token
that you use to authorize requests to read or write to that database or page. - Store all of the information that your integration receives with the
access_token
. You never know when your UI or product requirements might change and youβll need this data. It's really hard (or impossible) to send users to repeat the authorization flow to generate the information again. - TheΒ
bot_id
Β returned along with your token should act as your primary key when storing information.
Updated 5 months ago