Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Are there plans to add a renderer for the official Notion API? #83

Open
ademidun opened this issue Aug 18, 2021 · 7 comments
Open

Are there plans to add a renderer for the official Notion API? #83

ademidun opened this issue Aug 18, 2021 · 7 comments

Comments

@ademidun
Copy link

ademidun commented Aug 18, 2021

  • Notion has released an official API which also returns page blocks similar to what notion-api-worker does, which this package uses.
  • However, the API structure returned by notion-api-worker is a bit different (see below)
  • It would be very useful to add support for rendering both types of API responses, is there plans to support his?

Also, I'm curious to get people's opinion on the following:

We originally used notion-api-worker as our CMS backend, now we're thinking of switching to the official notion API since notion-api-worker says:

Use with caution. This is based on the private Notion API. We can not guarantee it will stay stable.

But notion-api-worker has more feature support than the official API (though perhaps more features will be launched in the future).

So should we continue using the potentially unstable Notion API which has more features?

Or switch to the official API which has fewer features but is (potentially) more stable?

My current thought is we continue using notion-api-worker until the official Notion API has more features or if Notion decided to make it harder to use their private API.

@kitze
Copy link

kitze commented Sep 22, 2021

Also interested in this.

@bats64mgutsi
Copy link

We also had the same issue. We instead built our own wrapper on top of the Official Notion API. Unlike react-notion, however, it transforms Notion pages to Markdown and also fetches the page media to be served with our static assets. We then run the docusaurus static site generator to render our website.

@timolins
Copy link
Member

timolins commented Dec 16, 2021

Looks like the time has come for this – would love to depend on the more stable Notion API. Notion added a lot of the missing blocks in the recent month to their API. We will start to explore this topic.

@tobiaslins
Copy link
Member

We already found something in the official API that doesn't allow us to port react-notion as it is now.
The notion.blocks.children.list call doesn't return all blocks needed to render a page. We would need to fetch recursively which could potentially fail due the rate limits of Notion.

For example:
A page that has 2 columns with content in it.

  • notion.blocks.children.list returns one column_list block.
  • We need to run the same request again for the column_list id. We now get 2 column blocks (again without content).
  • After that we will need to fetch all children for those blocks again to receive the content.

This means: 4 requests to Notion API for a single multi column page.

We try to reach out to the Notion team to talk about this. It would be great if they could allow us to fetch all blocks recursively within one request.

@pgerlich
Copy link

Any updates on this? Is there any planned action to support the official Notion API given those limitations?

@transitive-bullshit
Copy link
Contributor

transitive-bullshit commented Apr 22, 2022

notion-compat may be useful here. It provides a best-effort conversion from Notion's official API to their unofficial API, which react-notion and react-notion-x both use.

As Tobias mentioned, the performance is quite poor, though. I also tried to give a concrete, block-by-block comparison to show where the official API is missing information that would be necessary to render notion content faithfully.

@pgerlich
Copy link

Ooh thanks for pointing that out.. I'll check it out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants