If someone with credible experience wants to take it over, please let me know.
This is a very simple tool to export a workspace from Notion, designed to work as part of a GitHub workflow.
It reads NOTION_TOKEN
and NOTION_SPACE_ID
from the environment, and outputs the export to both
html
and markdown
directories in the current working directory, as well as to html.zip
and
markdown.zip
.
Automatically downloading backups from Notion requires two unique authentication tokens and your individual space ID which must be obtained for the script to work.
- Log into your Notion account in your browser of choice if you haven't done so already.
- Open a new tab in your browser and open the development tools. This is usually easiest done by right-click and selecting
Inspect Element
(Chrome, Edge, Safari) orInspect
(Firefox). Switch to the Network tab. - Open https://notion.so/f/. You must use this specific subdirectory to obtain the right cookies.
- Insert
getSpaces
into the search filter of the Network tab. This should give you one result. Click on it. - In the Preview tab, look for the key
space
. There you should find a list of all the workspaces you have access to. Unless you're part of shared workspaces there should only be one. - Copy the UUID of the workspace you want to backup (e.g.
6e560115-7a65-4f65-bb04-1825b43748f1
). This is yourNOTION_SPACE_ID
. - Switch to the Application (Chrome, Edge) or Storage (Firefox, Safari) tab on the top.
- In the left sidebar, select
Cookies
->https://www.notion.so
(Chrome, Edge, Firefox) orCookies – https://www.notion.so
(Safari). - Copy the value of
token_v2
as yourNOTION_TOKEN
and the value offile_token
as yourNOTION_FILE_TOKEN
. - Set the three environment variables as secrets for actions in your GitHub repository.
NOTE: if you log out of your account or your session expires naturally, the NOTION_TOKEN
and NOTION_FILE_TOKEN
will get invalidated and the backup will fail. In this case you need to obtain new tokens by repeating this process. There is currently no practical way to automize this until Notion decide to add a backup endpoint to their official API, at which point this script will be able to use a proper authentication token.
This assumes you are looking to set this up to back up Notion to GitHub.
- Obtain the required values for the environment variables as explained above.
- Create a repo for your backup. You probably want it private.
- Set the
NOTION_TOKEN
,NOTION_FILE_TOKEN
andNOTION_SPACE_ID
environment variables as secrets in your GitHub repo. - Give Actions write access to your repository:
Settings
>Actions
>General
>Workflow permissions
> chooseRead and write permissions
- Install the following under
.github/workflows/whatever.yml
in your repo. - Configure the frequency by changing the
cron
value. You can use Crontab.guru. - Push and control your backup workflow from the
Actions
tab of your repository Github page.
name: "Notion backup"
on:
push:
branches:
- master
schedule:
- cron: "0 */4 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
backup:
runs-on: ubuntu-latest
name: Backup
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Delete previous backup
run: rm -rf markdown html *.zip
- name: Setup dependencies
run: npm install -g notion-backup
- name: Run backup
run: notion-backup
env:
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }}
NOTION_FILE_TOKEN: ${{ secrets.NOTION_FILE_TOKEN }}
NOTION_SPACE_ID: ${{ secrets.NOTION_SPACE_ID }}
NODE_OPTIONS: "--max-http-header-size 15000"
- name: Delete zips
run: |
rm -f *.zip
rm -f markdown/*-Part*.zip
rm -f html/*-Part*.zip
- name: Commit changes
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Automated snapshot"
git push
You won't be able to backup files exceeding a size of 100MB unless you enable Git LFS. Add a file named .gitattributes
at the root of your repository and add the following. If you want to support other file types, just add a new line for that file type.
*.zip filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text