Skip to content

查看页面。

node page.mjs
import { Client } from '@notionhq/client';

const TOKEN = 'ntn_123456';
const ID = '1234';

const notion = new Client({ auth: TOKEN });

(async () => {
  const data = await notion.pages.retrieve({
    page_id: ID
  });
  console.log(data);
})();

联系 math@baima.site