304 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
51
views
Access Notion AI meeting transcripts/summaries via Notion API python SDK
When trying to access AI transcript and summaries using the python SDK the object returned is a block object of type 'unsupported'.
I know this is still in beta, is it possible to access it through ...
2
votes
1
answer
283
views
How to connect to Notion's remote MCP server from your own MCP client?
I'm experimenting with Pydantic AI as agentic framework and want to use Notion's remote MCP server as tool for my agent.
Remote server's endpoint seems to require OAuth token to be accessed, but I ...
0
votes
0
answers
48
views
Why is Notion video and image display inconsistent between Notion and my Next using react-notion-x?
I’m using Next App Router with notion.getPage and react-notion-x’s NotionRenderer to render Notion pages on my site. This setup allows internal users to edit Notion workspace pages and have changes ...
3
votes
0
answers
46
views
Notion API: How to check if a page is shared with the entire workspace?
I need to determine via the Notion API whether a page is shared with the entire workspace ("Everyone at "), not just whether my integration can access it.
Does the public API expose any field or ...
0
votes
0
answers
93
views
Truncation on Notion rollups
I made a project to update some Notion tables automatically.
By runing this code:
# Get page(s) from given instance
def PegarPaginas(index_instancia: int, n_paginas: int = 1):
url = f"https://...
0
votes
0
answers
60
views
Why are accented characters (é, è, à) missing in Notion pages created via the Notion API in NodeJS
I'm using the Notion API with Node.js to convert a local resume.md file into a Notion page. The file contains French text with accents like é, è, and à.
This is my code,
I tried:
Reading and writing ...
0
votes
0
answers
35
views
Publish Android App Dependencies to Notion
I am trying to create a gradle task for an Android App to publish all project dependencies on a Notion Page using Notion API.
The issue I have is when I am trying to launch this task I get a HTTP 400 ...
0
votes
1
answer
172
views
Notion events with web hooks example
I am making a personal project using Notion API and I noticed that they've implemented web hooks that send events to your API on different actions. I was thinking on using this feature to receive ...
0
votes
0
answers
53
views
Notion OAuth ignores query parameters in registered redirect URI
I’m integrating Notion's OAuth flow and encountered unexpected behavior regarding redirect_uri.
According to RFC 6749 Section 3.1.2, registered redirect URIs may include query string parameters, as ...
0
votes
1
answer
166
views
Notion API 404 Error: Cannot Find Database when querying from Google Apps Script
I'm trying to query a Notion database using Google Apps Script, but I keep getting a 404 Not Found error.
My Setup
Using Google Apps Script (GAS) to query a Notion Database.
Notion API Version: 2022-...
1
vote
0
answers
82
views
How to Get Redirected URL in Python for OAuth Flow Requiring User Interaction (Notion API)
I am integrating Notion’s OAuth 2.0 authentication in Python using the Notion SDK and need to retrieve the redirected URL after user login and consent.
Expected Behavior:
I want to automate the ...
0
votes
0
answers
27
views
how to query all databases using `notion-sdk-js`?
Is it possible to query all databases using notion-sdk-js?
Before asking this question, I read the usage of notion-sdk-js:
it reflects:
Operations related to databases must pass the database_id.
...
0
votes
0
answers
26
views
Is it possible to open the Notion App based on this page ID in other apps?
For example, if I know a Notion page ID, can I open the Notion App based on this page ID in other apps?
In other words, is there a method that can be called to open the Notion App and display the page ...
0
votes
1
answer
109
views
Cannot add image with external URL containing ‘?’ query string
The Notion API is unable to work with image URLs that contain query strings, i.e., adding a Google Maps static image via URL (key obscured for obvious reasons):
{"children":
[
{
"...
1
vote
0
answers
156
views
'object_not_found, Could not find database with ID' Error When Accessing Linked Databases
I am working with the Notion API to retrieve children blocks of a page using the following code:
await notionClient.blocks.children.list({ block_id: id });
After fetching the page blocks, I filter ...