Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ariary/notionion
Notion as an HTTP proxy
https://github.com/ariary/notionion
hack http-proxy notion notion-api proxy
Last synced: 24 days ago
JSON representation
Notion as an HTTP proxy
- Host: GitHub
- URL: https://github.com/ariary/notionion
- Owner: ariary
- License: unlicense
- Created: 2022-05-05T09:14:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T15:32:51.000Z (over 1 year ago)
- Last Synced: 2024-09-29T19:03:44.959Z (about 1 month ago)
- Topics: hack, http-proxy, notion, notion-api, proxy
- Language: Go
- Homepage:
- Size: 2.23 MB
- Stars: 25
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
![demo](https://github.com/ariary/Notionion/blob/main/img/demo-fast.gif)
---
Why? π€
Mainly for fun of adding a blade to the Swiss army knife that is notion.
The purpose is to provide an HTTP proxy which takes advantage of the Notion benefits
- Cross-platform (Windows/MacOS, browsers, mobile)
- Shared with authentication
- Accomplished notetaking app (GUI provided, ease HTTP packet manipulation, add notes)
How? π€·ββοΈ
Just use notion as usual and launchnotionion
.---
roughly inspired by the great idea of OffensiveNotion!## Quickstart
**Set-up** ([details](#-set-up))
1. Create the "Proxy page" in Notion
2. Give the permissions to `notionion` to access the Proxy page**Run** ([details](#-run))
3. Perform HTTP request
4. Modify it trough the "Proxy page" in Notion
5. See result of request### ποΈ Set-up
#### Create the "Proxy page" in Notion
You can duplicate the template [notionion template](https://fluff-grade-468.notion.site/notionion_template-f95213ec89a04f66ad895ddac850d33e)
#### Give the permissions to `notionion` to access the Proxy page
* Go to the [Notion API developer page](https://developers.notion.com/) and log in. Create an Integration user (`New integration`). Copy that user's API key
* Copy the "Proxy page" Url
* In browser: only copy the URL
* On desktop app: `CTRL+L`
* Add your Notion Developer API account to this page (In the upper-right corner of your Notion page, click ***"Share"*** and ***"Invite"***)
* Install `notionion` [see](#install)#### Declare environment variables to specify the notion proxy page:
```shell
source env.sh
# Alternatively, you can just export NOTION_TOKEN (which is the api key) & NOTION_PAGE_URL
```### π Run
```shell
notionion
```## Install
* **From release**: `curl -lO -L https://github.com/ariary/notionion/releases/latest/download/notionion && chmod +x notionion`
* **Build it**: `git clone https://github.com/ariary/notionion && make before.build && make build.notion` *(need `go`)*
* **with `go`**:`go install github.com/ariary/notionion@latest`