2

我正在尝试获取我的 Notion 工作区的所有页面,但是当我的个人工作区中有页面时,搜索方法返回一个空响应。

代码 :

import { Client, LogLevel } from '@notionhq/client'

const notion = new Client({
  auth: '<hidden>',
  logLevel: LogLevel.DEBUG
})

const databasesQuery = await notion.search({})
console.log(databasesQuery)

输出

@notionhq/client info: request start { method: 'post', path: 'search' }
@notionhq/client info: request success { method: 'post', path: 'search' }
{ object: 'list', results: [], next_cursor: null, has_more: false }
4

1 回答 1

5

抱歉回复晚了,但我遇到了同样的问题。

我认为这是因为您没有与您的集成共享任何页面。据我自己的测试所知,您必须与集成共享每个页面才能使搜索请求正常工作,即使它是您自己的概念工作区:/

于 2021-10-10T04:16:34.650 回答